- 15 Feb, 2015 1 commit
-
-
Serhiy Storchaka authored
-
- 13 Feb, 2015 1 commit
-
-
Serhiy Storchaka authored
-
- 12 Feb, 2015 1 commit
-
-
Victor Stinner authored
-
- 11 Feb, 2015 3 commits
-
-
Antoine Pitrou authored
Issue #23445: pydebug builds now use "gcc -Og" where possible, to make the resulting executable faster.
-
Victor Stinner authored
-
Victor Stinner authored
Fix undefined behaviour: don't compare pointers. Use Py_uintptr_t type instead of void*. It fixes test_faulthandler on Fedora 22 which now uses GCC 5.
-
- 10 Feb, 2015 4 commits
-
-
Victor Stinner authored
already finished
-
Serhiy Storchaka authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 09 Feb, 2015 2 commits
-
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
- 08 Feb, 2015 4 commits
-
-
Larry Hastings authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Larry Hastings authored
-
- 07 Feb, 2015 3 commits
-
-
Larry Hastings authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
- 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 2 commits
-
-
Victor Stinner authored
-
Berker Peksag authored
Patch by Martin Panter.
-