[issue10492] test_doctest fails with iso-8859-15 locale

2010-11-21 Thread Bruno Gola
Bruno Gola brunog...@gmail.com added the comment: tests are OK for me running on ubuntu 10.04 64bits and py3k from svn repository. -- nosy: +brunogola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10492

[issue3709] BaseHTTPRequestHandler innefficient when sending HTTP header

2010-11-20 Thread Bruno Gola
Bruno Gola brunog...@gmail.com added the comment: applied the patch on py3k on trunk and everything seems fine (works here) -- nosy: +brunogola ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3709

[issue10453] Add -h/--help option to compileall

2010-11-20 Thread Bruno Gola
Bruno Gola brunog...@gmail.com added the comment: applied the patch on an ubuntu 10.04 64bits, py3k (trunk) test_force fails as following: == FAIL: test_force (__main__.CommandLineTests

[issue3156] bytes type has inconsistent methods (append, insert)

2008-06-21 Thread Bruno Gola
Bruno Gola [EMAIL PROTECTED] added the comment: The following patch fixes the behavior, .append and .insert will accept only integer as parameters. Is this really the desired behavior? I mean, why not to accept a character for both methods? There are two tests in Lib/test/test_io.py that uses

[issue2535] duplicate Misc.lower

2008-05-10 Thread Bruno Gola
Bruno Gola [EMAIL PROTECTED] added the comment: The patch seems to be ok, worked here applying it to rev62992 (trunk). This bug is also on py3k, but Tkinter.py has changed. Could anyone create and send a patch for py3k? -- nosy: +brunogola __ Tracker

[issue2345] Using an exception variable outside an 'except' clause should raise a Py3K warning

2008-05-10 Thread Bruno Gola
Bruno Gola [EMAIL PROTECTED] added the comment: see http://bugs.python.org/issue2380, I think that it's related. the only reason i see for nested tuples to be valid syntax in an except clause was: x = ValueError y = (TypeError, IndexError) ... except (x, y): ... and this will not be valid

[issue2380] Raise a Py3K warning for catching nested tuples with non-BaseException exceptions

2008-05-10 Thread Bruno Gola
Bruno Gola [EMAIL PROTECTED] added the comment: Should nested tuples in an except clause be a valid syntax? like: ... except ((ValueError, Exception), TypeError, (...)): pass I don't see any benefit and because of this behavior the implementation (in Python/errors.c and in the patch

[issue2285] list.sort.__doc__ says cmp is a keyword, but it isn't.

2008-03-14 Thread Bruno Gola
Bruno Gola [EMAIL PROTECTED] added the comment: i'm using the lastest version from subversion (trunk) and cmp still is a keyord for list.sort. -- nosy: +brunogola __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2285

[issue2101] xml.dom documentation doesn't match implementation

2008-02-23 Thread Bruno Gola
Bruno Gola added the comment: This seems to be a documentation bug. Patch attached. -- nosy: +brunogola Added file: http://bugs.python.org/file9494/issue_2101_doc.patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2101