- 10 May, 2011 16 commits
-
-
Victor Stinner authored
non-ASCII path (path to the Python executable). Open and write the script in binary mode, but ensure that the shebang is decodable from UTF-8 and from the encoding of the script.
-
Victor Stinner authored
System log2() is not accurate for exact power of 2.
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Benjamin Peterson authored
-
Mark Dickinson authored
-
Antoine Pitrou authored
order to accept exactly one connection. Patch by Daniel Evers.
-
Antoine Pitrou authored
order to accept exactly one connection. Patch by Daniel Evers.
-
Victor Stinner authored
instead of a RuntimeError: OSError has an errno attribute.
-
Łukasz Langa authored
-
Łukasz Langa authored
-
Vinay Sajip authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Vinay Sajip authored
Issue #12039: Now suppress spurious select.error raised on FreeBSD when the server (an asyncore.dispatcher) is closed.
-
- 09 May, 2011 24 commits
-
-
Victor Stinner authored
Use _set_abort_behavior() + abort() instead of raise(SIGABRT) which may write an error message and/or open a popup asking to report the fault.
-
Victor Stinner authored
-
Victor Stinner authored
OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2 protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid. Optimize also ssl.get_protocol_name(): speed does matter!
-
Victor Stinner authored
OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2 protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid. Optimize also ssl.get_protocol_name(): speed does matter!
-
Victor Stinner authored
CTRL+c, clear the end-of-file indicator after CTRL+d.
-
Victor Stinner authored
the end-of-file indicator after CTRL+d.
-
Victor Stinner authored
clear the end-of-file indicator after CTRL+d.
-
Vinay Sajip authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Antoine Pitrou authored
-
Łukasz Langa authored
-
Łukasz Langa authored
-
Vinay Sajip authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Ezio Melotti authored
-
Senthil Kumaran authored
sending of headers to output stream and flushing the internal headers buffer. Patch contribution by Andrew Schaaf
-
Antoine Pitrou authored
-
Mark Dickinson authored
Issue #11188: In log2 tests, create powers of 2 using ldexp(1, n) instead of the less reliable 2.0**n.
-
Victor Stinner authored
pthread_t is a pointer, not an integer, on FreeBSD. It should fix the following gcc warning: passing argument 1 of ‘pthread_kill’ makes pointer from integer without a cast
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
I expect the system libc to use more accurate functions than Python. The GNU libc uses for example FYL2X and FYL2XP1 hardware instructions on Intel FPU.
-