| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError if | Victor Stinner | 2014-02-11 | 1 | -0/+26 |
|
|
* | asyncio, Tulip issue 130: Add more checks on subprocess_exec/subprocess_shell | Victor Stinner | 2014-02-11 | 1 | -2/+52 |
|
|
* | asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(), | Victor Stinner | 2014-02-11 | 4 | -12/+29 |
|
|
* | Issue #20505: BaseEventLoop uses again the resolution of the clock to decide if | Victor Stinner | 2014-02-10 | 1 | -6/+6 |
|
|
* | Issue #20505: Use even shorter sleep in test_timeout_rounding() to make the | Victor Stinner | 2014-02-10 | 1 | -3/+5 |
|
|
* | Issue #20505: Add debug info to analyze sporaric failures of | Victor Stinner | 2014-02-10 | 1 | -1/+4 |
|
|
* | asyncio: Tulip issue 112: Inline make_handle() into Handle constructor | Victor Stinner | 2014-02-09 | 1 | -2/+2 |
|
|
* | asyncio: Remove Process.subprocess attribute; it's too easy to get inconsistent | Victor Stinner | 2014-02-09 | 1 | -20/+0 |
|
|
* | asyncio: Test fix. | Guido van Rossum | 2014-02-09 | 1 | -1/+1 |
|
|
* | asyncio tests: Remove scories of resolution/granularity | Victor Stinner | 2014-02-09 | 2 | -3/+0 |
|
|
* | Issue #20505: Remove resolution and _granularity from selectors and asyncio | Victor Stinner | 2014-02-07 | 2 | -17/+9 |
|
|
* | asyncio.tasks: Fix as_completed, gather & wait to work with duplicate coroutines | Yury Selivanov | 2014-02-07 | 1 | -8/+47 |
|
|
* | asyncio.streams.StreamReader: Add 'at_eof()' method | Yury Selivanov | 2014-02-06 | 1 | -0/+15 |
|
|
* | asyncio.streams: Use bytebuffer in StreamReader; Add assertion in feed_data | Yury Selivanov | 2014-02-05 | 1 | -27/+52 |
|
|
* | asyncio: Cosmetic improvement to test__run_once_logging() mock argument. | Guido van Rossum | 2014-02-04 | 1 | -5/+3 |
|
|
* | Oops, undo unwanted changes in test_asyncio: mistakes of my the last sync with | Victor Stinner | 2014-02-03 | 3 | -8/+17 |
|
|
* | asyncio.subprocess: Replace Process.get_subprocess() method with a | Victor Stinner | 2014-02-03 | 1 | -9/+9 |
|
|
* | Issue #20472: test_asyncio: skip PTY tests on Mac OS X older than 10.6 | Victor Stinner | 2014-02-02 | 1 | -0/+6 |
|
|
* | Issue #20400: Merge Tulip into Python: add the new asyncio.subprocess module | Victor Stinner | 2014-02-01 | 4 | -17/+204 |
|
|
* | test_asyncio: relax timing, the "AMD64 Windows Server 2008 [SB] 3.x" buildbot | Victor Stinner | 2014-02-01 | 1 | -1/+1 |
|
|
* | Issue #20452: Fix test_time_and_call_at() of test_asyncio on Windows | Victor Stinner | 2014-02-01 | 1 | -7/+8 |
|
|
* | Issue #20452: test_asyncio checks also the granularity | Victor Stinner | 2014-02-01 | 1 | -0/+8 |
|
|
* | Issue #20452: test_asyncio: Add more info if the test fails | Victor Stinner | 2014-01-31 | 1 | -2/+7 |
|
|
* | Issue #20455: Add a resolution attribute to IocpProactor (1 ms) | Victor Stinner | 2014-01-31 | 1 | -0/+2 |
|
|
* | Issue #20452: Remove debug code, no more needed | Victor Stinner | 2014-01-31 | 1 | -13/+1 |
|
|
* | Issue #20452: select and selectors round (again) timeout away from zero for | Victor Stinner | 2014-01-31 | 1 | -13/+10 |
|
|
* | Issue #20452: Oops, fix debug code :-/ | Victor Stinner | 2014-01-31 | 1 | -0/+6 |
|
|
* | Issue #20452: add more info in case of test_asyncio failure to try to debug the | Victor Stinner | 2014-01-31 | 1 | -1/+10 |
|
|
* | asyncio: Fix misc whitespace issues. | Guido van Rossum | 2014-01-31 | 2 | -13/+14 |
|
|
* | asyncio: Future.set_exception(exc) should instantiate exc if it is a class. | Victor Stinner | 2014-01-31 | 1 | -0/+5 |
|
|
* | asyncio: subprocess_shell() and subprocess_exec() now raise ValueError instea... | Victor Stinner | 2014-01-29 | 1 | -0/+32 |
|
|
* | asyncio: wait_for() now accepts None as timeout (Victor Stinner). | Guido van Rossum | 2014-01-29 | 1 | -0/+11 |
|
|
* | asyncio: Rename {Empty,Full} to {QueueEmpty,QueueFull} and no longer get them... | Guido van Rossum | 2014-01-26 | 1 | -2/+2 |
|
|
* | asyncio: Locks refactor: use a separate context manager; remove Semaphore._lo... | Guido van Rossum | 2014-01-26 | 1 | -0/+35 |
|
|
* | Merge latest Tulip into asyncio | Victor Stinner | 2014-01-25 | 1 | -2/+2 |
|
|
* | asyncio: Don't export BaseEventLoop, BaseSelectorEventLoop nor | Victor Stinner | 2014-01-25 | 4 | -8/+12 |
|
|
* | Update asyncio from the Tulip project | Victor Stinner | 2014-01-25 | 12 | -873/+893 |
|
|
* | Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum | Victor Stinner | 2014-01-25 | 2 | -1/+26 |
|
|
* | asyncio: wait_for() now cancels the future on timeout. Patch written by Gustavo | Victor Stinner | 2014-01-23 | 1 | -15/+14 |
|
|
* | Close #20365: Skip test_asyncio.test_events.test_read_pty_output() on Mac OS X | Victor Stinner | 2014-01-23 | 1 | -0/+3 |
|
|
* | Fix ResourceWarning in test_asyncio.test_windows_events: | Victor Stinner | 2014-01-10 | 1 | -0/+1 |
|
|
* | asyncio: Minimal pty support in UNIX read pipe, by Jonathan Slenders. | Guido van Rossum | 2014-01-10 | 1 | -0/+42 |
|
|
* | asyncio: Clean up formatting. | Guido van Rossum | 2013-12-19 | 1 | -1/+3 |
|
|
* | Close #19967: Thanks to the PEP 442, asyncio.Future can use a destructor in | Victor Stinner | 2013-12-19 | 1 | -0/+2 |
|
|
* | Shorten lines. | Guido van Rossum | 2013-12-19 | 1 | -1/+2 |
|
|
* | Skip some tests that require server name indication (SNI) | Christian Heimes | 2013-12-15 | 1 | -0/+6 |
|
|
* | Issue #19952: test_asyncio: relax timings of Windows events, buildbots are | Victor Stinner | 2013-12-13 | 1 | -2/+2 |
|
|
* | Issue 19572: More silently skipped tests explicitly skipped. | Zachary Ware | 2013-12-08 | 1 | -1/+1 |
|
|
* | copy 'n paste typo (thx Antoine) | Christian Heimes | 2013-12-06 | 1 | -5/+5 |
|
|
* | Skip new SSL tests with IocpEventLoop | Christian Heimes | 2013-12-06 | 1 | -0/+9 |
|
|