[Python-Dev] Re: Retiring this mailing list ?

2023-11-14 Thread Senthil Kumaran
ce, that is, discuss.python.org . Thanks, Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail

[Python-Dev] Re: urllib: addressing inflexibility in scheme-based joining

2022-02-10 Thread Senthil Kumaran
for feedback > and a potential merge? Thanks for bringing this up. https://github.com/python/cpython/pull/30520 I will review it. If any other core-dev reviews earlier than me, I am good with it too. Thank you, Senthil ___ Python-Dev mail

[Python-Dev] Re: It's now time to deprecate the stdlib urllib module

2022-02-06 Thread Senthil Kumaran
close old bugs, and remove old code (aka maintain a bit, and it falls on me too). Then we can probably chart out a deprecation / replacement path in a non-disruptive manner. -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe s

[Python-Dev] Re: compiled python3.10 is unable to find _ssl

2021-10-18 Thread Senthil Kumaran
had to download openssl, compile it, and point my the configure script to (location I compiled openssl). CFLAGS="-I$HOME/openssl/include" LDFLAGS="-L$HOME/openssl/lib" Thank you, Senthil On Mon, Oct 18, 2021 at 08:16:01PM +0530, Sandeep Gupta wrote: > I am having compil

[Python-Dev] Re: RFC: New/update the Docs Sphinx theme: responsive, edit page links,

2021-09-23 Thread Senthil Kumaran
, Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/python-dev

[Python-Dev] Re: Is anyone relying on new-bugs-announce/python-bugs-list/bugs.python.org summaries

2021-09-03 Thread Senthil Kumaran
e might bring other benefits, so we won't be certain if we will need these new-bugs-announcements emails. Or those might be replaced with something better. Thank you, Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send

[Python-Dev] Re: API's to interface python with Eclipse to execute and debug C/C++ Source files.

2021-08-31 Thread Senthil Kumaran
ydev with Eclipse. This is a good question for PyDev Eclipse Plugin. As far as I know, tI have not seen breakpoints for C/C++ with Pydev Eclipse, but I am not regular use of PyDev. For debugging Python's C Source files, I found Visual Studio Code's support for Makefile, C and Python to

[Python-Dev] Re: PEP-535 (Rich comparison chaining) Discussion?

2021-08-31 Thread Senthil Kumaran
this brings to Numpy Arrays. The PEP itself was deferred based on boolean overload dislike than the short-circuit or chaining operator preference. -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python

[Python-Dev] Re: Windows buildbots may be broken

2021-08-03 Thread Senthil Kumaran
e to the > repo to avoid the stale state. What does this do? Especially the first command. Is this Windows specific? -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org ht

[Python-Dev] Re: Python3 OSF/1 support?

2021-07-14 Thread Senthil Kumaran
he support. Personally, my vote is a -1 here. In the PR, another core-dev, Ronald had commented that support for explicitly removed a few years ago. -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to py

[Python-Dev] Re: Towards removing asynchat, asyncore and smtpd from the stdlib

2021-06-23 Thread Senthil Kumaran
e there is a reliance on these packages in production code and the developers don't want those the break and aren't ready to upgrade or migrate. Thank you, Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an

[Python-Dev] Re: Why list.sort() uses mergesort and not timsort?

2021-06-07 Thread Senthil Kumaran
on or Pure Python. > Interesting! timsort get's to near-linear in your benchmark. -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/pytho

[Python-Dev] Re: change of behaviour for '.' in sys.path between 3.10.0a7 and 3.10.0b1

2021-06-03 Thread Senthil Kumaran
rtlab.com/ftp/timport-310b1.py > > I switched to using importlib.import_module as I think that can now always be > used in the versions we support. Thanks for this report, Robin. I will reference this in the issue43105, which has probably has the context to this. -- Senthil

[Python-Dev] Re: Proposal: declare "unstable APIs"

2021-06-03 Thread Senthil Kumaran
le and start relying upon heavily? I am not sure. I also lack the experience for the use-cases that you are thinking about. -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org htt

