- 15 Jan, 2009 2 commits
-
-
Mark Dickinson authored
-
Kristján Valur Jónsson authored
For datetime, gentoo didn't seem to mind the %e format for strftime. So, we just excercise those instead making sure that we don't crash. For test_os, two cases were incorrect.
-
- 14 Jan, 2009 4 commits
-
-
Kristján Valur Jónsson authored
Also, explicitly connect to the IPV4 address. On windows platforms supporting AF_INET6, the SocketProxy would connect using socket.create_connection('localhost', port) which would cycle through all address families and try to connect. It would try connecting using AF_INET6 first and this would cause a delay of up to a second.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 13 Jan, 2009 19 commits
-
-
Benjamin Peterson authored
-
Amaury Forgeot d'Arc authored
e.g. a __slots__ attribute which has not been set.
-
Amaury Forgeot d'Arc authored
("windows sprintf", different than swprintf) Needed for the windows CE port.
-
Antoine Pitrou authored
to str, bytes and bytearray could be optimized away by the compiler, letting the interpreter segfault instead of raising an error.
-
Benjamin Peterson authored
-
Georg Brandl authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Thomas Heller authored
-
Andrew M. Kuchling authored
-
Armin Ronacher authored
-
Raymond Hettinger authored
Needs to be backported to 2.6 and forward ported to 3.0 and 3.1.
-
Raymond Hettinger authored
Improve the appearance and flow of the References section -- it used to have a box around it that wasn't distinct from the preceding code boxes and it had a weird bolding pattern and hanging indents that made the section disproportionately large.
-
Georg Brandl authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Benjamin Peterson authored
-
Raymond Hettinger authored
with a mapping. Makes Counter() idempotent, makes update() API the same as Counter.__init__(), makes a more readable repr, makes the API more dict-like, and allows Steven Bethard's update() example to work.
-
- 12 Jan, 2009 9 commits
-
-
Amaury Forgeot d'Arc authored
Now the slot is filled with a function that always raises. Will not backport: extensions compiled with 2.6.x would not run on 2.6.0.
-
Raymond Hettinger authored
-
Vinay Sajip authored
-
Kristján Valur Jónsson authored
Add tests for invalid format specifiers in strftime, and for handling of invalid file descriptors in the os module.
-
Raymond Hettinger authored
-
Kristján Valur Jónsson authored
-
Kristján Valur Jónsson authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
- 11 Jan, 2009 6 commits
-
-
Benjamin Peterson authored
-
Gregory P. Smith authored
to better describe the signed vs unsigned return value behavior on different platforms and versions of python. Mention the workaround to make them all return the same thing by using & 0xffffffff. Fixes issue4903. Also needs to be merged into release26-maint, release30-maint, & py3k.
-
Gregory P. Smith authored
-
Kristján Valur Jónsson authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-