[issue1533] Bug in range() function for large values

2010-04-30 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I agree that this issue should be closed with no further action, but for historical accuracy the resolution should be "out of date" rather than "won't fix". The original bug was about range() behavior when it get arguments that are not ints, but "coerc

[issue8253] add a resource+files section in setup.cfg

2010-04-30 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue8357] Add a --show-installation-paths in the install command

2010-04-30 Thread Dan Buch
Changes by Dan Buch : -- nosy: +meatballhat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue1462525] URI parsing library

2010-04-30 Thread Paul Jimenez
Paul Jimenez added the comment: That sounds great - at least something useful will come out of this, even if it's just more tests for urlparse :) -- ___ Python tracker ___ __

[issue8582] urllib.urlretrieve fails with ValueError: Invalid format string

2010-04-30 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: -> orsenthil nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue8582] urllib.urlretrieve fails with ValueError: Invalid format string

2010-04-30 Thread Senthil Kumaran
Senthil Kumaran added the comment: I guess the problem with specific to Windows. I don't see any problem with urlretrieve of a image/png url on Linux. And surprisingly, %T of time.strftime is undocumented: http://docs.python.org/library/time.html I wanted to check if that format specifier was

[issue8582] urllib.urlretrieve fails with ValueError: Invalid format string

2010-04-30 Thread R. David Murray
R. David Murray added the comment: The fact that our docs don't mention it is a clue that it is platform dependent :) Theoretically it shouldn't be, since it is in Posix: http://www.opengroup.org/onlinepubs/009695399/functions/strftime.html but practically speaking it is, since Windows doe

[issue8582] urllib.urlretrieve fails with ValueError: Invalid format string

2010-04-30 Thread R. David Murray
Changes by R. David Murray : -- stage: -> unit test needed type: crash -> behavior versions: +Python 2.6, Python 3.1, Python 3.2 ___ Python tracker ___ __

[issue5109] array.array constructor very slow when passed an array object.

2010-04-30 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Attached patch makes array(t, a) use memcpy when t == a.typecode. The code array_new can probably be refactored to eliminate redundant checks, but with a good C compiler this probably have no performance effect. While refactoring can simplify the code,

[issue665761] reduce() masks exception

2010-04-30 Thread Jean-Paul Calderone
Changes by Jean-Paul Calderone : -- nosy: -exarkun ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue8582] urllib.urlretrieve fails with ValueError: Invalid format string

2010-04-30 Thread Senthil Kumaran
Senthil Kumaran added the comment: Here is the patch and the unittest for this issue. David: The tests does ensure coverage of urlretrieve method. - Changes %T to %H:%M:%S in strftime usage in retrieve. - Coverage of Date header of retrieved file according to format specified. David, any comme

[issue1533] Bug in range() function for large values

2010-04-30 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- resolution: wont fix -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue8214] Add exception logging function to syslog module

2010-04-30 Thread Sean Reifschneider
Sean Reifschneider added the comment: I have completed the exception handling code as prototyped in msg101687. Please review. -- assignee: -> jafo keywords: +needs review stage: needs patch -> patch review Added file: http://bugs.python.org/file17159/logexception2.patch

<    1   2