- 24 Jun, 2014 3 commits
-
-
Raymond Hettinger authored
-
Benjamin Peterson authored
-
Raymond Hettinger authored
(Based on a patch from Renee Chu.)
-
- 23 Jun, 2014 4 commits
-
-
Yury Selivanov authored
Closes #21801.
-
Victor Stinner authored
raises an exception if there is no current loop
-
Raymond Hettinger authored
-
Benjamin Peterson authored
Patch from Yayoi Ukai.
-
- 22 Jun, 2014 10 commits
-
-
Benjamin Peterson authored
From the combined efforts of Berber Peksage, Andrew Svetlov, and Yayoi Ukai.
-
Victor Stinner authored
event loop is running. You must first stop the event loop and then wait until it stopped, before closing it.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
enables debug mode of the event loop.
-
Victor Stinner authored
environment variable is set
-
Victor Stinner authored
exception if the current loop is not None. Guido van Rossum wrote: "The behavior that you can set the loop to None (and keep track of it explicitly) is part of the spec, and this should still be supported even in debug mode. The behavior that we raise an error if you are caught having multiple active loops per thread is just a debugging heuristic, and it shouldn't break code that follows the spec."
-
Martin v. Löwis authored
Patch by Olive Kilburn.
-
Raymond Hettinger authored
-
Terry Jan Reedy authored
Add note to demohelp.txt about doing so.
-
- 21 Jun, 2014 1 commit
-
-
Raymond Hettinger authored
-
- 20 Jun, 2014 8 commits
-
-
Charles-François Natali authored
-
Charles-François Natali authored
-
Terry Jan Reedy authored
-
Charles-François Natali authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Victor Stinner authored
to be executed.
-
Senthil Kumaran authored
-
- 19 Jun, 2014 5 commits
-
-
Ezio Melotti authored
-
Victor Stinner authored
-
Victor Stinner authored
available bytes from the "self pipe", not only a single byte. This change reduces the risk of having the pipe full and so getting the innocuous "BlockingIOError: [Errno 11] Resource temporarily unavailable" message.
-
Victor Stinner authored
bytes or character strings
-
Antoine Pitrou authored
Issue #21722: The distutils "upload" command now exits with a non-zero return code when uploading fails. Patch by Martin Dengler.
-
- 18 Jun, 2014 3 commits
-
-
Ned Deily authored
-
Zachary Ware authored
-
Victor Stinner authored
- Add a missing import - Remove an unused import - Remove unused variables
-
- 17 Jun, 2014 6 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
calls to time.monotonic(). Use a "fast select" and a "slow select" instead.
-
Victor Stinner authored
Python 3.5 - Drop __slots__ optimization of CoroWrapper to be able to set the __qualname__ attribute. - Add tests on __name__, __qualname__ and __module__ of a coroutine function and coroutine object. - Fix test_tasks when run in debug mode (PYTHONASYNCIODEBUG env var set) on Python 3.3 or 3.4
-
Victor Stinner authored
maximum size. Patch written by Vajrasky Kok.
-
Terry Jan Reedy authored
-
Benjamin Peterson authored
-