summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* - Modules/Setup.dist: remove time extension duplicate, introduced by the fix...doko@ubuntu.com2015-04-111-2/+1
* Issue #21859: Corrected FileIO docstrings.Serhiy Storchaka2015-04-101-15/+18
|\
| * Issue #21859: Corrected FileIO docstrings.Serhiy Storchaka2015-04-101-15/+18
* | Replaced "string" with "bytes object" in docstrings of binary I/O objects.Serhiy Storchaka2015-04-092-13/+13
|\ \ | |/
| * Replaced "string" with "bytes object" in docstrings of binary I/O objects.Serhiy Storchaka2015-04-092-13/+13
* | Issue #23618: Fix internal_select() for negative timeout (blocking socket) whenVictor Stinner2015-04-091-4/+9
* | Issue #23834: Fix the default socket timeoutVictor Stinner2015-04-091-1/+2
* | Issue #23853: Methods of SSL socket don't reset the socket timeout anymore eachVictor Stinner2015-04-061-17/+65
* | Issue #22117: Fix sock_call_ex() for non-blocking socketVictor Stinner2015-04-061-1/+1
* | Issue #23853: socket.socket.sendall() does no more reset the socket timeoutVictor Stinner2015-04-061-16/+41
* | Issue #23834: Fix initial value of the socket timeoutVictor Stinner2015-04-061-2/+2
* | merge 3.4 (#23875)Benjamin Peterson2015-04-061-2/+2
|\ \ | |/
| * remove extra arguments in arg parsing format codes (closes #23875)Benjamin Peterson2015-04-061-2/+2
* | Issue #23501: #include "clinic/posixmodule.c.h" was in the section skipped on...Serhiy Storchaka2015-04-041-2/+2
* | fix refleak in deque_concatBenjamin Peterson2015-04-041-2/+8
* | Fixed the array module broken in issue #23492.Serhiy Storchaka2015-04-041-15/+4
* | Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and alwaysSerhiy Storchaka2015-04-041-9/+14
|\ \ | |/
| * Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and alwaysSerhiy Storchaka2015-04-041-9/+14
* | Issue #23338: Fixed formatting ctypes error messages on Cygwin.Serhiy Storchaka2015-04-041-2/+2
|\ \ | |/
| * Issue #23338: Fixed formatting ctypes error messages on Cygwin.Serhiy Storchaka2015-04-041-2/+2
* | Issue #23492: Argument Clinic now generates argument parsing code withSerhiy Storchaka2015-04-0311-236/+236
* | Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka2015-04-0341-6724/+7224
* | Issue #23500: Argument Clinic is now smarter about generating the "#ifndef"Larry Hastings2015-04-033-27/+11
* | Removed trailing whitespaces in miscalenous files.Serhiy Storchaka2015-04-031-3/+3
* | Issue #23853: Cleanup _ssl.cVictor Stinner2015-04-021-45/+50
* | Issue #23834: Simplify timeout handlingVictor Stinner2015-04-031-27/+13
* | Issue #22117: Add a new _PyTime_FromSeconds() functionVictor Stinner2015-04-032-1/+14
* | Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka2015-04-021-16/+193
|\ \ | |/
| * Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka2015-04-021-16/+206
| * Issue #23834: Fix socket.sendto(), use the C Py_ssize_t type to store theVictor Stinner2015-04-021-1/+2
* | Merge 3.4 (_posixsubprocess)Victor Stinner2015-04-021-6/+6
|\ \ | |/
| * Issue #23851: close() must not be retried when it fails with EINTRVictor Stinner2015-04-021-6/+6
* | Issue #23618: Ooops, remove abort() added for debug purposeVictor Stinner2015-04-021-1/+0
* | Issue #23618: Fix sock_connect_impl(), set the socket error codeVictor Stinner2015-04-021-1/+7
* | Issue #23618: socket.socket.connect() now waits until the connection completesVictor Stinner2015-04-021-124/+178
* | Issue #23618: Don't declare recvmsg/sendmsg helper functions on WindowsVictor Stinner2015-04-021-7/+6
* | Issue #21526: Fixed support of new boolean type in Tcl 8.5.Serhiy Storchaka2015-04-021-4/+19
|\ \ | |/
| * Issue #21526: Tkinter now supports new boolean type in Tcl 8.5.Serhiy Storchaka2015-04-021-15/+34
* | Issue #23834: Fix sock_call(), set deadline_initialized to recompute the timeoutVictor Stinner2015-04-021-0/+1
* | Issue #23834: Modify socket.sendall() to reuse sock_call() withVictor Stinner2015-04-011-29/+21
* | Issue #23834: Add sock_call() helper functionVictor Stinner2015-04-011-256/+323
* | Issue #23836: Fix the faulthandler module to handle reentrant callsVictor Stinner2015-04-011-40/+45
* | Issue #23836: Use _Py_write_noraise() to retry on EINTR in child_exec() ofVictor Stinner2015-04-011-9/+10
* | Issue #23836: Use _Py_write_noraise() to retry on EINTR in trip_signal() ofVictor Stinner2015-04-011-3/+4
* | merge 3.4Benjamin Peterson2015-04-011-1/+2
|\ \ | |/
| * remove assignment in conditionalBenjamin Peterson2015-04-011-1/+2
* | Issue #22117, issue #23485: Fix _PyTime_AsMilliseconds() andVictor Stinner2015-04-011-0/+38
* | Issue #23618: Fix EINTR handling on WindowsVictor Stinner2015-04-011-2/+2
* | Issue #23618: Enhance EINTR handling in socket.connect()Victor Stinner2015-03-311-35/+37
* | Issue #23618: Fix EINTR handling in socket.connect()Victor Stinner2015-03-311-10/+8