[Python-Dev] Re: change of behaviour for '.' in sys.path between 3.10.0a7 and 3.10.0b1

2021-06-03 Thread Senthil Kumaran
eta releases, and reporting bugs! :-) -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https:

[Python-Dev] Re: change of behaviour for '.' in sys.path between 3.10.0a7 and 3.10.0b1

2021-06-03 Thread Senthil Kumaran
mehow wrong. To me, this sounds like an excellent candidate for git bisect to help and figure out which exact commit caused this behavior change. Was it possible for you to detect that? Thank you, Senthil ___ Python-Dev mailing list -- python-dev@python.o

[Python-Dev] Re: expanduser('~other') reliability and future

2021-04-28 Thread Senthil Kumaran
precate this functionality? Or something else? +1 to deprecate this functionality. This does not seem to be common usecase to be present in stdlib, and reliablity across platform seems difficult. -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To

[Python-Dev] Re: bz2.BZ2File doesn't support name?

2021-04-27 Thread Senthil Kumaran
Hello Hasan, Thank you. Please submit your patch as a PR in Github. https://devguide.python.org/pullrequest/ Also, why did you have a self.filename and (getter?) as name. You could set the attribute as name. Thank you, Senthil On Tue, Apr 27, 2021 at 12:32 AM Hasan Diwan wrote: > I just ad

[Python-Dev] Re: bz2.BZ2File doesn't support name?

2021-04-26 Thread Senthil Kumaran
There is an open bug report https://bugs.python.org/issue24258 I guess it was overlooked. It could be a good task for someone interested. Please add me as a reviewer if you submit a patch, I can help review and move it forward. On Mon, Apr 26, 2021 at 9:22 PM wrote: > I was surprised recently t

[Python-Dev] Re: Merge Request Review Reminder

2021-03-22 Thread Senthil Kumaran
Given this discussion, I am motivated to review this and merge this into stdlib. The conversation was helpful to me to understand for utility value of the method introduced by the patch. I had stated in the PR as well. Thank you, both, Faisal and Jakub. On Mon, Mar 22, 2021 at 5:40 PM Jakub Stasi

[Python-Dev] Re: Merge Request Review Reminder

2021-03-19 Thread Senthil Kumaran
irrespective of implementation correctness or API Signature. I also lack extensive experience with ipv6. Thanks, Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailma

[Python-Dev] Re: Requesting Review for GH-24118 (Fix for bpo-27820)

2021-03-09 Thread Senthil Kumaran
t for that class. I've reviewed it. I have a question on the change, and once that is addressed, we could move forward with this. The premise of the PR looks right. Thanks, Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe

[Python-Dev] Re: Suggestion About Python Syntax

2021-03-03 Thread Senthil Kumaran
Hello Anthony, Welcome to this list. :) Python is written in C, and developers use semicolons and branches in C. However, when Guido designed Python, he specifically wanted white-space indented language. The idea was it will be less intimidating to beginners and more readables. It seems to have be

[Python-Dev] Re: Requesting Review of Pull Request

2021-03-02 Thread Senthil Kumaran
Hello Nathan, The PR is merged. Thank you for contributing and following up here. -- Senthil On Tue, Mar 02, 2021 at 07:50:13PM +, Nathan Beals wrote: > Good Afternoon Python Devs, > > I'm requesting that someone review the pull request linked to this issue: > https:

[Python-Dev] Re: Happy 30th Birthday, Python!

2021-02-21 Thread Senthil Kumaran
h birthday, Python! Happy 30th Birthday, Python. Congrats to Guido. The way software was distributed then seems incredible. It's been an exciting journey for all of us. -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send

[Python-Dev] Re: Python 0.9.1

2021-02-16 Thread Senthil Kumaran
On Tue, Feb 16, 2021 at 1:58 PM Skip Montanaro wrote: > > I then pushed the result to a Github repo: > > https://github.com/smontanaro/python-0.9.1 > Wow. Was white-space not significant in this release of Python? I see the lack of indentation in the first Python programs. __

