summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* | | 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
* | | Issue #23618: Cleanup internal_connect() in socketmodule.cVictor Stinner2015-03-311-3/+1
* | | Issue 23793: Add deque support for __add__(), __mul__(), and __imul__().Raymond Hettinger2015-03-311-10/+123
* | | Issue #23618: Refactor internal_connect()Victor Stinner2015-03-311-79/+30
* | | Issue #23618: Refactor internal_connect()Victor Stinner2015-03-311-35/+57
* | | Issue #22117: Fix integer overflow check in socket_parse_timeout() on WindowsVictor Stinner2015-03-311-3/+6
* | | Issue #23618: Fix internal_connect_select()Victor Stinner2015-03-311-1/+1
* | | Issue #23618: internal_connect_select() now waits also for error eventsVictor Stinner2015-03-311-6/+15
* | | Issue #23618: Refactor internal_select() to prepare socket.connect() for EINTRVictor Stinner2015-03-311-13/+23
* | | Issue #23618: Refactor the _socket moduleVictor Stinner2015-03-311-17/+11
* | | Issue #23611: Serializing more "lookupable" objects (such as unbound methodsSerhiy Storchaka2015-03-311-47/+71
* | | Issue #13583: sqlite3.Row now supports slice indexing.Serhiy Storchaka2015-03-311-2/+1
* | | Merge headsSerhiy Storchaka2015-03-311-54/+97
|\ \ \
| * | | Issue #23485: select.devpoll.poll() is now retried when interrupted by a signalVictor Stinner2015-03-311-43/+63
| * | | Issue #23485: select.kqueue.control() is now retried when interrupted by a si...Victor Stinner2015-03-311-11/+34
* | | | Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings.Serhiy Storchaka2015-03-311-12/+14
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings.Serhiy Storchaka2015-03-311-12/+14
* | | Issue #23485: select.epoll.poll() is now retried when interrupted by a signalVictor Stinner2015-03-301-18/+51
* | | Issue #23485: select.poll.poll() is now retried when interrupted by a signalVictor Stinner2015-03-301-50/+83
* | | PEP 475: on EINTR, retry the function even if the timeout is equals to zeroVictor Stinner2015-03-303-3/+3
* | | Issue #23485: select.select() is now retried automatically with the recomputedVictor Stinner2015-03-301-14/+39
* | | Issue #23752: _Py_fstat() is now responsible to raise the Python exceptionVictor Stinner2015-03-305-29/+24
* | | Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances.Serhiy Storchaka2015-03-301-6/+2
|\ \ \ | |/ /
| * | Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances.Serhiy Storchaka2015-03-301-6/+2
* | | Issue #23171: csv.Writer.writerow() now supports arbitrary iterables.Serhiy Storchaka2015-03-301-40/+39
* | | Issue #22117: Remove _PyTime_ROUND_DOWN and _PyTime_ROUND_UP rounding methodsVictor Stinner2015-03-301-2/+1
* | | Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILINGVictor Stinner2015-03-306-18/+22
* | | Issue #22117: Add _PyTime_ROUND_CEILING rounding method for timestampsVictor Stinner2015-03-301-1/+1
* | | Issue #23752: When built from an existing file descriptor, io.FileIO() now onlyVictor Stinner2015-03-301-24/+0
* | | Issue #22117: Fix usage of _PyTime_AsTimeval()Victor Stinner2015-03-304-17/+5
* | | Issue #23694: Fix usage of _Py_open() in the _posixsubprocess moduleVictor Stinner2015-03-301-2/+1
* | | Issue #22117: Fix rounding of fromtimestamp() methods of datetime.datetime andVictor Stinner2015-03-291-2/+3
* | | Issue #22117: Fix os.utime(), it now rounds the timestamp towards minusVictor Stinner2015-03-291-2/+2
* | | Issue #22117: Use the _PyTime_t API in _datetime.datetime() constructorVictor Stinner2015-03-292-5/+15
* | | Issue #14260: The groupindex attribute of regular expression pattern objectSerhiy Storchaka2015-03-291-1/+14
* | | Removed unintentional trailing spaces in text files.Serhiy Storchaka2015-03-291-1/+1
* | | Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetimeVictor Stinner2015-03-282-3/+4