summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocolYury Selivanov2014-02-192-2/+29
|
* asyncio: document new create_unix_connection() and create_unix_server() methodsVictor Stinner2014-02-191-5/+38
| | | | of BaseEventLoop
* asyncio: pep8-ify the code.Yury Selivanov2014-02-195-12/+26
|
* asyncio: Fix spelling and typos.Yury Selivanov2014-02-1913-19/+18
| | | | Thanks to Vajrasky Kok for discovering some of them.
* Issue #20682: test_asyncio, _basetest_create_connection() checks also theVictor Stinner2014-02-191-0/+1
| | | | sockname, as _basetest_create_ssl_connection().
* asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning andVictor Stinner2014-02-192-17/+19
| | | | | DeprecationWarning warnings. create_unix_server() closes the socket on any error, not only on OSError.
* asyncio, Tulip issue 139: Improve error messages on "fatal errors"Victor Stinner2014-02-196-38/+64
| | | | | Mention if the error was caused by a read or a write, and be more specific on the object (ex: "pipe transport" instead of "transport").
* asyncio.transports: Make _ProactorBasePipeTransport use _FlowControlMixinYury Selivanov2014-02-184-125/+75
|
* asyncio: New error handling API. Issue #20681.Yury Selivanov2014-02-1815-99/+491
|
* Issue #20625: Fix compilation issueVictor Stinner2014-02-181-1/+2
|
* (Merge 3.3) Issue #19612: On Windows, subprocess.Popen.communicate() nowVictor Stinner2014-02-182-1/+13
|\ | | | | | | | | ignores OSError(22, 'Invalid argument') when writing input data into stdin, whereas the process already exited.
| * Issue #19612: On Windows, subprocess.Popen.communicate() now ignoresVictor Stinner2014-02-182-2/+14
| | | | | | | | | | OSError(22, 'Invalid argument') when writing input data into stdin, whereas the process already exited.
* | Close issue20653: allow Enum subclasses to override __reduce_ex__Ethan Furman2014-02-182-14/+73
| |
* | asyncio: Make tests pass on Windows.Guido van Rossum2014-02-181-1/+3
| |
* | Mangle __parameters in __annotations__ dict properly. Issue #20625.Yury Selivanov2014-02-185-1/+37
| |
* | Issue #20609: Merge with 3.3.Zachary Ware2014-02-182-8/+46
|\ \ | |/
| * Issue #20609: Fix building 64-bit binaries on 32-bit Windows.Zachary Ware2014-02-182-8/+46
| |
* | Misc/NEWS: Add a news item for UNIX Sockets support in asyncio. Cleanup WS.Yury Selivanov2014-02-181-1/+5
| |
* | asyncio: Add support for UNIX Domain Sockets.Yury Selivanov2014-02-1810-193/+738
| |
* | Issue #20510: Merge with 3.3.Zachary Ware2014-02-182-53/+32
|\ \ | |/
| * Issue #20510: Rewrote test_exit in test_sys to match existing commentsZachary Ware2014-02-182-53/+32
| | | | | | | | and to modernize. Patch by Gareth Rees.
* | Issue #20493: Document that asyncio should not exceed one dayVictor Stinner2014-02-181-0/+4
| |
* | Issue #20656: Restore explicit downcast in select_select().Victor Stinner2014-02-181-1/+2
| | | | | | | | Cast from time_t (64 bit) to long (32 bit). It should fix a compiler warning.
* | Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon.Victor Stinner2014-02-181-1/+1
| |
* | Issue #20564: Skip tests on lock+signals on OpenBSDVictor Stinner2014-02-181-0/+6
| |
* | Issue #20667: KqueueEventLoopTests.test_read_pty_output() hangs also on ↵Victor Stinner2014-02-182-12/+3
| | | | | | | | OpenBSD 5.5.
* | Merge with 3.3Terry Jan Reedy2014-02-183-13/+27
|\ \ | |/
| * Issue #8478: Untokenizer.compat now processes first token from iterator input.Terry Jan Reedy2014-02-183-13/+27
| | | | | | | | Patch based on lines from Georg Brandl, Eric Snow, and Gareth Rees.
* | Close #20656: Fix select.select() on OpenBSD 64-bitVictor Stinner2014-02-181-10/+12
| |
* | Issue #20667: test_asyncio: Skip KqueueEventLoopTests.test_read_pty_output() onVictor Stinner2014-02-182-0/+13
| | | | | | | | OpenBSD older than 5.5
* | Issue #20655: Fix test_asyncio, run also subprocess tests. Patch written byVictor Stinner2014-02-171-0/+1
| | | | | | | | Vajrasky Kok.
* | Merge with 3.3Terry Jan Reedy2014-02-171-2/+2
|\ \ | |/
| * whitespaceTerry Jan Reedy2014-02-171-2/+2
| |
* | Untokenize, bad assert: Merge with 3.3Terry Jan Reedy2014-02-172-2/+18
|\ \ | |/
| * Untokenize: An logically incorrect assert tested user input validity.Terry Jan Reedy2014-02-172-2/+18
| | | | | | | | | | | | Replace it with correct logic that raises ValueError for bad input. Issues #8478 and #12691 reported the incorrect logic. Add an Untokenize test case and an initial test method.
* | Close #20652: asyncio doc: close the event loop in run_forever() example. FixVictor Stinner2014-02-171-3/+6
| | | | | | | | also typo. Patch written by Vajrasky Kok.
* | Issue #20320: select.select() and select.kqueue.control() now round the timeoutVictor Stinner2014-02-1610-62/+179
| | | | | | | | | | | | aways from zero, instead of rounding towards zero. It should make test_asyncio more reliable, especially test_timeout_rounding() test.
* | Issue #20616: Add a format() method to tracemalloc.Traceback.Victor Stinner2014-02-164-7/+59
| |
* | merge 3.3Benjamin Peterson2014-02-162-6/+8
|\ \ | |/
| * backout fafac90b69c4Benjamin Peterson2014-02-162-7/+9
| |
* | merge backout for #20621Benjamin Peterson2014-02-162-321/+67
|\ \ | |/
| * backout 2807a5f011e4 for causing #20621Benjamin Peterson2014-02-162-323/+66
| |
| * backout d28242a636c7 so I can backout 2807a5f011e4Benjamin Peterson2014-02-161-1/+3
| |
* | look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251)Benjamin Peterson2014-02-163-12/+23
| |
* | merge 3.3Benjamin Peterson2014-02-160-0/+0
|\ \ | |/
| * do not line break referenceBenjamin Peterson2014-02-161-7/+7
| |
* | Merge from 3.3Andrew Kuchling2014-02-162-6/+1
|\ \ | |/
| * #12211: remove paragraph about NaNsAndrew Kuchling2014-02-162-6/+1
| |
* | Merge from 3.3Andrew Kuchling2014-02-162-3/+10
|\ \ | |/
| * #12211: clarify math.copysign() documentation and docstringAndrew Kuchling2014-02-162-3/+10
| |