[Python-Dev] Re: [python-committers] [ Release ] Python 3.10a5 and release blockers

2021-02-01 Thread Senthil Kumaran
. I will let you know if I decide it for 3.10, an easier decision than backport. I just have to see how other libraries took care of this issue. But if for some reason, we couldn't include in -alpha5, we should plan -alpha6. Thanks, Senthil On Mon, Feb 1, 2021 at 11:48 AM Pablo Ga

[Python-Dev] Re: New sys.module_names attribute in Python 3.10: list of all stdlib modules

2021-01-25 Thread Senthil Kumaran
t such scenarios. -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives

[Python-Dev] Re: Upcoming 3.7.10 and 3.6.13 Security Releases

2021-01-20 Thread Senthil Kumaran
On Wed, Jan 20, 2021 at 7:22 PM Ned Deily wrote: > > > In the meantime, another potential security issue has arisen that might > impact 3.7 and 3.6 so I'm going to continue to hold off on the releases > until we have a resolution of that. > > https://bugs.python.org/issue42967 > > And another sec

[Python-Dev] Re: Bumping minimum Sphinx version to 3.2 for cpython 3.10?

2021-01-15 Thread Senthil Kumaran
one, I'll try a PR soon™ to make this > compatibility with Sphinx2/3 land in 3.10. > This sounds great. It makes one less thing to worry about from a CPython developer perspective. -- Senthil ___ Python-Dev mailing list -- python-dev@python.

[Python-Dev] Re: Bumping minimum Sphinx version to 3.2 for cpython 3.10?

2021-01-12 Thread Senthil Kumaran
t; By supported, I mean the active versions that we backport patches to. Same as what Victor said. -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman

[Python-Dev] Re: Bumping minimum Sphinx version to 3.2 for cpython 3.10?

2021-01-12 Thread Senthil Kumaran
reasonable suggestion. I support keeping same Sphinx version across all the supported python versions. -- Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mai

[Python-Dev] Re: Bumping minimum Sphinx version to 3.2 for cpython 3.10?

2021-01-12 Thread Senthil Kumaran
d to see points against this. Thank you, Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://

[Python-Dev] Re: Dusting off PEP 533?

2021-01-05 Thread Senthil Kumaran
dition of " PEP 533 -- Deterministic cleanup for iterators". I am not certain why PEP 533 was deffered. I'd also suggest a documentation update if the details of aclose requirement is mentioned only in a PEP and not in the documentat

[Python-Dev] Re: Remove formatter module

2020-11-24 Thread Senthil Kumaran
+1 vote on removal. No concerns. It's been deprecated for a long time now (since 3.4). On Tue, Nov 24, 2020 at 3:54 AM Victor Stinner wrote: > Since importing the module emits a DeprecationWarning at runtime since > Python 3.4 and the deprecation is properly documented, IMO it's fine > to remove

[Python-Dev] Re: My thoughts on Pattern Matching.

2020-11-06 Thread Senthil Kumaran
nguages that have already supported pattern matching, it might help us understand further. Thanks for sharing the context of this email with SC standings. Thank you, Senthil ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email

[Python-Dev] Re: When to remove BytesWarning?

2020-10-26 Thread Senthil Kumaran
notice a possibility of people running into this because all the Python2 code is not dead yet. Perhaps this warning might stay for a long time. > BytesWarning has maintenance costs. It is not huge, but significant. Should we know by how much so that the proposal of `-b` switch can be weighted ag

[Python-Dev] Re: [python-committers] Please welcome our next Release Manager, Pablo!

2020-05-19 Thread Senthil Kumaran
Congratulations, Pablo! Thank you for taking care of buildbots, and donning this new role. On Tue, May 19, 2020 at 3:54 PM Barry Warsaw wrote: > In light of the release of Python 3.9b1, let’s take a moment to celebrate > all the great work that our Python 3.8 and 3.9 release manager Łukasz has

