summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* 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
|
* Misc/NEWS: Add a news item for UNIX Sockets support in asyncio. Cleanup WS.Yury Selivanov2014-02-181-0/+4
|
* asyncio: Add support for UNIX Domain Sockets.Yury Selivanov2014-02-1810-193/+738
|
* Issue #20493: Document that asyncio should not exceed one dayVictor Stinner2014-02-181-0/+4
|
* Close #20649: Fix typo in asyncio doc. Patch written by Brett Cannon.Victor Stinner2014-02-181-1/+1
|
* Issue #20667: KqueueEventLoopTests.test_read_pty_output() hangs also on ↵Victor Stinner2014-02-182-12/+3
| | | | OpenBSD 5.5.
* 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.
* 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 #20616: Add a format() method to tracemalloc.Traceback.Victor Stinner2014-02-164-7/+59
|
* merge backout for #20621Benjamin Peterson2014-02-162-321/+67
|
* look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251)Benjamin Peterson2014-02-163-12/+23
|
* Issue #19744: Handle missing SSL/TLS in ensurepipNick Coghlan2014-02-143-0/+17
| | | | | - now also allows POSIX installation with SSL/TLS missing - a goal for pip 1.6 is to allow local use without SSL/TLS
* set line and column numbers for keyword-only arg nodes (closes #20619)Benjamin Peterson2014-02-143-2/+7
|
* Issue #20526, #19466: Revert changes of issue #19466 which introduces aVictor Stinner2014-02-133-64/+9
| | | | | regression: don't clear anymore the state of Python threads early during the Python shutdown.
* Fix test_asyncio/test_events.py: skip IPv6 if IPv6 is disabled on the hostVictor Stinner2014-02-131-1/+5
|
* ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error ifVictor Stinner2014-02-135-13/+59
| | | | | the address is not resolved (hostname instead of an IP address) for AF_INET and AF_INET6 address families.
* asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. ↵Guido van Rossum2014-02-132-21/+55
| | | | Fixes issue #20566.
* asyncio.events: Use __slots__ in Handle and TimerHandleYury Selivanov2014-02-121-0/+4
|
* Issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD older thanVictor Stinner2014-02-111-0/+2
| | | | FreeBSD 8
* Issue #20505: Remove debug codeVictor Stinner2014-02-111-20/+0
|
* merge 3.3 (#20594)Benjamin Peterson2014-02-112-2/+8
|
* asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError ifVictor Stinner2014-02-112-0/+30
| | | | the list of futures is not a list but a Future, Task or coroutine object
* asyncio, Tulip issue 130: Add more checks on subprocess_exec/subprocess_shellVictor Stinner2014-02-113-7/+64
| | | | parameters
* asyncio, Tulip issue 126: call_soon(), call_soon_threadsafe(), call_later(),Victor Stinner2014-02-116-13/+39
| | | | | call_at() and run_in_executor() now raise a TypeError if the callback is a coroutine function.
* Issue #20505: use also the monotonic time to decide if asyncio debug tracesVictor Stinner2014-02-111-3/+4
| | | | should be printed
* Issue #20505: Oops, only print debug info if selector.select(timeout) took lessVictor Stinner2014-02-111-1/+1
| | | | than timeout
* Issue #20505: Improve debug info in asyncio event loopVictor Stinner2014-02-111-5/+18
|
* Issue #20505: Fix TestLoop, set the clock resolutionVictor Stinner2014-02-111-0/+1
|
* Issue #20505: BaseEventLoop uses again the resolution of the clock to decide ifVictor Stinner2014-02-102-8/+9
| | | | scheduled tasks should be executed or not.
* merge with 3.3Georg Brandl2014-02-106-5/+43
|
* Issue #20505: Use even shorter sleep in test_timeout_rounding() to make theVictor Stinner2014-02-101-3/+5
| | | | test more reliable (= fail more often on Windows with HPET enabled).
* Created release branch for 3.4.Larry Hastings2014-02-210-0/+0
|
* Python 3.4.0rc1: Post-release updates.Larry Hastings2014-02-112-1/+13
|
* Added tag v3.4.0rc1 for changeset 5e088cea8660Larry Hastings2014-02-101-0/+1
|
* Python 3.4.0rc1: Version bump.v3.4.0rc1Larry Hastings2014-02-106-9/+9
|
* Add PyType_GetSlot to python3 def file. Patch courtesy Martin v. Löwis.Larry Hastings2014-02-102-0/+2
|
* Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors.Larry Hastings2014-02-105-13/+13
|
* Issue #20517: Removed unnecessary new (short-lived) functions from PyErr.Larry Hastings2014-02-106-173/+7
|
* Issue #20505: Add debug info to analyze sporaric failures ofVictor Stinner2014-02-102-1/+10
| | | | test_timeout_rounding() on Windows XP buildbots.
* Issue #20530: The signatures for slot builtins have been updatedLarry Hastings2014-02-102-42/+45
| | | | to reflect the fact that they only accept positional-only arguments.
* Issue #20517: Functions in the os module that accept two filenamesLarry Hastings2014-02-1010-73/+380
| | | | | | now register both filenames in the exception on failure. This required adding new C API functions allowing OSError exceptions to reference two filenames instead of one.
* asyncio: Tulip issue 112: Inline make_handle() into Handle constructorVictor Stinner2014-02-096-14/+9
|