- 06 Feb, 2015 8 commits
-
-
Barry Warsaw authored
-
Steve Dower authored
-
Barry Warsaw authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Fixes a regression in issue #22765. Patch by Vinson Lee.
-
Ned Deily authored
-
Benjamin Peterson authored
Patch by Eldar Abusalimov.
-
Ned Deily authored
(currently only used for builds with <= 10.5 deployment targets)
-
- 05 Feb, 2015 6 commits
-
-
Victor Stinner authored
on Windows
-
Serhiy Storchaka authored
-
Victor Stinner authored
-
Ned Deily authored
values (like 0.9.8zc).
-
Donald Stufft authored
-
Gregory P. Smith authored
pass -I or -E to the child process by default when the environment is required for the child process interpreter to function properly.
-
- 04 Feb, 2015 5 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
* _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 authored
Just try to be consistent: _debug was already used in some places, and always used in BaseProactorEventLoop.
-
Gregory P. Smith authored
to end up in distutils CFLAGS.
-
Gregory P. Smith authored
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 Feb, 2015 3 commits
-
-
Victor Stinner authored
-
Berker Peksag authored
Patch by Martin Panter.
-
Serhiy Storchaka authored
prevent corrupting exported buffer.
-
- 02 Feb, 2015 17 commits
-
-
Serhiy Storchaka authored
Used PyMem_New to check overflow.
-
Serhiy Storchaka authored
Used PyMem_New to check overflow.
-
Serhiy Storchaka authored
and PyObject_AsWriteBuffer().
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Victor Stinner authored
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 authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 01 Feb, 2015 1 commit
-
-
Benjamin Peterson authored
-