summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Fix spelling & typosYury Selivanov2014-02-1812-18/+18
* Issue #143: UNIX domain methods, fix ResourceWarning and DeprecationWarningVictor Stinner2014-02-192-17/+19
* Issue #139: Improve error messages on "fatal errors"Victor Stinner2014-02-196-38/+64
* transports: Make _ProactorBasePipeTransport use _FlowControlMixinYury Selivanov2014-02-184-125/+75
* Add new event loop exception handling API (closes issue #80).Yury Selivanov2014-02-1814-99/+487
* Only add *_unix_* to __all__ if they are defined.Guido van Rossum2014-02-181-1/+3
* Add support for UNIX Domain Sockets. Closes issue #81.Yury Selivanov2014-02-1810-193/+738
* Skip test_read_pty_output() on OpenBSDVictor Stinner2014-02-181-0/+4
* Update email address for A. Jesse Jiryu Davis.jesse2014-02-181-1/+1
* Fix test_events.py: skip IPv6 if IPv6 is disabled on the hostVictor Stinner2014-02-131-1/+5
* Issue #129: BaseEventLoop.sock_connect() now raises an error if the address isVictor Stinner2014-02-134-13/+53
* Fuzz tester for as_completed(), by Glenn Langford. (See issue #127.)Guido van Rossum2014-02-121-0/+69
* Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fixes issue ...Guido van Rossum2014-02-122-21/+55
* events: Use __slots__ in Handle and TimerHandleYury Selivanov2014-02-121-0/+4
* Python issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSDVictor Stinner2014-02-111-0/+2
* Issue #131: as_completed() and wait() now raises a TypeError if the list ofVictor Stinner2014-02-112-0/+30
* Issue #130: Add more checks on subprocess_exec/subprocess_shell parametersVictor Stinner2014-02-113-7/+64
* Remove debug traces, there are only useful on Python buildbotsVictor Stinner2014-02-111-6/+0
* Issue #126: call_soon(), call_soon_threadsafe(), call_later(), call_at() andVictor Stinner2014-02-116-13/+39
* Fix TestLoop, set the clock resolutionVictor Stinner2014-02-111-0/+1
* Python issue #20505: BaseEventLoop uses again the resolution of the clock toVictor Stinner2014-02-102-6/+18
* Add hint for pypi release on Windows.Guido van Rossum2014-02-101-0/+2
* Added tag 0.3.1 for changeset 70a228927cabGuido van Rossum2014-02-100-0/+0
* Bump to version 0.3.1.0.3.1Guido van Rossum2014-02-102-2/+3
* Removed tag 0.3.1Guido van Rossum2014-02-100-0/+0
* Added tag 0.3.1 for changeset b01fa490bc3dGuido van Rossum2014-02-100-0/+0
* Issue #112: Inline make_handle() into Handle constructorVictor Stinner2014-02-106-14/+9
* Remove more relics of resolution/granularity.Guido van Rossum2014-02-082-6/+0
* Remove Process.subprocess attribute; it's too easy to get inconsistent ProcessVictor Stinner2014-02-092-24/+0
* Fix test bug (should use list, not set).Guido van Rossum2014-02-081-1/+1
* Remove scories of resolution/granularityVictor Stinner2014-02-093-7/+0
* Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-076-42/+10
* tasks: Fix as_completed, gather & wait to work with duplicate coroutines. Iss...Yury Selivanov2014-02-062-11/+51
* tasks.gather: Fix docstringYury Selivanov2014-02-061-1/+1
* streams.StreamReader: Add 'at_eof()' methodYury Selivanov2014-02-062-0/+19
* streams.StreamReader.feed_data: Add assertion that stream is not in EOF stateYury Selivanov2014-02-051-0/+2
* streams.StreamReader: Use bytearray instead of deque of bytes for internal bu...Yury Selivanov2014-02-042-76/+74
* Cosmetic improvement to test__run_once_logging() mock argument.Guido van Rossum2014-02-041-5/+3
* Fix _ProactorWritePipeTransport._pipe_closed()Victor Stinner2014-02-041-1/+4
* Adjust unit tests regarding timings: tolerate slow buildbots, add a test on theVictor Stinner2014-02-043-8/+17
* test_events: skip PTY tests on Mac OS X older than 10.6Victor Stinner2014-02-031-0/+6
* Remove empty line at the end of subprocess.pyVictor Stinner2014-02-031-1/+0
* Replace Process.get_subprocess() method with a Process.subprocess read-only p...Victor Stinner2014-02-032-10/+11
* Merge (manually) the subprocess_stream into defaultVictor Stinner2014-02-0111-34/+631
* Copy a bunch of fixes by Victor for the Proactor event loop from the CPython ...Guido van Rossum2014-01-315-19/+47
* selectors: round (again) timeout away from zero for poll and epollVictor Stinner2014-01-311-2/+8
* asyncio: Fix error message in BaseEventLoop.subprocess_shell(). Patch writtenVictor Stinner2014-01-311-1/+1
* Minor packaging tweak by ?ric Araujo. Fixes issue #116.Guido van Rossum2014-01-302-3/+5
* Normalize whitespace (use "make pep8" to verify).Guido van Rossum2014-01-303-13/+15
* overlapped.c: Fix usage of the unionVictor Stinner2014-01-301-9/+11