[Python-Dev] Re: PEP 616 -- String methods to remove prefixes and suffixes

2020-03-27 Thread senthil
complete of my editor while writing. So, thinking about these these methods in "correct" terms might be more important to me that the length. +1 for removeprefix and removesuffix. Thanks, Senthil ___ Python-Dev mailing list -- python-dev@pyth

Re: [Python-Dev] [python-committers] PEP 581 (Using GitHub issues for CPython) is accepted

2019-05-18 Thread Senthil Kumaran
On Wed, May 15, 2019 at 6:44 PM Ezio Melotti wrote: > > I share the same concerns: 1) the PEP contains several factual errors. I pointed this out during > the core-sprints last year and more recently Berker pointed out some > on GitHub: https://github.com/python/peps/pull/1013 ; > 4) Berker is/

[Python-Dev] Season of Docs

2019-04-15 Thread Senthil Kumaran
/will-python-apply-for-season-of-docs-and-allow-suborgs/ Thank you, Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive

Re: [Python-Dev] [python-committers] Welcome the 3.8 and 3.9 Release Manager - Łukasz Langa!

2018-01-27 Thread Senthil Kumaran
Congrats, Łukasz. And Thank you, Ned, for managing the 3.6 and 3.7 Releases. -- Senthil On Sat, Jan 27, 2018 at 1:02 PM, Barry Warsaw wrote: > As Ned just announced, Python 3.7 is very soon to enter beta 1 and thus > feature freeze. I think we can all give Ned a huge round of applau

[Python-Dev] Guido's Python 1.0.0 Announcement from 27 Jan 1994

2018-01-27 Thread Senthil Kumaran
ng to Python. Thanks, Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] "CPython loves your Pull Requests" talk by Stéphane Wirtel

2017-12-05 Thread Senthil Kumaran
On Tue, Dec 5, 2017 at 6:25 AM, Victor Stinner wrote: > Stéphane Wirtel gave a talk last month at Pycon CA about CPython pull > requests. His slides: > >https://speakerdeck.com/matrixise/cpython-loves-your-pull-requests > > He produced interesting statistics that we didn't have before on pull

Re: [Python-Dev] bugs.python.org updated

2017-09-27 Thread Senthil Kumaran
On Wed, Sep 27, 2017 at 6:54 PM, Ezio Melotti wrote: > > This update included ~300 changesets from upstream and required an > additional ~30 to update our instances and our fork of Roundup. A number > of features that we added to our fork over the years have been ported > upstream and they have

Re: [Python-Dev] [python-committers] Cherry picker bot deployed in CPython repo

2017-09-07 Thread Senthil Kumaran
s://github.com/python/cpython/pull/3369 > > > Thanks Mariatta. This is an awesome contribution. It's going to extremely helpful. -- Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Un

Re: [Python-Dev] Reports on my CPython contributions

2017-03-05 Thread Senthil Kumaran
On Fri, Feb 24, 2017 at 3:50 PM, Victor Stinner wrote: > Recently, I wrote reports of my CPython contributions since 1 year > 1/2. Some people on this list might be interested, so here is the > list. They are prolific! Thanks for keeping a log and sharing. --

Re: [Python-Dev] GitHub migration scheduled for Friday

2017-02-07 Thread Senthil Kumaran
On Tue, Feb 7, 2017 at 11:38 PM, Victor Stinner wrote: > I know that different people have different expectation on GitHub. I > would like to take the opportunity of migrating to Git to use the > "author" and "committer" fields. If the author is set to the real > author, the one who proposed the c

Re: [Python-Dev] IRC logs via BotBot.me

2017-01-04 Thread Senthil Kumaran
away. (You can also permanently stay connected for a paid service, afaict, they have put some interesting work into IRC over web). -- Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev

Re: [Python-Dev] Fwd: Cssdbpy is a simple SSDB client written on Cython. Faster standart SSDB client.

