- 06 Şub, 2015 6 kayıt (commit)
-
-
Steve Dower yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Fixes a regression in issue #22765. Patch by Vinson Lee.
-
Ned Deily yazdı
-
Benjamin Peterson yazdı
Patch by Eldar Abusalimov.
-
Ned Deily yazdı
(currently only used for builds with <= 10.5 deployment targets)
-
- 05 Şub, 2015 6 kayıt (commit)
-
-
Victor Stinner yazdı
on Windows
-
Serhiy Storchaka yazdı
-
Victor Stinner yazdı
-
Ned Deily yazdı
values (like 0.9.8zc).
-
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.
-
- 04 Şub, 2015 5 kayıt (commit)
-
-
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ı
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 3 kayıt (commit)
-
-
Victor Stinner yazdı
-
Berker Peksag yazdı
Patch by Martin Panter.
-
Serhiy Storchaka yazdı
prevent corrupting exported buffer.
-
- 02 Şub, 2015 17 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Used PyMem_New to check overflow.
-
Serhiy Storchaka yazdı
Used PyMem_New to check overflow.
-
Serhiy Storchaka yazdı
and PyObject_AsWriteBuffer().
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Victor Stinner yazdı
Don't use yield/yield-from in an except block of a generator. Store the exception and handle it outside the except block.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 01 Şub, 2015 3 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-