[issue5431] cmpfunc in Python 3.0.1 windows installer

2009-03-06 Thread Nigel Galloway
New submission from Nigel Galloway nigel_gallo...@yahoo.com: C:\Users\Nigel\myPython\iajaarC:\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

[issue400608] just testing

2009-03-06 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com 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

[issue2771] test issue

2009-03-06 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com added the comment: http://codereview.appspot.com/24075 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2771 ___ ___

[issue2771] test issue

2009-03-06 Thread Daniel Diniz
Daniel Diniz aja...@gmail.com 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

[issue5431] cmpfunc in Python 3.0.1 windows installer

2009-03-06 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de 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 rep...@bugs.python.org

[issue5431] cmpfunc in Python 3.0.1 windows installer

2009-03-06 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com 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=69215r2=69221 -- nosy: +amaury.forgeotdarc

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de 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

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Thanks for the debugging! I'll try to produce a patch before tomorrow's alpha release. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5429 ___

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr 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

[issue5432] plistlib contains unescaped hex sequence in doc string

2009-03-06 Thread Jim Correia
New submission from Jim Correia jim.corr...@pobox.com: 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

[issue5425] 2to3 wrong for types.StringTypes

2009-03-06 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de 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,

[issue5431] cmpfunc in Python 3.0.1 windows installer

2009-03-06 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de 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.

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

2009-03-06 Thread Gabriel Sean Farrell
Gabriel Sean Farrell g...@breaksalot.org 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

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Benjamin Peterson
Changes by Benjamin Peterson benja...@python.org: -- priority: high - release blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5429 ___ ___

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Martin v. Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: I have tested it; test_cgi now passes. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5429 ___ ___

[issue4208] Make multiprocessing compatible with Python 2.4 and 2.5

2009-03-06 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- assignee: - jnoller versions: +Python 2.4, Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4208 ___

[issue5162] multiprocessing cannot spawn child from a Windows service

2009-03-06 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- assignee: - jnoller keywords: +patch stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5162 ___

[issue5177] multiprocessing: SocketListener should use SO_REUSEADDR

2009-03-06 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- assignee: - jnoller keywords: +patch stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5177 ___

[issue5400] patches for multiprocessing module on NetBSD

2009-03-06 Thread Daniel Diniz
Changes by Daniel Diniz aja...@gmail.com: -- assignee: - jnoller stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5400 ___ ___

[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 aja...@gmail.com: -- assignee: - jnoller stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3735 ___ ___

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Committed in r70205, let's see what the buildbot says. -- stage: - committed/rejected status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5429

[issue5429] Core dumps on the Solaris buildbot

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: The usual Solaris test failures happened :-(, but nothing related with io-c. -- resolution: - fixed status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5429

[issue5433] Excessive optimization in IncrementalNewlineDecoder

2009-03-06 Thread Antoine Pitrou
New submission from Antoine Pitrou pit...@free.fr: 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

[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 jnol...@gmail.com added the comment: Daniel, if issues are in my queue, I can manage the state -- keywords: +needs review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3735 ___

[issue5433] Excessive optimization in IncrementalNewlineDecoder

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr 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 rep...@bugs.python.org

[issue5433] Excessive optimization in IncrementalNewlineDecoder

2009-03-06 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Committed in r70208. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5433 ___

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

2009-03-06 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com added the comment: done in r70212 and r70214 Thanks Akira ! -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5394 ___

[issue5411] add xz compression support to distutils

2009-03-06 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com 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

[issue4214] no extension debug info with msvc9compiler.py

2009-03-06 Thread Tarek Ziadé
Tarek Ziadé ziade.ta...@gmail.com 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 ___

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

2009-03-06 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: Fixed in r70218, I will be merging into the other branches still today. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5193

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

2009-03-06 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com 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

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

2009-03-06 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: Fixed in r70219. ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4792 ___ ___ Python-bugs-list mailing

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

2009-03-06 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: Merges: r70220, r70221, r70222 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5193 ___ ___

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

2009-03-06 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: Merges: r70220, r70221, r70222 -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4792 ___

[issue2638] tkSimpleDialog Window Flashing

2009-03-06 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: Fixed in r70223 and r70225. Thanks for reporting. -- resolution: accepted - fixed status: open - closed versions: -Python 3.0 ___ Python tracker rep...@bugs.python.org

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

2009-03-06 Thread Matthew Barnett
Matthew Barnett pyt...@mrabarnett.plus.com added the comment: issue2636-features-6.diff includes: Bugfixes Added group access via subscripting. m = re.search((\D*)(?number\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[

[issue5434] datetime.MonthDelta

2009-03-06 Thread Jess Austin
Jess Austin jess.aus...@gmail.com 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:

[issue5435] test_httpservers on Debian Testing

2009-03-06 Thread Michael Zamot
New submission from Michael Zamot mich...@zamotcr.net: 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

[issue5434] datetime.MonthDelta

2009-03-06 Thread Jess Austin
Jess Austin jess.aus...@gmail.com added the comment: Rietveld link: http://codereview.appspot.com/25079 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5434 ___