[issue8265] test_float fails on ARM Linux EABI with soft floating point

2010-04-18 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue8447] buildbot: test_httpservers failure (No module named operator)

2010-04-18 Thread STINNER Victor
Changes by STINNER Victor : -- components: +Library (Lib), Tests -Macintosh ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue8450] httplib: false BadStatusLine() raised

2010-04-18 Thread mschu
New submission from mschu : Independent from HTTP strict, an invalid BadStatusLine() exception is raised when a keep-alive connection exceeds its timeout: client->server s->c s->c: FIN/ACK c->s: ACK c->s: /FIN s->c: RST (without data) which raises the exception. An easy workaround is to ei

[issue8446] buildbot: DeprecationWarning not raised for icglue (test_py3kwarn.TestStdlibRemovals)

2010-04-18 Thread STINNER Victor
STINNER Victor added the comment: Mac/Modules/icgluemodule.c has a call to PyErr_WarnPy3k if (PyErr_WarnPy3k("In 3.x, the icglue module is removed.", 1)) return; Other modules check if the result is smaller than 0, but PyErr_WarnPy3k() possible results are only 0 or -1, so I don't understa

[issue8445] buildbot: test_ttk_guionly failures

2010-04-18 Thread STINNER Victor
Changes by STINNER Victor : -- components: +Tests, Tkinter ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue8449] buildbot: test_dbm and test_dbm_ndbm

2010-04-18 Thread roundup-admin
failures To: python-bugs-list@python.org From: STINNER Victor Date: Sun, 18 Apr 2010 22:30:17 + Precedence: bulk X-Roundup-Name: Python tracker X-Roundup-Loop: hello X-Roundup-Version: 1.4.10 Reply-To: Python tracker Message-Id: <1271629817.22.0.668476357491.issue8...@psf.upfronthosting.co.za

[issue8448] buildbot: test_subprocess failure (test_no_leaking, Broken pipe)

2010-04-18 Thread STINNER Victor
STINNER Victor added the comment: "op->_ob_prev->_ob_next" comes from _Py_ForgetReference() compiled in pydebug mode and it should ends with "UNREF invalid object" but it looks like _PyObject_Dump(op->_ob_next->_ob_prev); crashed. Anyway, something gone wrong here. -- __

[issue8436] set.__init__ accepts keyword args

2010-04-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: r80202, r80203, r80204, and r80205 -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue8445] buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback)

2010-04-18 Thread STINNER Victor
Changes by STINNER Victor : -- title: buildbot: test_ttk_guionly failures -> buildbot: test_ttk_guionly failures (test_traversal, test_tab_identifiers, test_identify, test_heading_callback) ___ Python tracker

[issue8420] Objects/setobject.c contains unsafe code

2010-04-18 Thread Eugene Kapun
Changes by Eugene Kapun : Added file: http://bugs.python.org/file16981/repr.diff ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue8242] Support surrogates in import ; install Python in a non-ASCII directory

2010-04-18 Thread STINNER Victor
Changes by STINNER Victor : -- dependencies: +tarfile: use surrogates for undecode fields ___ Python tracker ___ ___ Python-bugs-list m

[issue8242] Support surrogates in import ; install Python in a non-ASCII directory

2010-04-18 Thread STINNER Victor
STINNER Victor added the comment: I commited the platform.py patch as r80166 (trunk) and r80167 (py3k), but quickly reverted it because the patch on trunk broke Python bootstrap. The patch might be applied, but only on py3k and with more tests (ensure that it doesn't break bootstrap on any OS

[issue6095] os.curdir as the default argument for os.listdir

2010-04-18 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue8299] Improve GIL in 2.7

2010-04-18 Thread David Beazley
David Beazley added the comment: Here are the results of running the fair.py test on a Mac OS-X system using a "fair" GIL implementation (modified condition variable): [ Fair GIL, Dual-Core, OS-X ] Sequential execution slow: 5.490943 (0 left) fast: 0.369257 (0 left) Threaded execution slow: 6.

[issue8425] a -= b should be fast if a is a small set and b is a large set

2010-04-18 Thread Ezio Melotti
Ezio Melotti added the comment: Raymond, have you forgotten to attach the patch or have you just set the stage to 'patch review' by mistake? -- nosy: +ezio.melotti priority: -> normal stage: patch review -> unit test needed ___ Python tracker

[issue8415] namedtuple vs tuple

2010-04-18 Thread H Krishnan
H Krishnan added the comment: Sorry, I didn't know about "python-ideas". Actually, there is a way to do this without breaking any existing code. namedtuple could support an optional additional argument, say, useIterableCtr, which is by default False, and the class template could be appropriate

[issue8425] a -= b should be fast if a is a small set and b is a large set

2010-04-18 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- stage: unit test needed -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue8415] namedtuple vs tuple

2010-04-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: We don't do flags either :-) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue8451] syslog.syslog('msg') logs message with ident "python".

2010-04-18 Thread Sean Reifschneider
New submission from Sean Reifschneider : As discussed in this thread: http://mail.python.org/pipermail/python-dev/2010-March/098500.html The syslog module is using the C argv[0] as the program name, not the python sys.argv[0]. So, in most cases this means that unless you explicitly set a ide

[issue8451] syslog.syslog('msg') logs message with ident "python".

2010-04-18 Thread Sean Reifschneider
Changes by Sean Reifschneider : Added file: http://bugs.python.org/file16982/syslog-kwargs.patch ___ Python tracker ___ ___ Python-bugs-list ma

[issue8451] syslog.syslog('msg') logs message with ident "python".

2010-04-18 Thread Sean Reifschneider
Changes by Sean Reifschneider : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue8453] build_installer.py breaks bzip compilation

2010-04-18 Thread Martin v . Löwis
New submission from Martin v. Löwis : The current build_installer fails to build dependencies, e.g. with gcc-4.0 -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -o bzip2 bzip2.o -L. -lbz2 collect2: cannot find 'ld' collect2: cannot find 'ld' lipo: can't open input file: /var/tmp

<    1   2