2016-09-13 Thread Senthil Kumaran
Python development. Thank you, Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] Tracker Etiquette

2016-05-07 Thread Senthil Kumaran
k, it is alright to make revisions in comments. -- Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] Most 3.x buildbots are green again, please don't break them and watch them!

2016-04-14 Thread Senthil Kumaran
buildbots again and remind to watch them > sometimes: > Piling in my thanks again, Victor. This is a great gesture from you to fix all the build bots. Keeping them stable is a proper thing to do and should be expected from all committers. -- Senthil _

Re: [Python-Dev] The next major Python version will be Python 8

2016-03-31 Thread Senthil Kumaran
velopers have ever done till date. Is there is setuptools addition that can automatically change our imports to _noqa ? Thank you! Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscrib

Re: [Python-Dev] Very old git mirror under github user "python-git"

2016-02-27 Thread Senthil Kumaran
Thanks, Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] Code formatter bot

2016-01-19 Thread Senthil Kumaran
omatic changes. We already some pre-commit hooks which do basic checks. If anything more automated is desirable then enhancement to the pre-commit hooks could be the place to look for. As far as I know, none of the core devs have expressed any complaints the pre-commit hooks.

Re: [Python-Dev] How far to go with user-friendliness

2015-07-14 Thread Senthil Kumaran
On Tue, Jul 14, 2015 at 5:06 AM, Dima Tisnek wrote: > https://bugs.python.org/issue21238 introduces detection of > missing/misspelt mock.assert_xxx() calls on getattr level in Python > 3.5 It was controversial when it got committed too. Discussions happened in python-committers and IRC. Michael

Re: [Python-Dev] cpython (merge 3.4 -> default): null merge with 3.4

2015-06-15 Thread Senthil Kumaran
On Sunday, June 14, 2015 at 6:43 PM, Ned Deily wrote: > Senthil, > > There is now an active 3.5 branch, so the correct current order of > merging is: > > 3.4 -> 3.5 > 3.5 -> default > > I've checked in a couple of null merges to try to fix things. Oh! M

Re: [Python-Dev] Help with finding tutors for Python, Linux, R, Perl, Octave, MATLAB and/or Cytoscape for yeast microarray analysis, next generation sequencing and constructing gene interaction networ

2015-01-03 Thread Senthil Kumaran
t to seek out for those folks. python-dev is dedicated to development of python language itself. Please ask python-us...@python.org -- Senthil Kumaran ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/p

Re: [Python-Dev] [Python-checkins] cpython (merge 3.4 -> default): Issue #22165: Fixed test_undecodable_filename on non-UTF-8 locales.

2014-08-17 Thread Senthil Kumaran
This change is okay and not harmful. But I think, It might still not fix the encoding issue that we encountered on Mac. [localhost cpython]$ hg log -l 1 changeset: 92128:7cdc941d5180 tag: tip parent: 92126:3153a400b739 parent: 92127:a894b629bbea user:Serhiy Storchaka d

Re: [Python-Dev] [Python-checkins] cpython (2.7): Fix Issue #8797: Raise HTTPError on failed Basic Authentication immediately.

2014-08-16 Thread Senthil Kumaran
I added some extra coverage for basic auth in the tests and I notice that in buildbots, some of them are throwing "error: [Errno 32] Broken pipe" error. I am looking into this and will fix this. Thanks, Senthil On Sat, Aug 16, 2014 at 2:19 PM, senthil.kumaran wrote: > http://

Re: [Python-Dev] Language Summit notes

2014-04-09 Thread Senthil Kumaran
modules compiled with for > 2.7.0-2.7.6, and that would confuse and upset people. > > - Apparently no restaurant in downtown Montreal takes reservations for a > group of 30 people to show up in one hour. > > -- > --Guido van Rossum (python.org/~guido) > > __

Re: [Python-Dev] death to 2.7; long live 2.7

2014-04-09 Thread Senthil Kumaran
s seem be excited about keep it alive for a long long term). -- Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] death to 2.7; long live 2.7

