- 06 Şub, 2015 7 kayıt (commit)
-
-
Steve Dower yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
Patch by Eldar Abusalimov.
-
Ned Deily yazdı
-
Ned Deily yazdı
(currently only used for builds with <= 10.5 deployment targets)
-
- 05 Şub, 2015 12 kayıt (commit)
-
-
Victor Stinner yazdı
clock resolution on Windows
-
Victor Stinner yazdı
on Windows
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
values (like 0.9.8zc).
-
Donald Stufft yazdı
-
Donald Stufft yazdı
-
Gregory P. Smith yazdı
pass -I or -E to the child process by default when the environment is required for the child process interpreter to function properly.
-
Gregory P. Smith yazdı
pass -I or -E to the child process by default when the environment is required for the child process interpreter to function properly.
-
- 04 Şub, 2015 10 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* _check_resolved_address() is implemented with getaddrinfo() which is slow * If available, use socket.inet_pton() instead of socket.getaddrinfo(), because it is much faster Microbenchmark (timeit) on Fedora 21 (Python 3.4, Linux 3.17, glibc 2.20) to validate the IPV4 address "127.0.0.1" or the IPv6 address "::1": * getaddrinfo() 10.4 usec per loop * inet_pton(): 0.285 usec per loop On glibc older than 2.14, getaddrinfo() always requests the list of all local IP addresses to the kernel (using a NETLINK socket). getaddrinfo() has other known issues, it's better to avoid it when it is possible.
-
Victor Stinner yazdı
Just try to be consistent: _debug was already used in some places, and always used in BaseProactorEventLoop.
-
Gregory P. Smith yazdı
to end up in distutils CFLAGS.
-
Gregory P. Smith yazdı
to end up in distutils CFLAGS.
-
Gregory P. Smith yazdı
interpreter under test is being run in an environment that requires the use of environment variables such as PYTHONHOME in order to function at all. Adds a test.script_helper.interpreter_requires_environment() function to be used with @unittest.skipIf on stdlib test methods requiring this.
-
Gregory P. Smith yazdı
interpreter under test is being run in an environment that requires the use of environment variables such as PYTHONHOME in order to function at all. Adds a private test.script_helper._interpreter_requires_environment() function to be used with @unittest.skipIf on stdlib test methods requiring this.
-
- 03 Şub, 2015 11 kayıt (commit)
-
-
Stefan Krah yazdı
-
Stefan Krah yazdı
and array_buffer_getbuf().
-
Serhiy Storchaka yazdı
It was expected that string_size == PyBytes_GET_SIZE(buf) if the buffer is shared, but truncate() and __setstate__() can set string_size without unsharing the buffer.
-
Raymond Hettinger yazdı
Issue 23359: Reduce size of code in set_lookkey. Only do linear probes when there is no wrap-around. Nice simplification contributed by Serhiy Storchaka :-)
-
Stefan Krah yazdı
and bytearray_getbuffer(). Both functions now raise BufferError in that case.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Serhiy Storchaka yazdı
-
Berker Peksag yazdı
Patch by Demian Brecht.
-
Berker Peksag yazdı
Patch by Martin Panter.
-
Berker Peksag yazdı
Patch by Martin Panter.
-