- 15 Ock, 2009 4 kayıt (commit)
-
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Kristján Valur Jónsson yazdı
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 Ock, 2009 4 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
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 yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 13 Ock, 2009 19 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Amaury Forgeot d'Arc yazdı
e.g. a __slots__ attribute which has not been set.
-
Amaury Forgeot d'Arc yazdı
("windows sprintf", different than swprintf) Needed for the windows CE port.
-
Antoine Pitrou yazdı
to str, bytes and bytearray could be optimized away by the compiler, letting the interpreter segfault instead of raising an error.
-
Benjamin Peterson yazdı
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Thomas Heller yazdı
-
Andrew M. Kuchling yazdı
-
Armin Ronacher yazdı
-
Raymond Hettinger yazdı
Needs to be backported to 2.6 and forward ported to 3.0 and 3.1.
-
Raymond Hettinger yazdı
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 yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Benjamin Peterson yazdı
-
Raymond Hettinger yazdı
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 Ock, 2009 9 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
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 yazdı
-
Vinay Sajip yazdı
-
Kristján Valur Jónsson yazdı
Add tests for invalid format specifiers in strftime, and for handling of invalid file descriptors in the os module.
-
Raymond Hettinger yazdı
-
Kristján Valur Jónsson yazdı
-
Kristján Valur Jónsson yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 11 Ock, 2009 4 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Gregory P. Smith yazdı
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 yazdı
-
Kristján Valur Jónsson yazdı
-