2014-04-09 Thread Senthil Kumaran
Guido's last email talks about all the other compatibility goodies /tools targeting 2.7 that may or may not go with 2.7 code base itself. -- Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/pyth

Re: [Python-Dev] [Python-checkins] cpython (3.3): Issue #19092 - Raise a correct exception when cgi.FieldStorage is given an

2014-01-12 Thread Senthil Kumaran
On Sat, Jan 11, 2014 at 11:53 PM, Nick Coghlan wrote: > You may want to tweak the tracker so the comment ends up on the > appropriate issue (#19092 is something else entirely) > Yes. This was supposed to be #19097. My bad. ___ Python-Dev mailing list

Re: [Python-Dev] urllib2.HTTPBasicAuthHandler doesn't work with GitHub API

2013-11-04 Thread Senthil Kumaran
possible, but ofcourse consider's de-facto standards and adopts to it. This can be documented for 2.x and can be 'fixed in 3.4. HTH, Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-de

Re: [Python-Dev] cpython (merge 3.3 -> default): merge from 3.3

2013-09-29 Thread Senthil Kumaran
+Do not supply the 'int' argument. >> +>>>>>>> other > > Can you fix this? Had done it earlier. (http://hg.python.org/cpython/rev/1398dfb59fd9 ) I missed responding back. Sorry for the trouble. Thanks, Senthil ___

Re: [Python-Dev] [Python-checkins] cpython (merge 3.3 -> default): Fix http.server's request handling case on trailing '/'.

2013-09-29 Thread Senthil Kumaran
path.rstrip().endswith('/') I noticed this email late. Corrected it now. Thanks, Senthil ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] End of the mystery "@README.txt Mercurial bug"

2013-06-25 Thread Senthil Kumaran
n as why hg complained about @README in the first place. Also, I hope make distclean is not working "inside" .hg folder. -- Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubs

Re: [Python-Dev] The end of 2.7

2013-04-06 Thread Senthil Kumaran
es". 2 more year with 6 month cycle seem to be a good one. Thank you! Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] PyCon Sprints - Thank you

2013-03-20 Thread Senthil Kumaran
Thanks Daniel, for all the patches and improving the test coverage. Hope you had a good time and will you enjoy contributing further. Happy touring SF. -- Senthil On Wed, Mar 20, 2013 at 12:24 PM, R. David Murray wrote: > Thank you for your contributions, and we look forward to anything e

Re: [Python-Dev] [Python-checkins] cpython: ../bug-fixes/http_error_interface/.hg/last-message.txt

2013-03-19 Thread Senthil Kumaran
82765:4f2080e9eee2 > parent: 82763:4c6463b96a2c > user: Senthil Kumaran > date:Tue Mar 19 12:07:43 2013 -0700 > summary: > ../bug-fixes/http_error_interface/.hg/last-message.txt > > files: > Lib/test/test_urllib2.py | 39 +-- >

Re: [Python-Dev] os.path.join failure mode

2013-02-09 Thread Senthil Kumaran
tandard library is huge. The existing error message > is one that a user should be able to understand, since it's so common. > > -- > Eric. > ___ > Python-Dev mailing list > Python-Dev@python.org > http://mail.python.org/mailman/listinfo/python-dev >

Re: [Python-Dev] Set close-on-exec flag by default in SocketServer

2013-01-09 Thread Senthil Kumaran
r making that in 3.4 Thank you, Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] test failed: test_urlwithfrag

2013-01-04 Thread Senthil Kumaran
ure (expected result). Perhaps the source which is advertising this is misleading? Thanks, Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/pyt

Re: [Python-Dev] Branch ancestry hiccup on the Mercurial repo

2013-01-01 Thread Senthil Kumaran
On Mon, Dec 31, 2012 at 10:47 PM, Antoine Pitrou wrote: > > Chances are the problem won't be very annoying in practice, but just > FYI. I dont get this. I see 2.7 as a separate un-merged branch again ( http://hg.python.org/cpython/graph). Just curious, what happened next? T

