summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Issue #23618: Don't declare recvmsg/sendmsg helper functions on WindowsVictor Stinner2015-04-021-7/+6
* Issue #21526: Fixed the test_booleans test for wantobjects = 0.Serhiy Storchaka2015-04-021-2/+6
|\
| * Issue #21526: Fixed the test_booleans test for wantobjects = 0.Serhiy Storchaka2015-04-021-2/+6
* | Issue #21526: Fixed support of new boolean type in Tcl 8.5.Serhiy Storchaka2015-04-023-6/+36
|\ \ | |/
| * Issue #21526: Tkinter now supports new boolean type in Tcl 8.5.Serhiy Storchaka2015-04-023-15/+51
* | Issue #22977: Fixed formatting Windows error messages on Wine.Serhiy Storchaka2015-04-023-3/+14
|\ \ | |/
| * Issue #22977: Fixed formatting Windows error messages on Wine.Serhiy Storchaka2015-04-023-3/+14
* | merge 3.4 (#23844)Benjamin Peterson2015-04-023-10/+8
|\ \ | |/
| * replace 512 bit dh key with a 2014 bit one (closes #23844)Benjamin Peterson2015-04-023-10/+8
* | 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-012-40/+48
* | Issue #23836: Use _Py_write_noraise() to retry on EINTR in _Py_DumpTraceback()Victor Stinner2015-04-011-8/+20
* | 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
* | Issue #23836: Document functions releasing the GIL in fileutils.cVictor Stinner2015-04-011-3/+5
* | Issue #23836: Add _Py_write_noraise() functionVictor Stinner2015-04-012-48/+88
* | 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-013-17/+123
* | Check deques against common sequence tests (except for slicing).Raymond Hettinger2015-04-011-0/+16
* | What's New in Python 3.5: mention signal.set_wakeup_fd() enhancement on WindowsVictor Stinner2015-04-011-0/+3
* | Issue #23821: Fixed test_pdb failure under -O.Serhiy Storchaka2015-04-011-11/+15
|\ \ | |/
| * Issue #23821: Fixed test_pdb failure under -O.Serhiy Storchaka2015-04-011-11/+15
* | Issue #23838: linecache now clears the cache and returns an empty result onSerhiy Storchaka2015-04-013-7/+25
|\ \ | |/
| * Issue #23838: linecache now clears the cache and returns an empty result onSerhiy Storchaka2015-04-013-4/+24
* | It wasn't a typo, it is the mnemonic (AT=@).R David Murray2015-04-011-1/+1
* | Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-019-78/+75
|\ \ | |/
| * Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-019-80/+77
* | Issue #23618: Fix EINTR handling on WindowsVictor Stinner2015-04-011-2/+2
* | merge 3.4 (#12855)Benjamin Peterson2015-04-011-4/+36
|\ \ | |/
| * document what exactly str.splitlines() splits on (closes #12855)Benjamin Peterson2015-04-011-4/+36
* | 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-314-10/+204
* | 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 #23611: Fixed enums pickling tests. Now all picklings work with allSerhiy Storchaka2015-03-311-15/+7
* | Issue #18473: Fixed pickle compatibility tests for optional modules.Serhiy Storchaka2015-03-312-10/+32
|\ \ | |/
| * Issue #18473: Fixed pickle compatibility tests for optional modules.Serhiy Storchaka2015-03-312-10/+32
* | Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath.Serhiy Storchaka2015-03-317-5/+255
* | 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
* | What's New in Python 3.5, PEP 475: mention modified signal functionsVictor Stinner2015-03-312-2/+3
* | Issue #23611: Serializing more "lookupable" objects (such as unbound methodsSerhiy Storchaka2015-03-315-66/+114