summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Issue #16803: test.test_importlib.frozen now runs both frozen and source codeBrett Cannon2013-11-082-31/+33
|
* Remove redundant test_selectors.py from test_asyncio.Guido van Rossum2013-11-072-150/+0
|
* #17080: improve error message of float/complex when the wrong type is passed.Ezio Melotti2013-11-072-0/+2
|
* Optimize BaseSelector.modify(). Patch by Arnaud Faure.Guido van Rossum2013-11-071-0/+10
|
* #19480: merge with 3.3.Ezio Melotti2013-11-071-4/+13
|\
| * #19480: HTMLParser now accepts all valid start-tag names as defined by the ↵Ezio Melotti2013-11-071-4/+13
| | | | | | | | HTML5 standard.
* | asyncio: Add close() back to Unix selector event loop, to remove all signal ↵Guido van Rossum2013-11-071-0/+16
| | | | | | | | handlers. Should fix buildbot issues.
* | Remove incorrect comment from dis testsNick Coghlan2013-11-061-1/+0
| |
* | Close #19378: address flaws in the new dis module APIsNick Coghlan2013-11-062-75/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - confusing line_offset parameter -> first_line parameter - systematically test and fix new file parameter - remove redundant Bytecode.show_info() API - rename Bytecode.display_code() to Bytecode.dis() and have it return the multi-line string rather than printing it directly - eliminated some not-so-helpful helpers from the bytecode_helper test support module Also fixed a longstanding defect (worked around in the test suite) where lines emitted by the dis module could include trailing white space. That no longer happens, allowing the formatting tests to be simplified to use plain string comparisons.
* | Merge with 3.3Terry Jan Reedy2013-11-051-1/+1
|\ \ | |/
| * Issue #19397: test_pydoc now works with -S (help not added to builtins).Terry Jan Reedy2013-11-051-1/+1
| | | | | | | | Patch by Serhiy Storchaka and Vajrasky Kok.
| * Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-0320-928/+951
| |
* | asyncio: Refactor SIGCHLD handling. By Anthony Baire.Guido van Rossum2013-11-042-130/+901
| |
* | asyncio: Locks improvements by Arnaud Faure: better repr(), change Conditio\Guido van Rossum2013-11-041-1/+70
| | | | | | | | n structure.
* | Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-0320-977/+1017
| |
* | Issue #10197 Rework subprocess.get[status]output to use subprocess ↵Tim Golden2013-11-031-9/+2
|\ \ | |/ | | | | functionality and thus to work on Windows. Patch by Nick Coghlan.
| * Issue #10197 Rework subprocess.get[status]output to use subprocess ↵Tim Golden2013-11-031-9/+2
| | | | | | | | functionality and thus to work on Windows. Patch by Nick Coghlan.
* | Close #19403: make contextlib.redirect_stdout reentrantNick Coghlan2013-11-031-7/+17
| |
* | Close #19439: execute embedding tests on WindowsNick Coghlan2013-11-031-32/+46
| | | | | | | | Patch by Zachary Ware
* | Issue #4331: Added functools.partialmethodNick Coghlan2013-11-031-0/+116
| | | | | | | | Initial patch by Alon Horev
* | Merge.Richard Oudkerk2013-11-021-1/+1
|\ \ | |/
| * Relax timeout test.Richard Oudkerk2013-11-021-1/+1
| |
* | Relax test for process return code on Windows.Richard Oudkerk2013-11-021-2/+2
| |
* | Merge test_htmlparser changes from 3.3.Ezio Melotti2013-11-021-7/+1
|\ \ | |/
| * Use unittest.main() in test_htmlparser.Ezio Melotti2013-11-021-7/+1
| |
* | #15114: The html.parser module now raises a DeprecationWarning when the ↵Ezio Melotti2013-11-021-3/+14
| | | | | | | | strict argument of HTMLParser or the HTMLParser.error method are used.
* | asyncio: Slight rearrangement of tests for server_hostname=...Guido van Rossum2013-11-011-3/+4
| |
* | asyncio: Better-looking errors when ssl module cannot be imported. In part ↵Guido van Rossum2013-11-011-0/+20
| | | | | | | | by Arnaud Faure.
* | asyncio: Various style nits.Guido van Rossum2013-11-013-12/+21
| |
* | asyncio: Document EventLoop.close().Guido van Rossum2013-11-011-0/+2
| |
* | asyncio: Refactor ssl transport ready loop (Nikolay Kim).Guido van Rossum2013-11-011-51/+83
| |
* | asyncio: Add server_hostname as create_connection() argument, with secure ↵Guido van Rossum2013-11-011-0/+54
| | | | | | | | default.
* | asyncio: Pause accepting whenever accept() returns certain errors. Fixes ↵Guido van Rossum2013-11-011-2/+11
| | | | | | | | asyncio issue #78.
* | Issue #19413: Disregard duplicate namespace portions during reload tests.Eric Snow2013-11-011-2/+2
| |
* | Issue #19413: Restore pre-3.3 reload() semantics of re-finding modules.Eric Snow2013-11-011-0/+120
| |
* | asyncio: Add support for running subprocesses on Windows with the IOCP event ↵Guido van Rossum2013-10-302-40/+71
| | | | | | | | loop (Richard Oudkerk).
* | asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk).Guido van Rossum2013-10-301-0/+40
| |
* | Issue #19172: Add a get_map() method to selectors.Charles-François Natali2013-10-301-0/+27
| |
* | merge 3.3 (#19435)Benjamin Peterson2013-10-301-0/+12
|\ \ | |/
| * merge 3.2 (#19435)Benjamin Peterson2013-10-301-0/+12
| |\
| | * merge 3.1 (#19435)Benjamin Peterson2013-10-301-0/+12
| | |\
| | | * use the collapsed path in the run_cgi method (closes #19435)Benjamin Peterson2013-10-301-0/+10
| | | |
* | | | Issue #19424: Fix test_warnings for locale encoding unable to encodeVictor Stinner2013-10-291-6/+7
| | | | | | | | | | | | | | | | "\xe9\u20ac" characters
* | | | Issue #19424: Fix the warnings module to accept filename containing surrogateVictor Stinner2013-10-291-0/+12
| | | | | | | | | | | | | | | | characters.
* | | | Merge.Richard Oudkerk2013-10-281-0/+10
|\ \ \ \ | |/ / /
| * | | Issue #19425 -- a pickling error should not cause pool to hang.Richard Oudkerk2013-10-281-0/+10
| | | |
* | | | #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor).Nadeem Vawda2013-10-282-0/+19
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | The underlying C libraries provide no mechanism for serializing compressor and decompressor objects, so actually pickling these classes is impractical. Previously, these objects would be pickled without error, but attempting to use a deserialized instance would segfault the interpreter.
| * | | #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor).Nadeem Vawda2013-10-282-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The underlying C libraries provide no mechanism for serializing compressor and decompressor objects, so actually pickling these classes is impractical. Previously, these objects would be pickled without error, but attempting to use a deserialized instance would segfault the interpreter.
| * | | Fixed merge test for Tcl/Tk <8.5 (issue #18964).Serhiy Storchaka2013-10-271-2/+5
| | | |
* | | | Issue #19421: add an unit test for warnings.warn() during finalizationVictor Stinner2013-10-281-0/+19
| | | |