[issue10902] Doc type: "run_*" instead of "run*" on http://docs.python.org/library/pdb.html

2011-01-13 Thread Jean Jordaan
New submission from Jean Jordaan : http://docs.python.org/library/pdb.html states "The run_* functions and set_trace() are aliases" but the functions in question are "run", "runeval" and "runcall": no underscores. -- assignee: docs@python components: Documentation messages: 126231 nosy

[issue4953] cgi module cannot handle POST with multipart/form-data in 3.x

2011-01-13 Thread Graham Dumpleton
Graham Dumpleton added the comment: FWIW, keep in mind that cgi.FieldStorage is also quite often used in WSGI scripts in arbitrary WSGI servers which have got nothing to do with CGI. Having cgi.FieldStorage muck around with stdout/stderr under WSGI, even where using a CGI/WSGI bridge, would p

[issue4953] cgi module cannot handle POST with multipart/form-data in 3.x

2011-01-13 Thread Glenn Linderman
Glenn Linderman added the comment: Graham, Thanks for your comments. Fortunately, if the new charset parameter is not supplied, no mucking with stdout or stderr is done, which is the only reason I cannot argue strongly against the feature, which I would have implemented as a separate API...

[issue6083] Reference counting bug in PyArg_ParseTuple and PyArg_ParseTupleAndKeywords

2011-01-13 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Attached patch passes the regrtest and makes test-functools.py raise an exception rather than crash. The proposed change will make functions like partial.__setstate__ require tuple argument even though currently it would accept any container. This is

[issue10902] Doc type: "run_*" instead of "run*" on http://docs.python.org/library/pdb.html

2011-01-13 Thread Eli Bendersky
Changes by Eli Bendersky : -- nosy: +eli.bendersky stage: -> needs patch type: performance -> behavior ___ Python tracker ___ ___ Pyt

[issue8957] strptime(.., '%c') fails to parse output of strftime('%c', ..) in some locales

2011-01-13 Thread Eli Bendersky
Eli Bendersky added the comment: Alexander, I get the same error for the he_IL locale. Will look into this -- ___ Python tracker ___ _

[issue9844] calling nonexisting function under __INSURE__

2011-01-13 Thread Nick Coghlan
Nick Coghlan added the comment: A quick Google search suggests that code is there to make Insure++ happy, so +1 for Eli's simple fix. Georg hasn't closed the py3k branch yet, so go ahead and commit it. (3.2c1 is due this Saturday, so it's worth keeping a close eye on python-committers for th

[issue10902] Doc type: "run_*" instead of "run*" on http://docs.python.org/library/pdb.html

2011-01-13 Thread Eli Bendersky
Eli Bendersky added the comment: Here's a patch that fixes it to "run*". If it's OK I will commit it and port to py3k where the problem also exists -- keywords: +patch nosy: +ncoghlan Added file: http://bugs.python.org/file20401/issue10902.py27.1.patch

[issue9844] calling nonexisting function under __INSURE__

2011-01-13 Thread Eli Bendersky
Eli Bendersky added the comment: Committed r87991 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue10902] Doc type: "run_*" instead of "run*" on http://docs.python.org/library/pdb.html

2011-01-13 Thread Nick Coghlan
Nick Coghlan added the comment: Yep, go ahead. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

<    1   2