[issue9694] argparse: Default Help Message Lists Required Args As Optional

2010-08-26 Thread R. David Murray
R. David Murray added the comment: Perhaps you could just label them 'options:'? After all, even if you have several options you may be required to pick at least one :) -- ___ Python tracker _

[issue9694] argparse: Default Help Message Lists Required Args As Optional

2010-08-26 Thread Eric Smith
Eric Smith added the comment: Or "parameters:"? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue8998] add crypto routines to stdlib

2010-08-26 Thread Éric Araujo
Éric Araujo added the comment: Geremy, could you kindly give a status update? Thanks -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue9695] Return from generators in Python 3.2

2010-08-26 Thread Eric Smith
Changes by Eric Smith : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue9682] socket.create_connection error message for domain subpart with invalid length is very confusing

2010-08-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: > Ah, I wondered if it was something like that > (encoding=>UnicodeError). It's not really a *unicode* error, it's a > syntax error in the domain name construction (ie: it is invalid > whether or not unicode is involved, it just isn't caught in 2.x for > non-u

[issue9287] Cosmetic fix in OtherFileTests.testOpenDir

2010-08-26 Thread Éric Araujo
Éric Araujo added the comment: This fell out of my radar, sorry. 2.6 is in security mode now, so this won’t be fixed. I’m adding people listed in the “testing” interest area in Misc/maintainers.rst in case someone has an answer to my question. -- nosy: +giampaolo.rodola, michael.foor

[issue9287] Minor fix in test_file2k.OtherFileTests.testOpenDir

2010-08-26 Thread Éric Araujo
Éric Araujo added the comment: Wait, the test with the small brokenness still exists in 2.7, it’s been renamed (see new bug title). -- resolution: out of date -> stage: committed/rejected -> patch review status: closed -> open title: Cosmetic fix in OtherFileTests.testOpenDir -> Minor

[issue9119] Python download page needs to mention crypto code in Windows installer

2010-08-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: Which specific clause of the license do you consider violated? -- nosy: +loewis ___ Python tracker ___

[issue8998] add crypto routines to stdlib

2010-08-26 Thread geremy condra
geremy condra added the comment: On Thu, Aug 26, 2010 at 3:49 PM, Éric Araujo wrote: > > Éric Araujo added the comment: > > Geremy, could you kindly give a status update? Thanks The block and stream cipher parts of the library (RC4, AES, and DES) are functionally complete. I'm putting the fin

[issue8998] add crypto routines to stdlib

2010-08-26 Thread Dave Malcolm
Changes by Dave Malcolm : -- nosy: +dmalcolm ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue9694] argparse: Default Help Message Lists Required Args As Optional

2010-08-26 Thread Ben Schmaus
Ben Schmaus added the comment: FWIW, I like the idea of just using the label "options". -- ___ Python tracker ___ ___ Python-bugs-list

[issue9119] Python download page needs to mention crypto code in Windows installer

2010-08-26 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo versions: -Python 2.6, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue9697] python 2.3.4 installation error on 64 bit env

2010-08-26 Thread Éric Araujo
Éric Araujo added the comment: Python 2.3 is not supported anymore. There are no bug fixes, even for security issues, so I’m afraid this error cannot be fixed. -- components: +Installation nosy: +eric.araujo resolution: -> out of date stage: -> committed/rejected status: open -> clos

[issue9696] xdrlib's pack_int generates DeprecationWarnings for negative in-range values

2010-08-26 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the report. This actually raises an error with current Pythons: 2.7 traceback: File "xdrlib.py", line 54, in pack_uint self.__buf.write(struct.pack('>L', x)) struct.error: integer out of range for 'L' format code (The 3.x error message is slightly

[issue9694] argparse: Default Help Message Lists Required Args As Optional

2010-08-26 Thread Eric Smith
Eric Smith added the comment: If you add a positional parameter by adding: parser.add_argument('foo') then the output becomes: $ python argparse-help-says-required-args-are-optional.py -h usage: issue9649.py [-h] --reqarg REQARG [--optarg OPTARG] foo Do something positional arguments: foo

[issue9697] python 2.3.4 installation error on 64 bit env

2010-08-26 Thread Jayesh
Jayesh added the comment: Thanks for the quick updates. Which python version is currently supported? -- ___ Python tracker ___ ___ Pyt

[issue8759] 2.7: wrong user site directory on Linux

2010-08-26 Thread Éric Araujo
Éric Araujo added the comment: Fixed in the distutils2 backport in 7f0148944e28 (not pushed yet due to SSH problem with Bitbucket). -- nosy: +eric.araujo resolution: invalid -> fixed ___ Python tracker ___

[issue8797] urllib2 basicauth broken in 2.6.5: RuntimeError: maximum recursion depth exceeded in cmp

2010-08-26 Thread Senthil Kumaran
Senthil Kumaran added the comment: On Thu, Aug 26, 2010 at 3:24 PM, Mads Kiilerich wrote: > Mads Kiilerich added the comment: > > Senthil, can you tell us why this fix is correct - and convince us that it is > the Final Fix for this issue? Hello Mads, this may not be be final fix. I just ado

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-08-26 Thread Greg Ward
Greg Ward added the comment: I'm unassigning this since I no longer know how to commit changes to Python. Sorry, I just haven't kept track over the years, I don't follow python-dev anymore, and I could not find documentation explaining where I should commit what sort of changes. --

[issue1610654] cgi.py multipart/form-data

2010-08-26 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue1573931] WSGI, cgi.FieldStorage incompatibility

2010-08-26 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker ___ ___ Pyt

[issue4953] cgi module cannot handle POST with multipart/form-data in 3.0

2010-08-26 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue6234] cgi.FieldStorage is broken when given POST data

2010-08-26 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue8846] cgi.py bug report + fix: tailing carriage return and newline characters in multipart cgi input broken

2010-08-26 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3609] does parse_header really belong in CGI module?

2010-08-26 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox stage: -> patch review versions: +Python 3.2 -Python 3.0 ___ Python tracker ___ ___ Python

[issue9205] Parent process hanging in multiprocessing if children terminate unexpectedly

2010-08-26 Thread Albert Strasheim
Changes by Albert Strasheim : -- nosy: +Albert.Strasheim ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue9207] multiprocessing occasionally spits out exception during shutdown (_handle_workers)

2010-08-26 Thread Albert Strasheim
Changes by Albert Strasheim : -- nosy: +Albert.Strasheim ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue9697] python 2.3.4 installation error on 64 bit env

2010-08-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: Python 2.7 and Python 3.1 are supported for bug fixes. -- nosy: +loewis ___ Python tracker ___ ___

[issue8296] multiprocessing.Pool hangs when issuing KeyboardInterrupt

2010-08-26 Thread Greg Brockman
Changes by Greg Brockman : -- nosy: +gdb ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue9698] When reusing an handler, urllib(2)'s digest authentication fails after multiple regative replies

2010-08-26 Thread Luci Stanescu
New submission from Luci Stanescu : Hi, The HTTPDigestAuthHandler's code looks like this: def http_error_401(self, req, fp, code, msg, headers): host = urlparse(req.full_url)[1] retry = self.http_error_auth_reqed('www-authenticate',

<    1   2