summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
| * Issue #22351: Fix test_nntplib if the ssl module is missingVictor Stinner2015-04-031-9/+10
| | | | | | | | | | @unittest.skipUnless(ssl, '...') doesn't work because the class body uses the nntplib.NNTP_SSL attribute which doesn't exist.
* | Issue #10590: Added tests for xml.sax.parse() and xml.sax.parseString().Serhiy Storchaka2015-04-021-1/+123
|\ \ | |/
| * Issue #10590: Added tests for xml.sax.parse() and xml.sax.parseString().Serhiy Storchaka2015-04-021-1/+123
| |
* | Issue #2175: SAX parsers now support a character stream of InputSource object.Serhiy Storchaka2015-04-024-6/+49
| |
* | Issue #2175: Added tests for xml.sax.saxutils.prepare_input_source().Serhiy Storchaka2015-04-024-10/+82
|\ \ | |/ | | | | Made test XML files non-ASCII.
| * Issue #2175: Added tests for xml.sax.saxutils.prepare_input_source().Serhiy Storchaka2015-04-024-10/+82
| | | | | | | | Made test XML files non-ASCII.
* | Issue #16840: Fixed test_tcl for Tcl < 8.5.Serhiy Storchaka2015-04-021-4/+4
|\ \ | |/
| * Issue #16840: Fixed test_tcl for Tcl < 8.5.Serhiy Storchaka2015-04-021-4/+4
| |
* | Issue #21526: Skip test_booleans on Tcl < 8.5.Serhiy Storchaka2015-04-021-0/+1
|\ \ | |/
| * Issue #21526: Skip test_booleans on Tcl < 8.5.Serhiy Storchaka2015-04-021-0/+1
| |
* | Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka2015-04-021-7/+37
|\ \ | |/ | | | | arbitrary precision integers added in Tcl 8.5.
| * Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka2015-04-021-7/+39
| | | | | | | | arbitrary precision integers added in Tcl 8.5.
* | Merge 3.4 (test_exceptions)Victor Stinner2015-04-021-5/+8
|\ \ | |/
| * Issue #22977: Fix test_exceptionsVictor Stinner2015-04-021-5/+8
| |
* | 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-021-0/+15
|\ \ | |/
| * Issue #21526: Tkinter now supports new boolean type in Tcl 8.5.Serhiy Storchaka2015-04-021-0/+15
| |
* | Issue #22977: Fixed formatting Windows error messages on Wine.Serhiy Storchaka2015-04-021-1/+9
|\ \ | |/ | | | | Patch by Martin Panter.
| * Issue #22977: Fixed formatting Windows error messages on Wine.Serhiy Storchaka2015-04-021-1/+9
| | | | | | | | Patch by Martin Panter.
* | 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
| | | | | | | | Patch by Cédric Krier.
* | Issue #22117, issue #23485: Fix _PyTime_AsMilliseconds() andVictor Stinner2015-04-011-4/+72
| | | | | | | | | | | | _PyTime_AsMicroseconds() rounding. Add also unit tests.
* | Check deques against common sequence tests (except for slicing).Raymond Hettinger2015-04-011-0/+16
| |
* | 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-012-7/+22
|\ \ | |/ | | | | MemoryError.
| * Issue #23838: linecache now clears the cache and returns an empty result onSerhiy Storchaka2015-04-012-4/+21
| | | | | | | | MemoryError.
* | Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-018-78/+72
|\ \ | |/ | | | | multiple threads.
| * Issue #23799: Added test.support.start_threads() for running and cleaning upSerhiy Storchaka2015-04-018-80/+74
| | | | | | | | multiple threads.
* | Issue 23793: Add deque support for __add__(), __mul__(), and __imul__().Raymond Hettinger2015-03-311-0/+77
| |
* | Issue #23611: Fixed enums pickling tests. Now all picklings work with allSerhiy Storchaka2015-03-311-15/+7
| | | | | | | | protocols.
* | Issue #18473: Fixed pickle compatibility tests for optional modules.Serhiy Storchaka2015-03-312-10/+32
|\ \ | |/ | | | | Added WindowsError to compatibility mappings.
| * Issue #18473: Fixed pickle compatibility tests for optional modules.Serhiy Storchaka2015-03-312-10/+32
| | | | | | | | Added WindowsError to compatibility mappings.
* | Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath.Serhiy Storchaka2015-03-314-2/+229
| | | | | | | | Based on patch by Rafik Draoui.
* | Issue #23611: Serializing more "lookupable" objects (such as unbound methodsSerhiy Storchaka2015-03-312-19/+33
| | | | | | | | or nested classes) now are supported with pickle protocols < 4.
* | Issue #13583: sqlite3.Row now supports slice indexing.Serhiy Storchaka2015-03-311-0/+18
| | | | | | | | Tests by Jessica McKellar.
* | Merge headsSerhiy Storchaka2015-03-313-13/+63
|\ \
| * | Issue #23485: Enhance and update selectors doc and test_selectorsVictor Stinner2015-03-311-3/+34
| | | | | | | | | | | | | | | | | | | | | | | | Selector.select() is now retried with the recomputed timeout when interrupted by a signal. Write an unit test with a signal handler raising an exception, and a unit with a signal handler which does not raise an exception (it does nothing).
| * | Issue #23485: select.devpoll.poll() is now retried when interrupted by a signalVictor Stinner2015-03-312-4/+14
| | |
| * | Issue #23485: select.kqueue.control() is now retried when interrupted by a ↵Victor Stinner2015-03-312-6/+15
| | | | | | | | | | | | signal
* | | Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings.Serhiy Storchaka2015-03-314-18/+308
|\ \ \ | |/ / |/| / | |/ | | | | | | | | Fixed ambigious reverse mappings. Added many new mappings. Import mapping is no longer applied to modules already mapped with full name mapping. Added tests for compatible pickling and unpickling and for consistency of _compat_pickle mappings.
| * Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings.Serhiy Storchaka2015-03-314-18/+308
| | | | | | | | | | | | | | | | Fixed ambigious reverse mappings. Added many new mappings. Import mapping is no longer applied to modules already mapped with full name mapping. Added tests for compatible pickling and unpickling and for consistency of _compat_pickle mappings.
* | Issue #23485: select.epoll.poll() is now retried when interrupted by a signalVictor Stinner2015-03-302-4/+13
| |
* | Issue #23485: select.poll.poll() is now retried when interrupted by a signalVictor Stinner2015-03-303-11/+22
| |
* | Issue #23485: Fix test_signal, select.select() now retries the syscall if theVictor Stinner2015-03-301-3/+17
| | | | | | | | signal handler does not raise an exception
* | Issue #23485: select.select() is now retried automatically with the recomputedVictor Stinner2015-03-303-9/+17
| | | | | | | | | | | | | | | | | | timeout when interrupted by a signal, except if the signal handler raises an exception. This change is part of the PEP 475. The asyncore and selectors module doesn't catch the InterruptedError exception anymore when calling select.select(), since this function should not raise InterruptedError anymore.
* | Partially revert 3603bae63c13 (issue23326) for asyncio.Serhiy Storchaka2015-03-301-0/+4
| |
* | Merge: #23792: also catch interrupt around pipe.write.R David Murray2015-03-301-1/+6
|\ \ | |/
| * #23792: also catch interrupt around pipe.write.R David Murray2015-03-301-1/+6
| | | | | | | | | | | | The previous patch only dealt with KeyboardInterrupt when all of the data had been consumed by the pager. This deals with the interrupt when some data is still pending.