[issue7117] Backport py3k float repr to trunk

2009-11-25 Thread Mark Dickinson
Mark Dickinson dicki...@gmail.com added the comment: Thanks, Eric. The only remaining documentation issues I'm aware of are in Doc/tutorial/floatingpoint.rst. I think Raymond is going to update this to match the py3k version. I'll call this done, then! Thanks for all your help. --

[issue1606092] csv module broken for unicode

2009-11-25 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: This is indeed fixed in Python 3. If someone wishes to step forward with patches for 2.7, they can reopen this bug, but I don't think it is worth the effort. -- nosy: +r.david.murray resolution: - out of date stage: -

[issue6615] multiprocessing logging support test

2009-11-25 Thread Vinay Sajip
Vinay Sajip vinay_sa...@yahoo.co.uk added the comment: Since you reversed() the _handlerList, the following part need to be changed: -_handlerList.insert(0, weakref.ref(handler, _removeHandlerRef)) +_handlerList.append(weakref.ref(handler, _removeHandlerRef)) Corrected in

[issue7394] sqlite3: some OperationalError exceptions should be ProgrammingError (PEP 249)

2009-11-25 Thread dontbugme
New submission from dontbugme pythonbugsbugme...@spamavert.com: The following code raises OperationalError exceptions: python -c 'import sqlite3; sqlite3.connect(:memory:).execute(bad syntax)' python -c 'import sqlite3; sqlite3.connect(:memory:).execute(SELECT * FROM no_such_table)' python -c

[issue7391] Re-title the Using Backslash to Continue Statements anti-idiom

2009-11-25 Thread Neil Cerutti
Neil Cerutti ceru...@trans-video.net added the comment: Yes, I know. That's why I feel it should not be labeled an anti-idiom, as it currently seems to be. -- status: pending - open ___ Python tracker rep...@bugs.python.org

[issue7391] Re-title the Using Backslash to Continue Statements anti-idiom

2009-11-25 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Agreed. -- priority: - low resolution: wont fix - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7391 ___

[issue4097] Traceback doesn't run back all the way

2009-11-25 Thread flox
flox la...@yahoo.fr added the comment: It looks similar to issue7378, but the latter has more details. Close as duplicate? -- nosy: +flox ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4097

[issue4158] compilation of sqlite3 fails

2009-11-25 Thread flox
flox la...@yahoo.fr added the comment: Please close as invalid. -- nosy: +flox ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4158 ___ ___

[issue4158] compilation of sqlite3 fails

2009-11-25 Thread flox
Changes by flox la...@yahoo.fr: -- nosy: -flox ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4158 ___ ___ Python-bugs-list mailing list

[issue4380] Deepcopy of functools.partial gives wierd exception

2009-11-25 Thread flox
flox la...@yahoo.fr added the comment: This issue is somewhat related to the same issue with pickle. See issue1398 for the explanation. -- nosy: +flox ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4380

[issue4158] compilation of sqlite3 fails

2009-11-25 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- resolution: - invalid status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4158 ___

[issue7392] cPickle test failure on release26-maint branch

2009-11-25 Thread flox
flox la...@yahoo.fr added the comment: I experienced same failure (trunk is OK). It seems that r70531 needs backporting. -- nosy: +flox ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7392

[issue5788] datetime.timedelta is inconvenient to use...

2009-11-25 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: The patch is committed in r76529 (trunk) and r76530 (py3k). Thank you! -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue7371] Windows 64-bit build skips several projects in VS 2008

2009-11-25 Thread Sridhar Ratnakumar
Sridhar Ratnakumar sridh...@activestate.com added the comment: Ok, I found that this issue happens only with RTM version of VS2008. The fix is to install SP1. ref - http://social.msdn.microsoft.com/Forums/en-US/vssetup/thread/ beb4abe5-b40c-4008-aac4-343f3493e5ba -- status: open -

[issue2281] Enhanced cPython profiler with high-resolution timer

2009-11-25 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: One issue with using timestamp counters is that their resolution varies with CPU speed, which is not necessarily constant during a whole run (because of power management). On the other hand I'm not sure it's really a problem. -- versions:

[issue7395] pstats add command raises unhandled exception

2009-11-25 Thread Jean-Paul Calderone
New submission from Jean-Paul Calderone exar...@divmod.com: $ python -m pstats Welcome to the profile statistics browser. % help Documented commands (type help topic): EOF add callees callers quit read reverse sort stats strip Undocumented

[issue1023290] Conversion of longs to bytes and vice-versa.

2009-11-25 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: The following example is strange: + int.from_bytes([255, 0, 0], byteorder='big') +-65536 Isn't `signed` supposed to be False by default? The rest looks ok. -- ___ Python tracker

[issue4097] Traceback doesn't run back all the way

2009-11-25 Thread Benjamin Peterson
Changes by Benjamin Peterson benja...@python.org: -- resolution: - duplicate status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4097 ___

[issue7396] regrtest single: iterator not subscriptable

2009-11-25 Thread James G. sack (jim)
New submission from James G. sack (jim) jgs...@users.sourceforge.net: file Lib/tests/regrtest.py Evidently rev 76260 (trunk) / 76261 (py3k) broke code at rev 76324 line 655 (py3k) rev 76321 line 620 (trunk) which is if tests[0] == alltests[i] because tests was rebound from a list to