[issue5434] datetime.MonthDelta

2009-03-06 Thread Jess Austin
Jess Austin added the comment: Rietveld link: http://codereview.appspot.com/25079 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue5435] test_httpservers on Debian Testing

2009-03-06 Thread Michael Zamot
New submission from Michael Zamot : Hi, im trying to compile Python 3.0.1 under Debian Testing, and i get an error in the step make test. test_https fails with errno 13. The atach file has the full output. So, what is missing in my computer or what i need to do, to compile it, thanks and sorry f

[issue5434] datetime.MonthDelta

2009-03-06 Thread Jess Austin
Jess Austin added the comment: This is my first try at a patch. All functionality, tests, and documentation are included, but I won't be surprised if I need to make some changes! Please let me know. -- keywords: +patch Added file: http://bugs.python.org/file13258/datetimemodule.diff

[issue5434] datetime.MonthDelta

2009-03-06 Thread Jess Austin
New submission from Jess Austin : datetime is a wonderful module. Perhaps the only inconvenient aspect of using it is dealing with month calculations and comparisons. This patch adds a simple class, monthdelta, which represents date offsets in terms of months. It supports basic integer-like ar

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2009-03-06 Thread Matthew Barnett
Matthew Barnett added the comment: issue2636-features-6.diff includes: Bugfixes Added group access via subscripting. >>> m = re.search("(\D*)(?\d+)(\D*)", "abc123def") >>> len(m) 4 >>> m[0] 'abc123def' >>> m[1] 'abc' >>> m[2] '123' >>> m[3] 'def' >>> m[1 : 4] ('abc', '123', 'def') >>> m[ : ] (

[issue2638] tkSimpleDialog Window Flashing

2009-03-06 Thread Guilherme Polo
Guilherme Polo added the comment: Fixed in r70223 and r70225. Thanks for reporting. -- resolution: accepted -> fixed status: open -> closed versions: -Python 3.0 ___ Python tracker ___

[issue4792] PythonCmd in Modules/_tkinter.c should use the given "interp" parameter

2009-03-06 Thread Guilherme Polo
Guilherme Polo added the comment: Merges: r70220, r70221, r70222 -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue5193] Guarantee that Tkinter.Text.search returns a string

2009-03-06 Thread Guilherme Polo
Guilherme Polo added the comment: Merges: r70220, r70221, r70222 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue4792] PythonCmd in Modules/_tkinter.c should use the given "interp" parameter

2009-03-06 Thread Guilherme Polo
Guilherme Polo added the comment: Fixed in r70219. ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue4792] PythonCmd in Modules/_tkinter.c should use the given "interp" parameter

2009-03-06 Thread Guilherme Polo
Guilherme Polo added the comment: I will be committing this but I'm afraid a test won't be added for it. Several people told me that creating multiple tcl interpreters (even if only one is active at some point) is problematic, specially in older tcl versions. So if someone can find another way

[issue5193] Guarantee that Tkinter.Text.search returns a string

2009-03-06 Thread Guilherme Polo
Guilherme Polo added the comment: Fixed in r70218, I will be merging into the other branches still today. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue4214] no extension debug info with msvc9compiler.py

2009-03-06 Thread Tarek Ziadé
Tarek Ziadé added the comment: Since I am unfamiliar with MSVC, I will need to digg on this, so if anyone can help on this : any idea on what would be the proper fix and why ? -- versions: +Python 2.7, Python 3.0, Python 3.1 ___ Python tracker

[issue5411] add xz compression support to distutils

2009-03-06 Thread Tarek Ziadé
Tarek Ziadé added the comment: Good idea ! are you able provide a unit test for the changes made into the two commands ? -- keywords: +patch priority: -> normal stage: -> test needed versions: +Python 2.7, Python 3.1 -Python 2.6 ___ Python tracker

[issue5394] Distutils in trunk does not work with old Python (2.3 - 2.5)

2009-03-06 Thread Tarek Ziadé
Tarek Ziadé added the comment: done in r70212 and r70214 Thanks Akira ! -- status: open -> closed ___ Python tracker ___ ___ Python-b

[issue5433] Excessive optimization in IncrementalNewlineDecoder

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed in r70208. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Pyth

[issue5433] Excessive optimization in IncrementalNewlineDecoder

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: This patch fixes the bug without incurring any significant slowdown. -- keywords: +patch Added file: http://bugs.python.org/file13256/issue5433.patch ___ Python tracker ___

[issue3735] allow multiple threads to efficiently send the same requests to a processing.Pool without incurring duplicate processing

2009-03-06 Thread Jesse Noller
Jesse Noller added the comment: Daniel, if issues are in my queue, I can manage the state -- keywords: +needs review ___ Python tracker ___ __

[issue5433] Excessive optimization in IncrementalNewlineDecoder

2009-03-06 Thread Antoine Pitrou
New submission from Antoine Pitrou : This is with the io-c code: >>> dec = io.IncrementalNewlineDecoder(None, translate=False) >>> dec.newlines >>> dec.decode("\u0A00") '\u0a00' >>> dec.newlines '\n' dec.newlines should have remained equal to None. It only affects the computation of the newline

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: The usual Solaris test failures happened :-(, but nothing related with io-c. -- resolution: -> fixed status: pending -> closed ___ Python tracker _

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed in r70205, let's see what the buildbot says. -- stage: -> committed/rejected status: open -> pending ___ Python tracker ___ _

[issue3735] allow multiple threads to efficiently send the same requests to a processing.Pool without incurring duplicate processing

2009-03-06 Thread Daniel Diniz
Changes by Daniel Diniz : -- assignee: -> jnoller stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue5400] patches for multiprocessing module on NetBSD

