- 04 Apr, 2015 3 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
- 03 Apr, 2015 14 commits
-
-
Serhiy Storchaka authored
PyArg_Parse instead of PyArg_ParseTuple if possible.
-
Serhiy Storchaka authored
-
Larry Hastings authored
(empty) definition of the methoddef macro: it's only generated once, even if Argument Clinic processes the same symbol multiple times, and it's emitted at the end of all processing rather than immediately after the first use.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Victor Stinner authored
-
Victor Stinner authored
the wait is cancelled, the future *fut* is now also cancelled.
-
Serhiy Storchaka authored
in Parser/pgen.c.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Victor Stinner authored
@unittest.skipUnless(ssl, '...') doesn't work because the class body uses the nntplib.NNTP_SSL attribute which doesn't exist.
-
- 02 Apr, 2015 2 commits
-
-
Serhiy Storchaka authored
-
Victor Stinner authored
* Rename check_socket_and_wait_for_timeout() to PySSL_select() * PySSL_select() is now clearly splitted betwen poll() and select() * Add empty lines for readability
-
- 03 Apr, 2015 3 commits
-
-
Victor Stinner authored
* Use the new _PyTime_FromSeconds() function to set the timeout to -1 second for socket.settimeout(None). It avoids a special case in internal_select() because of a rounding issue: -1 nanosecond is rounded to 0 millisecond which means non-blocking, instead of blocking. * Check if the interval the negative in sock_call_ex() instead of doing the check in internal_select(). sock_call_ex() remembers if the socket has a timeout or not, which avoids a race condition if the timeout is modified in a different thread.
-
Victor Stinner authored
Fix also _Py_InitializeEx_Private(): initialize time before initializing import, import_init() uses the _PyTime API (for thread locks).
-
Victor Stinner authored
-
- 02 Apr, 2015 18 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Made test XML files non-ASCII.
-
Serhiy Storchaka authored
Made test XML files non-ASCII.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
arbitrary precision integers added in Tcl 8.5.
-
Serhiy Storchaka authored
arbitrary precision integers added in Tcl 8.5.
-
Victor Stinner authored
store the result of sendto() instead of the C int type. (The bug was already fixed in the default branch, but differently.)
-
Victor Stinner authored
result of sendto() instead of the C int type.
-
Victor Stinner authored
-
Victor Stinner authored
See the PEP 475 for the rationale.
-
Victor Stinner authored
-
Victor Stinner authored
sock_call_ex() gets the socket error code when the socket function fails. sock_connect_impl() didn't set the error correctly.
-
Victor Stinner authored
-
Victor Stinner authored
-