[issue6482] PATCH: tiny simplification for subprocess

2009-07-16 Thread David Goodger
David Goodger added the comment: To clarify my last message: the log message for r74028 ('simplify "except: raise" to "finally:"') implies a nonexistent equivalence. So was the log message in error, or the change itself? --

[issue6482] PATCH: tiny simplification for subprocess

2009-07-16 Thread David Goodger
David Goodger added the comment: r74028 changes the logic of the code. The "finally" clause always executes, regardless of whether or not an exception was raised. The previous behavior only executed when there was an exception. I don't know if the previous logic was correct, o

[issue3364] An ortographical typo in Zen of Python text

2008-07-17 Thread David Goodger
Changes by David Goodger <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file10928/unnamed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1924] %i string format breaks for large floats (incomplete int conversion)

2008-01-24 Thread David Goodger
New submission from David Goodger: I ran across this bug in some legacy production code when numbers got high: >>> '%i' % 2e9 '20' >>> '%i' % 3e9 Traceback (most recent call last): File "", line 1, in ? TypeError: int argumen