2009-03-06 Thread Daniel Diniz
Changes by Daniel Diniz : -- assignee: -> jnoller stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue5177] multiprocessing: SocketListener should use SO_REUSEADDR

2009-03-06 Thread Daniel Diniz
Changes by Daniel Diniz : -- assignee: -> jnoller keywords: +patch stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list

[issue5162] multiprocessing cannot spawn child from a Windows service

2009-03-06 Thread Daniel Diniz
Changes by Daniel Diniz : -- assignee: -> jnoller keywords: +patch stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list

[issue4208] Make multiprocessing compatible with Python 2.4 and 2.5

2009-03-06 Thread Daniel Diniz
Changes by Daniel Diniz : -- assignee: -> jnoller versions: +Python 2.4, Python 2.5 ___ Python tracker ___ ___ Python-bugs-list mailin

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Martin v. Löwis
Martin v. Löwis added the comment: I have tested it; test_cgi now passes. ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- priority: high -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue670664] HTMLParser.py - more robust SCRIPT tag parsing

2009-03-06 Thread Gabriel Sean Farrell
Gabriel Sean Farrell added the comment: Now that BeautifulSoup uses HTMLParser, more people are seeing these errors. See http://groups.google.com/group/beautifulsoup/msg/d5a7540620538d14 and http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=516824 -- nosy: +gsf _

[issue5431] cmpfunc in Python 3.0.1 windows installer

2009-03-06 Thread Martin v. Löwis
Martin v. Löwis added the comment: > I'm sure swig was ported to python 3.0. > Is 3.0.1 allowed to break code developed with 3.0? Of course it was! Removal of cmp support was a deliberate breakage made in 3.0.1, see issue1717. In any case, it isn't coming back.

[issue5425] 2to3 wrong for types.StringTypes

2009-03-06 Thread Martin v. Löwis
Martin v. Löwis added the comment: > Why I considered the existing translation incorrect was because it > translates something which was a tuple of types in Python 2.x into a > type of Python 3.x. I fail to see how this can be useful. It would translate "isinstance(x, types.StringTypes)" corre

[issue5432] plistlib contains unescaped hex sequence in doc string

2009-03-06 Thread Jim Correia
New submission from Jim Correia : The module doc string contains an example with hex escape sequences (see below). They are converted to their literal values by pydoc, which results in an unexpected encoding for the output of pydoc. (raw string, or proper escaping solves the problem) Relevant

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a patch. Martin, can you test it or should I commit directly? -- keywords: +patch Added file: http://bugs.python.org/file13255/textio_unaligned_access.patch ___ Python tracker

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks for the debugging! I'll try to produce a patch before tomorrow's alpha release. ___ Python tracker ___ ___

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Martin v. Löwis
Martin v. Löwis added the comment: Indeed, it crashes in TextIOWrapper_parseCookie(cookie=0xffbfb278, cookieObj=0x27e780) _textio.c:1739 1739cookie->start_pos = * (Py_off_t *)(buffer + OFF_START_POS); with a call stack of #0 0x001426bc in TextIOWrapper_parseCookie (cookie=0xffbfb

[issue5431] cmpfunc in Python 3.0.1 windows installer

2009-03-06 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: I'm sure swig was ported to python 3.0. Is 3.0.1 allowed to break code developed with 3.0? http://svn.python.org/view/python/branches/release30-maint/Include/object.h?r1=69215&r2=69221 -- nosy: +amaury.forgeotdarc ___

[issue5431] cmpfunc in Python 3.0.1 windows installer

2009-03-06 Thread Martin v. Löwis
Martin v. Löwis added the comment: This is not a bug in Python; apparently, SWIG hasn't been ported to Python 3.0.1. -- nosy: +loewis resolution: -> invalid status: open -> closed ___ Python tracker __

[issue2771] test issue

2009-03-06 Thread Daniel Diniz
Daniel Diniz added the comment: Reviewers: , Description: From http://bugs.python.org/issue2771 "This is a very long line. I am wondering how it will be wrapped. What will happen to this exceedingly long line? Will it be wrapped? Will it? Really? What will happen? Here's an example: def

[issue2771] test issue

2009-03-06 Thread Daniel Diniz
Daniel Diniz added the comment: http://codereview.appspot.com/24075 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue400608] just testing

2009-03-06 Thread Daniel Diniz
Daniel Diniz added the comment: Thanks for the feedback, Guido! gvanrossum wrote: > You could maintain this as a locally modified version, but a better > approach would be to make just enough changes to upload.py itself so > that you can write the rest of this script as a *wrapper* around > upl

[issue5431] cmpfunc in Python 3.0.1 windows installer

2009-03-06 Thread Nigel Galloway
New submission from Nigel Galloway : C:\Users\Nigel\myPython\iajaar>C:\Users\Nigel\swigwin-1.3.38\swig - c++ -python -py3 NigelzGLPK.swg generated a C++ wrapper and a Python file. When I attempted to compile the wrapper against Python 3.0.1 it failed see the output log at the end of this mess