[issue1662581] the re module can perform poorly: O(2**n) versus O(n**2)

2007-10-07 Thread Aaron Swartz
Aaron Swartz added the comment: Just a note for those who think this is a purely theoretical issue: We've been using the python-markdown module on our web app for a while, only to notice the app has been repeatedly going down. After tracking down the culprit, we found that a speech from Hamlet

[issue1746656] IPv6 Interface naming/indexing functions

2007-10-07 Thread Gabriel de Perthuis
Changes by Gabriel de Perthuis : -- nosy: +onyxg7 type: - rfe _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1746656 _

[issue1123] split(None, maxsplit) does not strip whitespace correctly

2007-10-07 Thread Brett Cannon
Brett Cannon added the comment: Re-opening as jafo was referring to the string module's function implementation which is deprecated. The real issue is that the built-in types docs are bad. -- assignee: fdrake - resolution: invalid - status: closed - open versions: +Python 2.6

[issue1240] str.split bug when using sep = None and maxsplit

2007-10-07 Thread Brett Cannon
Brett Cannon added the comment: issue1123 was the issue I was thinking of. Setting that as a superceder as 1123 was closed prematurely. -- superseder: - split(None, maxsplit) does not strip whitespace correctly __ Tracker [EMAIL PROTECTED]

[issue1240] str.split bug when using sep = None and maxsplit

2007-10-07 Thread Brett Cannon
Changes by Brett Cannon: -- resolution: - duplicate status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1240 __ ___ Python-bugs-list mailing list

[issue1238] dictobject and dictentry not used consistently in dictobject.c

2007-10-07 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1238 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1229] 3.0 library/stdtypes.rst

2007-10-07 Thread Brett Cannon
Brett Cannon added the comment: Fixed in revision 58353. -- assignee: - brett.cannon keywords: +py3k nosy: +brett.cannon resolution: - fixed status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1229

[issue467384] provide a documented serialization func

2007-10-07 Thread Brett Cannon
Changes by Brett Cannon: -- nosy: -brett.cannon Tracker [EMAIL PROTECTED] http://bugs.python.org/issue467384 ___ Python-bugs-list mailing list Unsubscribe:

[issue416670] MatchObjects not deepcopy()able

2007-10-07 Thread Brett Cannon
Changes by Brett Cannon: -- nosy: -brett.cannon Tracker [EMAIL PROTECTED] http://bugs.python.org/issue416670 ___ Python-bugs-list mailing list Unsubscribe:

[issue1035] bytes buffer API needs to support read locking and/or PyBUF_LOCKDATA

2007-10-07 Thread Brett Cannon
Brett Cannon added the comment: All the tests pass for me, Gregory. Were the failures with some patch you had only locally? -- nosy: +brett.cannon priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1035

[issue1238] dictobject and dictentry not used consistently in dictobject.c

2007-10-07 Thread Brett Cannon
Changes by Brett Cannon: -- priority: - low __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1238 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1238] dictobject and dictentry not used consistently in dictobject.c

2007-10-07 Thread Brett Cannon
Brett Cannon added the comment: While I understand the argument for faster recompiles, dictobject.(c|h) do not change that often, and thus faster recompiles are not critical. I am with Guido and would rather see the module moved over to public names. Setting the priority to low as this is not

[issue1160] Medium size regexp crashes python

2007-10-07 Thread Brett Cannon
Changes by Brett Cannon: -- priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1160 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1243] option.dest not set when callback called with optparse

2007-10-07 Thread Guido van Rossum
Guido van Rossum added the comment: Since you've done so much work debugging this, would you mind submitting a patch, including a unit test that confirms the desired behavior? -- nosy: +gvanrossum __ Tracker [EMAIL PROTECTED]

[issue1035] bytes buffer API needs to support read locking and/or PyBUF_LOCKDATA

2007-10-07 Thread Gregory P. Smith
Gregory P. Smith added the comment: This bug will be taken care of by PEP 3137 http://python.org/dev/peps/pep-3137/ being implemented. Anyways, no the _bsddb.c changes that I checked in do not cause a problem because I checked them in using PyBUF_SIMPLE. Until PEP 3137 is implemented the

[issue1035] bytes buffer API needs to support read locking and/or PyBUF_LOCKDATA

2007-10-07 Thread Brett Cannon
Brett Cannon added the comment: On 10/7/07, Gregory P. Smith [EMAIL PROTECTED] wrote: [SNIP] Feel free to close this bug in favor of something that just tracks the PEP being implemented. Eh, it can stay open as a reminder to double-check everything is fine once PEP 3137 goes in. It's really

[issue1244] Error on 'raise' does not show correct line number and Traceback message

2007-10-07 Thread Alexander Shirokov
New submission from Alexander Shirokov: Please run debracket.py It halts immediately and the message explains the problem. Regards Alex -- files: debracket.py messages: 56265 nosy: alexander.shirokov severity: normal status: open title: Error on 'raise' does not show correct line number