[issue3825] Major reworking of Python 2.5.2 re module

2008-09-20 Thread Matthew Barnett
Matthew Barnett [EMAIL PROTECTED] added the comment: Bugfix. Added file: http://bugs.python.org/file11532/regex_2.6rc2.diff ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3825 ___

[issue3916] layout of build directories for Windows not current

2008-09-20 Thread Gabriel Genellina
New submission from Gabriel Genellina [EMAIL PROTECTED]: In the Using Python on Windows document, the various directories listed for building Python on Windows are not current. The attached patch fixes the documentation. Also included a small fix in the PBbuild/ readme.txt file. --

[issue3626] python3.0 interpreter on Cygwin ignores all arguments

2008-09-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment: This patches corrects the bad printf, when the given filename is only 1-char long. -- keywords: +needs review Added file: http://bugs.python.org/file11534/cygwin_badprintf.patch ___ Python

[issue3626] python3.0 interpreter on Cygwin ignores all arguments

2008-09-20 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment: Since the bsddb module has been removed from py3k, the previous patch addresses the last issue for this ticket. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3626

[issue3912] unittest. assertAlmostEqual() documentation incomplete

2008-09-20 Thread Gabriel Genellina
Gabriel Genellina [EMAIL PROTECTED] added the comment: This patch documents the missing default value. -- keywords: +patch nosy: +gagenellina Added file: http://bugs.python.org/file11535/unittest.diff ___ Python tracker [EMAIL PROTECTED]

[issue3852] kqueue.control requires 2 params while docs say max_events (the second) defaults to 0

2008-09-20 Thread Gabriel Genellina
Gabriel Genellina [EMAIL PROTECTED] added the comment: Attached a documentation patch, including the kqueue.control function docstring. But I wonder if the code was incorrect instead - both the documentation and the function docstring specified a default value for max_events=0, and the

[issue3905] subprocess failing in GUI applications on Windows

2008-09-20 Thread Kevin Watters
Changes by Kevin Watters [EMAIL PROTECTED]: -- nosy: +kevinwatters ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3905 ___ ___ Python-bugs-list mailing

[issue3917] set_display definition allows empty '{' '}' in Language Definition

2008-09-20 Thread Bruce Frederiksen
New submission from Bruce Frederiksen [EMAIL PROTECTED]: The definition for set_display in the Language Definition allows for empty curly braces by enclosing expression_list | comprehension in brackets ('[', ']'). These brackets should be removed, as empty curly braces are a dict_display.

[issue3626] python3.0 interpreter on Cygwin ignores all arguments

2008-09-20 Thread Yaakov (Cygwin Ports)
Yaakov (Cygwin Ports) [EMAIL PROTECTED] added the comment: 3.0rc1 together with the printf patch builds and installs. Some quick testing seems ok, but idle isn't working: $ idle3.0 Traceback (most recent call last): File string, line 1, in module File /usr/lib/python3.0/idlelib/run.py,

[issue3918] random.uniform suprisingly (good kind) does not work as documented

2008-09-20 Thread Frank Martinez
New submission from Frank Martinez [EMAIL PROTECTED]: The documentation for random.uniform states: uniform(a, b) Return a random real number N such that a = N b. However when I test it out, We see: import random as r r.uniform(0,-1) -0.9815056608839331

[issue3826] Self-reference in BaseHTTPRequestHandler descendants causes stuck connections

2008-09-20 Thread Gabriel Genellina
Gabriel Genellina [EMAIL PROTECTED] added the comment: 3.0rc1 still fails. The diagnostic is correct, the connection should be closed after sending the response, but isn't. The attached unittest reproduces the error without requiring a browser. -- nosy: +gagenellina

[issue3787] Make PyInstanceMethod_Type available or remove it

2008-09-20 Thread Brett Cannon
Brett Cannon [EMAIL PROTECTED] added the comment: Is this really meant to be for 3.1, or should this be a 3.0 blocker? -- nosy: +brett.cannon ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3787

<    1   2