| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | asyncio: WriteTransport.set_write_buffer_size to call _maybe_pause_protocol | Yury Selivanov | 2014-02-19 | 2 | -2/+29 |
| | | |||||
| * | asyncio: document new create_unix_connection() and create_unix_server() methods | Victor Stinner | 2014-02-19 | 1 | -5/+38 |
| | | | | | of BaseEventLoop | ||||
| * | asyncio: pep8-ify the code. | Yury Selivanov | 2014-02-19 | 5 | -12/+26 |
| | | |||||
| * | asyncio: Fix spelling and typos. | Yury Selivanov | 2014-02-19 | 13 | -19/+18 |
| | | | | | Thanks to Vajrasky Kok for discovering some of them. | ||||
| * | Issue #20682: test_asyncio, _basetest_create_connection() checks also the | Victor Stinner | 2014-02-19 | 1 | -0/+1 |
| | | | | | sockname, as _basetest_create_ssl_connection(). | ||||
| * | asyncio, Tulip issue 143: UNIX domain methods, fix ResourceWarning and | Victor Stinner | 2014-02-19 | 2 | -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 Stinner | 2014-02-19 | 6 | -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 _FlowControlMixin | Yury Selivanov | 2014-02-18 | 4 | -125/+75 |
| | | |||||
| * | asyncio: New error handling API. Issue #20681. | Yury Selivanov | 2014-02-18 | 15 | -99/+491 |
| | | |||||
| * | Issue #20625: Fix compilation issue | Victor Stinner | 2014-02-18 | 1 | -1/+2 |
| | | |||||
| * | (Merge 3.3) Issue #19612: On Windows, subprocess.Popen.communicate() now | Victor Stinner | 2014-02-18 | 2 | -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 ignores | Victor Stinner | 2014-02-18 | 2 | -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 Furman | 2014-02-18 | 2 | -14/+73 |
| | | | |||||
| * | | asyncio: Make tests pass on Windows. | Guido van Rossum | 2014-02-18 | 1 | -1/+3 |
| | | | |||||
| * | | Mangle __parameters in __annotations__ dict properly. Issue #20625. | Yury Selivanov | 2014-02-18 | 5 | -1/+37 |
| | | | |||||
| * | | Issue #20609: Merge with 3.3. | Zachary Ware | 2014-02-18 | 2 | -8/+46 |
| |\ \ | |/ | |||||
| | * | Issue #20609: Fix building 64-bit binaries on 32-bit Windows. | Zachary Ware | 2014-02-18 | 2 | -8/+46 |
| | | | |||||
| * | | Misc/NEWS: Add a news item for UNIX Sockets support in asyncio. Cleanup WS. | Yury Selivanov | 2014-02-18 | 1 | -1/+5 |
| | | | |||||
| * | | asyncio: Add support for UNIX Domain Sockets. | Yury Selivanov | 2014-02-18 | 10 | -193/+738 |
| | | | |||||
| * | | Issue #20510: Merge with 3.3. | Zachary Ware | 2014-02-18 | 2 | -53/+32 |
| |\ \ | |/ | |||||
| | * | Issue #20510: Rewrote test_exit in test_sys to match existing comments | Zachary Ware | 2014-02-18 | 2 | -53/+32 |
| | | | | | | | | | and to modernize. Patch by Gareth Rees. | ||||
| * | | Issue #20493: Document that asyncio should not exceed one day | Victor Stinner | 2014-02-18 | 1 | -0/+4 |
| | | | |||||
| * | | Issue #20656: Restore explicit downcast in select_select(). | Victor Stinner | 2014-02-18 | 1 | -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 Stinner | 2014-02-18 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #20564: Skip tests on lock+signals on OpenBSD | Victor Stinner | 2014-02-18 | 1 | -0/+6 |
| | | | |||||
| * | | Issue #20667: KqueueEventLoopTests.test_read_pty_output() hangs also on ↵ | Victor Stinner | 2014-02-18 | 2 | -12/+3 |
| | | | | | | | | | OpenBSD 5.5. | ||||
| * | | Merge with 3.3 | Terry Jan Reedy | 2014-02-18 | 3 | -13/+27 |
| |\ \ | |/ | |||||
| | * | Issue #8478: Untokenizer.compat now processes first token from iterator input. | Terry Jan Reedy | 2014-02-18 | 3 | -13/+27 |
| | | | | | | | | | Patch based on lines from Georg Brandl, Eric Snow, and Gareth Rees. | ||||
| * | | Close #20656: Fix select.select() on OpenBSD 64-bit | Victor Stinner | 2014-02-18 | 1 | -10/+12 |
| | | | |||||
| * | | Issue #20667: test_asyncio: Skip KqueueEventLoopTests.test_read_pty_output() on | Victor Stinner | 2014-02-18 | 2 | -0/+13 |
| | | | | | | | | | OpenBSD older than 5.5 | ||||
| * | | Issue #20655: Fix test_asyncio, run also subprocess tests. Patch written by | Victor Stinner | 2014-02-17 | 1 | -0/+1 |
| | | | | | | | | | Vajrasky Kok. | ||||
| * | | Merge with 3.3 | Terry Jan Reedy | 2014-02-17 | 1 | -2/+2 |
| |\ \ | |/ | |||||
| | * | whitespace | Terry Jan Reedy | 2014-02-17 | 1 | -2/+2 |
| | | | |||||
| * | | Untokenize, bad assert: Merge with 3.3 | Terry Jan Reedy | 2014-02-17 | 2 | -2/+18 |
| |\ \ | |/ | |||||
| | * | Untokenize: An logically incorrect assert tested user input validity. | Terry Jan Reedy | 2014-02-17 | 2 | -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. Fix | Victor Stinner | 2014-02-17 | 1 | -3/+6 |
| | | | | | | | | | also typo. Patch written by Vajrasky Kok. | ||||
| * | | Issue #20320: select.select() and select.kqueue.control() now round the timeout | Victor Stinner | 2014-02-16 | 10 | -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 Stinner | 2014-02-16 | 4 | -7/+59 |
| | | | |||||
| * | | merge 3.3 | Benjamin Peterson | 2014-02-16 | 2 | -6/+8 |
| |\ \ | |/ | |||||
| | * | backout fafac90b69c4 | Benjamin Peterson | 2014-02-16 | 2 | -7/+9 |
| | | | |||||
| * | | merge backout for #20621 | Benjamin Peterson | 2014-02-16 | 2 | -321/+67 |
| |\ \ | |/ | |||||
| | * | backout 2807a5f011e4 for causing #20621 | Benjamin Peterson | 2014-02-16 | 2 | -323/+66 |
| | | | |||||
| | * | backout d28242a636c7 so I can backout 2807a5f011e4 | Benjamin Peterson | 2014-02-16 | 1 | -1/+3 |
| | | | |||||
| * | | look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251) | Benjamin Peterson | 2014-02-16 | 3 | -12/+23 |
| | | | |||||
| * | | merge 3.3 | Benjamin Peterson | 2014-02-16 | 0 | -0/+0 |
| |\ \ | |/ | |||||
| | * | do not line break reference | Benjamin Peterson | 2014-02-16 | 1 | -7/+7 |
| | | | |||||
| * | | Merge from 3.3 | Andrew Kuchling | 2014-02-16 | 2 | -6/+1 |
| |\ \ | |/ | |||||
| | * | #12211: remove paragraph about NaNs | Andrew Kuchling | 2014-02-16 | 2 | -6/+1 |
| | | | |||||
| * | | Merge from 3.3 | Andrew Kuchling | 2014-02-16 | 2 | -3/+10 |
| |\ \ | |/ | |||||
| | * | #12211: clarify math.copysign() documentation and docstring | Andrew Kuchling | 2014-02-16 | 2 | -3/+10 |
| | | | |||||
