Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #16803: test.test_importlib.frozen now runs both frozen and source code | Brett Cannon | 2013-11-08 | 2 | -31/+33 |
| | |||||
* | Remove redundant test_selectors.py from test_asyncio. | Guido van Rossum | 2013-11-07 | 2 | -150/+0 |
| | |||||
* | #17080: improve error message of float/complex when the wrong type is passed. | Ezio Melotti | 2013-11-07 | 2 | -0/+2 |
| | |||||
* | Optimize BaseSelector.modify(). Patch by Arnaud Faure. | Guido van Rossum | 2013-11-07 | 1 | -0/+10 |
| | |||||
* | #19480: merge with 3.3. | Ezio Melotti | 2013-11-07 | 1 | -4/+13 |
|\ | |||||
| * | #19480: HTMLParser now accepts all valid start-tag names as defined by the ↵ | Ezio Melotti | 2013-11-07 | 1 | -4/+13 |
| | | | | | | | | HTML5 standard. | ||||
* | | asyncio: Add close() back to Unix selector event loop, to remove all signal ↵ | Guido van Rossum | 2013-11-07 | 1 | -0/+16 |
| | | | | | | | | handlers. Should fix buildbot issues. | ||||
* | | Remove incorrect comment from dis tests | Nick Coghlan | 2013-11-06 | 1 | -1/+0 |
| | | |||||
* | | Close #19378: address flaws in the new dis module APIs | Nick Coghlan | 2013-11-06 | 2 | -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.3 | Terry Jan Reedy | 2013-11-05 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #19397: test_pydoc now works with -S (help not added to builtins). | Terry Jan Reedy | 2013-11-05 | 1 | -1/+1 |
| | | | | | | | | Patch by Serhiy Storchaka and Vajrasky Kok. | ||||
| * | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 | 20 | -928/+951 |
| | | |||||
* | | asyncio: Refactor SIGCHLD handling. By Anthony Baire. | Guido van Rossum | 2013-11-04 | 2 | -130/+901 |
| | | |||||
* | | asyncio: Locks improvements by Arnaud Faure: better repr(), change Conditio\ | Guido van Rossum | 2013-11-04 | 1 | -1/+70 |
| | | | | | | | | n structure. | ||||
* | | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 | 20 | -977/+1017 |
| | | |||||
* | | Issue #10197 Rework subprocess.get[status]output to use subprocess ↵ | Tim Golden | 2013-11-03 | 1 | -9/+2 |
|\ \ | |/ | | | | | functionality and thus to work on Windows. Patch by Nick Coghlan. | ||||
| * | Issue #10197 Rework subprocess.get[status]output to use subprocess ↵ | Tim Golden | 2013-11-03 | 1 | -9/+2 |
| | | | | | | | | functionality and thus to work on Windows. Patch by Nick Coghlan. | ||||
* | | Close #19403: make contextlib.redirect_stdout reentrant | Nick Coghlan | 2013-11-03 | 1 | -7/+17 |
| | | |||||
* | | Close #19439: execute embedding tests on Windows | Nick Coghlan | 2013-11-03 | 1 | -32/+46 |
| | | | | | | | | Patch by Zachary Ware | ||||
* | | Issue #4331: Added functools.partialmethod | Nick Coghlan | 2013-11-03 | 1 | -0/+116 |
| | | | | | | | | Initial patch by Alon Horev | ||||
* | | Merge. | Richard Oudkerk | 2013-11-02 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Relax timeout test. | Richard Oudkerk | 2013-11-02 | 1 | -1/+1 |
| | | |||||
* | | Relax test for process return code on Windows. | Richard Oudkerk | 2013-11-02 | 1 | -2/+2 |
| | | |||||
* | | Merge test_htmlparser changes from 3.3. | Ezio Melotti | 2013-11-02 | 1 | -7/+1 |
|\ \ | |/ | |||||
| * | Use unittest.main() in test_htmlparser. | Ezio Melotti | 2013-11-02 | 1 | -7/+1 |
| | | |||||
* | | #15114: The html.parser module now raises a DeprecationWarning when the ↵ | Ezio Melotti | 2013-11-02 | 1 | -3/+14 |
| | | | | | | | | strict argument of HTMLParser or the HTMLParser.error method are used. | ||||
* | | asyncio: Slight rearrangement of tests for server_hostname=... | Guido van Rossum | 2013-11-01 | 1 | -3/+4 |
| | | |||||
* | | asyncio: Better-looking errors when ssl module cannot be imported. In part ↵ | Guido van Rossum | 2013-11-01 | 1 | -0/+20 |
| | | | | | | | | by Arnaud Faure. | ||||
* | | asyncio: Various style nits. | Guido van Rossum | 2013-11-01 | 3 | -12/+21 |
| | | |||||
* | | asyncio: Document EventLoop.close(). | Guido van Rossum | 2013-11-01 | 1 | -0/+2 |
| | | |||||
* | | asyncio: Refactor ssl transport ready loop (Nikolay Kim). | Guido van Rossum | 2013-11-01 | 1 | -51/+83 |
| | | |||||
* | | asyncio: Add server_hostname as create_connection() argument, with secure ↵ | Guido van Rossum | 2013-11-01 | 1 | -0/+54 |
| | | | | | | | | default. | ||||
* | | asyncio: Pause accepting whenever accept() returns certain errors. Fixes ↵ | Guido van Rossum | 2013-11-01 | 1 | -2/+11 |
| | | | | | | | | asyncio issue #78. | ||||
* | | Issue #19413: Disregard duplicate namespace portions during reload tests. | Eric Snow | 2013-11-01 | 1 | -2/+2 |
| | | |||||
* | | Issue #19413: Restore pre-3.3 reload() semantics of re-finding modules. | Eric Snow | 2013-11-01 | 1 | -0/+120 |
| | | |||||
* | | asyncio: Add support for running subprocesses on Windows with the IOCP event ↵ | Guido van Rossum | 2013-10-30 | 2 | -40/+71 |
| | | | | | | | | loop (Richard Oudkerk). | ||||
* | | asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk). | Guido van Rossum | 2013-10-30 | 1 | -0/+40 |
| | | |||||
* | | Issue #19172: Add a get_map() method to selectors. | Charles-François Natali | 2013-10-30 | 1 | -0/+27 |
| | | |||||
* | | merge 3.3 (#19435) | Benjamin Peterson | 2013-10-30 | 1 | -0/+12 |
|\ \ | |/ | |||||
| * | merge 3.2 (#19435) | Benjamin Peterson | 2013-10-30 | 1 | -0/+12 |
| |\ | |||||
| | * | merge 3.1 (#19435) | Benjamin Peterson | 2013-10-30 | 1 | -0/+12 |
| | |\ | |||||
| | | * | use the collapsed path in the run_cgi method (closes #19435) | Benjamin Peterson | 2013-10-30 | 1 | -0/+10 |
| | | | | |||||
* | | | | Issue #19424: Fix test_warnings for locale encoding unable to encode | Victor Stinner | 2013-10-29 | 1 | -6/+7 |
| | | | | | | | | | | | | | | | | "\xe9\u20ac" characters | ||||
* | | | | Issue #19424: Fix the warnings module to accept filename containing surrogate | Victor Stinner | 2013-10-29 | 1 | -0/+12 |
| | | | | | | | | | | | | | | | | characters. | ||||
* | | | | Merge. | Richard Oudkerk | 2013-10-28 | 1 | -0/+10 |
|\ \ \ \ | |/ / / | |||||
| * | | | Issue #19425 -- a pickling error should not cause pool to hang. | Richard Oudkerk | 2013-10-28 | 1 | -0/+10 |
| | | | | |||||
* | | | | #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor). | Nadeem Vawda | 2013-10-28 | 2 | -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 Vawda | 2013-10-28 | 2 | -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 Storchaka | 2013-10-27 | 1 | -2/+5 |
| | | | | |||||
* | | | | Issue #19421: add an unit test for warnings.warn() during finalization | Victor Stinner | 2013-10-28 | 1 | -0/+19 |
| | | | |