Re: [Python-Dev] Better HTTP 1.1 support in http.server?

2012-09-24 Thread Senthil Kumaran
other protocol layer. Guido had given some suggestions to takle that, but I have been lazing and lagging for while now in terms of contributions, but I am excited about the idea. -- Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.

Re: [Python-Dev] Should urlencode() sort the query parameters (if they come from a dict)?

2012-08-19 Thread Senthil Kumaran
change seems interesting use case, but does not seem to warrant a change. I think, I like Christian Heimes suggestion that a wrapper to compare query strings would be useful and in Guido's original test case, a tittle test code change would ha

Re: [Python-Dev] 2.7 releases

2012-07-26 Thread Senthil Kumaran
ixes to 2.7 branch. Which means that yes, we may definitely see a release. Benjamin might be right person to answer the question on when. Thanks, Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev

Re: [Python-Dev] cpython: Fix 5931 - Python runtime hardcoded in wsgiref.simple_server - Now it specifies

2012-07-08 Thread Senthil Kumaran
On Sun, Jul 8, 2012 at 1:12 AM, Georg Brandl wrote: > > Please fix the markup: no blank line, but indented. E.g. > > .. versionchanged:: 3.3 >Blah, blah. Done. Sorry for that, I only built the docs and saw if the directive was affected and assumed it okay. Fixed that.

Re: [Python-Dev] Another buildslave - Ubuntu again

2012-05-03 Thread Senthil Kumaran
give a try on this. What kind of infra changes would be required? I presume, it is the server side that you are referring to. Thank you, Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsu

Re: [Python-Dev] Another buildslave - Ubuntu again

2012-05-02 Thread Senthil Kumaran
l x86 (32 bit) and 1 GB ram. It is running Ubuntu Server edition. Yeah if additional build options (or additional software configuration options) or some alternative coverage could be thought off with current config itself, I could do that. Thanks

Re: [Python-Dev] Another buildslave - Ubuntu again

2012-05-01 Thread Senthil Kumaran
o places within 3 months, but I am hoping that having a 24/7 connected system could provide some experience for running a dedicated system in the longer run. Thanks, Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailm

[Python-Dev] Another buildslave - Ubuntu again

2012-05-01 Thread Senthil Kumaran
able to su - buildbot after installing through package manager. I shall edit it once I have set it up and running. Thanks, Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http

Re: [Python-Dev] The step command of pdb is broken

2012-04-30 Thread Senthil Kumaran
equested an additional info and this particular one could be fixed. Thanks, Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/arc

Re: [Python-Dev] [Python-checkins] cpython (3.2): #14236: fix docs for \S.

2012-04-30 Thread Senthil Kumaran
? While I understand what meant (or implied) \s is not a valid ascii character in the documentation we denoted the sets using ascii characters only. -- Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/p

Re: [Python-Dev] [Python-checkins] cpython: issue2193 - Update docs about the legal characters allowed in Cookie name

2012-04-23 Thread Senthil Kumaran
as being little cautious of having correct message in each version and forgot the merge. > Should be fixed in my commit for issue #14026 Thanks for this, Nick. -- Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/l

Re: [Python-Dev] cpython: use assertWarns instead of check_warnings - Issue14341

2012-04-12 Thread Senthil Kumaran
I overlooked. Thanks for spotting. I have corrected it. -- Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] cpython: Issue #3033: Add displayof parameter to tkinter font.

2012-04-07 Thread Senthil Kumaran
clone from remote to remote not supported You could do the server side clone using the web form here - http://hg.python.org/cpython/ Then you could you that repo to work on your stuff. Thanks, Senthil ___ Python-Dev mailing list Python-D

Re: [Python-Dev] lzma

2012-03-16 Thread Senthil Kumaran
On Fri, Mar 16, 2012 at 07:30:31PM -0700, Andrew Svetlov wrote: > When I build python from sources I have no lzma support (module _lzma > cannot be built). > I have liblzma-dev, liblzma2 and lzma packages installed on ubuntu. I am able to build and import lzma module. Thanks

