[issue16001] small ints: cache string representation

2012-09-21 Thread Martin v . Löwis
Martin v. Löwis added the comment: Also, can you report benchmark results? -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-lis

[issue15974] Optional compact and colored output for regrest

2012-09-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Great idea. By default, the windows console keeps fewer lines of output than regrtest generates, which means that earlier errors are gone before it finishes. -- nosy: +terry.reedy ___ Python tracker

[issue15978] asyncore: included batteries don't fit

2012-09-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: I think discussion of this idea on python-ideas list would be better. There might be some controversy and alternatives presented. With a positive response, a PEP should probably follow with details on a module by module basis. As this stands, this is not reall

[issue15987] Provide a way to compare AST nodes for equality recursively

2012-09-21 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> test needed versions: -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue15988] Inconsistency in overflow error messages of integer argument

2012-09-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: The reason for the different messages is clear -- there are different internal tests (I presume in different functions), each of which raises its own error. What do you propose to change? The only thing I can imagine is that when the bytes converter calls the

[issue15996] pow() for complex numbers is rough around the edges

2012-09-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Given that >>> 1.0**float('inf'), 1.0**float('-inf') (1.0, 1.0) works, >>> (1.0+0j)**(float('inf') + 0j) Traceback ... ZeroDivisionError: 0.0 to a negative or complex power (and same for ('-inf') seems like a clear bug in raising an exception, let alone a cle

[issue12067] Doc: remove errors about mixed-type comparisons.

2012-09-21 Thread Mike Hoy
Mike Hoy added the comment: I've attempted to incorporate both Terry's and Ezio's suggestions. Here is a patch to get started with. There is a section that has been deleted. Patch uploaded. -- keywords: +patch Added file: http://bugs.python.org/file27256/issue12067-expressions.diff __

[issue12067] Doc: remove errors about mixed-type comparisons.

2012-09-21 Thread Chris Jerdonek
Chris Jerdonek added the comment: Some minor comments: -The operators ``<``, ``>``, ``==``, ``>=``, ``<=``, and ``!=`` compare the +``<``, ``>``, ``==``, ``>=``, ``<=``, and ``!=`` compare the values of two I think it reads better to start a sentence (and in this case a paragraph) with a word

[issue15972] wrong error message for os.path.getsize

2012-09-21 Thread Georg Brandl
Georg Brandl added the comment: This certainly isn't a release blocker. Check it into default, and it will go into 3.3.1. -- priority: release blocker -> normal ___ Python tracker

[issue15949] docs.python.org not getting updated

2012-09-21 Thread Georg Brandl
Georg Brandl added the comment: When the docs don't update, there's usually an error in running Sphinx. In this case, the recently committed patch for #78982 (in the Unicode howto) prevents the LaTeX build (or more exact, the pdflatex run) from completing. Please revert that part of it. (Asi

[issue15759] "make suspicious" doesn't display instructions in case of failure

2012-09-21 Thread Georg Brandl
Georg Brandl added the comment: The error exit code should be preserved though. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue15882] _decimal.Decimal constructed from tuple

2012-09-21 Thread Georg Brandl
Georg Brandl added the comment: Done. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15973] Segmentation fault on timezone comparison

2012-09-21 Thread Georg Brandl
Georg Brandl added the comment: Which commit(s) do I have to pick? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue15895] PyRun_SimpleFileExFlags() can leak a FILE pointer

2012-09-21 Thread Georg Brandl
Georg Brandl added the comment: Now transplanted to release clone. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-li

[issue15977] Memory leak in _ssl.c

2012-09-21 Thread Georg Brandl
Georg Brandl added the comment: Picked. -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

<    1   2