Re: [Python-Dev] Docs of weak stdlib modules should encourage exploration of 3rd-party alternatives

2012-03-12 Thread Senthil Kumaran
On Mon, Mar 12, 2012 at 10:48:04PM -0700, Andrey Petrov wrote: > @Senthil: I originally asked Guido for guidance on improving the > standard library and perhaps including some of my favourite projects, > but he pointed out that in a couple of years we might end up again in > the same

Re: [Python-Dev] Docs of weak stdlib modules should encourage exploration of 3rd-party alternatives

2012-03-12 Thread Senthil Kumaran
cs. Sometimes those external packages become inactive too, in those cases, those should pruned. Its' all about maintaining libraries and docs and being helpful. -- Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailma

Re: [Python-Dev] PEP czar for PEP 3144?

2012-02-20 Thread Senthil Kumaran
On Tue, Feb 21, 2012 at 12:07 AM, wrote: > "supreme ruler" sounds good to me. I could go for "inquisitor" instead > of "czar" as well... But that would be bad for developers from Spain as nobody would expect a sp

Re: [Python-Dev] 2.7 now uses Sphinx 1.0

2012-01-20 Thread Senthil Kumaran
relation to that. Would you care to explain more, possibly show an example in rst as what you mean? -- Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/o

Re: [Python-Dev] PEP 407: New release cycle and introducing long-term support versions

2012-01-18 Thread Senthil Kumaran
e to use it or test it? Which the rapid relase cycle, the encouragement is to use rather than test. -- Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Re: [Python-Dev] Python 3.4 Release Manager

2011-11-22 Thread Senthil Kumaran
a RM role? Once a developer gets bored with those and wants more, could take up RM role. Is there anything wrong with this kind of thinking? Thanks, Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev

Re: [Python-Dev] Is Python insider blog dead?

2011-11-16 Thread Senthil Kumaran
No. I think, you are welcome to write something about the recent changes you made to Python. -- Senthil On Wed, Nov 16, 2011 at 12:40:06PM +0100, Jesús Cea wrote: > Python insider blog was a great idea, trying to open and expose python-dev to > the world. A great and necessary idea. &g

Re: [Python-Dev] [Python-checkins] cpython (2.7): Fix closes Issue12529 - cgi.parse_header failure on double quotes and

2011-10-20 Thread Senthil Kumaran
xes made, but still had a suspicion, if we unnecessarily add up too many entries to NEWS. Thanks, Senthil ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/opti

Re: [Python-Dev] [Python-checkins] cpython (2.7): Fixes #10860: Handle empty port after port delimiter in httplib

2011-10-18 Thread Senthil Kumaran
On Tue, Oct 18, 2011 at 11:23 PM, Éric Araujo wrote: > > Looks like your entry went into the Interpreter Core section instead of > Library. That should be corrected. > > BTW, I don’t understand “3.x version will come as a separate patch” in I think, he meant in a separate commi

Re: [Python-Dev] [Python-checkins] cpython (2.7): Fix closes Issue12722 - link heapq source in the text format in the

2011-08-10 Thread Senthil Kumaran
7;t have > the 'source' directive available in Sphinx and therefore we would > have to update all the links manually to link to h.p.o instead of > s.p.o. I see. Does sphinx have any such directive already? How is it supposed to behave? -- Senthil __

Re: [Python-Dev] cpython (3.2): Fix closes issue12683 - urljoin to work with relative join of svn scheme.

2011-08-03 Thread Senthil Kumaran
On Wed, Aug 03, 2011 at 03:23:19PM +0200, Antoine Pitrou wrote: > This is the same test repeated. Perhaps you meant svn+ssh? oops, thanks for the catch. yes, I did mean svn+ssh. I shall change it. -- Senthil ___ Python-Dev mailing list Python-

  1   2   3   >