summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Run asyncio with python nightly builds too on travisYury Selivanov2015-08-051-0/+1
| |
| * Use '==' operator instead of 'is'Yury Selivanov2015-08-041-1/+1
| |
| * Revert "tasks: Fix code style"Yury Selivanov2015-08-021-2/+3
| | | | | | | | | | | | | | | | | | | | This reverts commit 4851618b6b154272e79bdc1b5f63b4887e12d8e9 per Guido's comment: I don't like the refactoring. The original way (two nested if's) was IMO clearer about the side effect (of calling cancel()) that only happens if the first condition is true. The refactored version sweeps the side effect under the proverbial mat.
| * tasks: Fix code styleYury Selivanov2015-08-021-3/+2
| |
| * Use compat.PY34Victor Stinner2015-07-316-11/+13
| |
| * Fix ResourceWarning in BaseSubprocessTransportVictor Stinner2015-07-312-2/+22
| | | | | | | | | | | | Python issue #24763: Fix resource warnings when BaseSubprocessTransport constructor fails, if subprocess.Popen raises an exception for example. Patch written by Martin Richard, test written by me.
| * Fix ResourceWarning warnings in test_streamsVictor Stinner2015-07-241-16/+12
| |
| * remove unused importsVictor Stinner2015-07-195-8/+0
| |
| * Return True from StreamReader.eof_received() to fixGuido van Rossum2015-07-141-0/+19
| | | | | | | | | | http://bugs.python.org/issue24539 (but still needs a unittest). Add StreamReader.__repr__() for easy debugging.
* | fix windows_utils: add missing "import six"Victor Stinner2015-07-191-0/+2
| |
* | fix test_utils: add missing "import six"Victor Stinner2015-07-191-0/+2
| |
* | doc: add librariesVictor Stinner2015-07-182-0/+31
| |
* | setup.py: don't use bdist_wheelVictor Stinner2015-07-171-1/+3
| |
* | Use the six moduleVictor Stinner2015-07-1310-16/+24
| |
* | update TODO listVictor Stinner2015-07-131-1/+2
| |
* | test_utils.py: remove assertRaisesRegexVictor Stinner2015-07-132-32/+0
| | | | | | | | unittest2 is now used on Python 2.6 and 2.7.
* | post-release: set version to 2.0.1Victor Stinner2015-07-132-3/+3
| |
* | update release proceduretrollius-2.0Victor Stinner2015-07-131-2/+2
| |
* | prepare release 2.0Victor Stinner2015-07-134-7/+10
| |
* | Fix TestCase.tearDown() for skipped testsVictor Stinner2015-07-132-1/+9
| |
* | Fix sslproto when ssl is not availableVictor Stinner2015-07-134-8/+15
| |
* | changelog: summaryVictor Stinner2015-07-131-3/+11
| |
* | cleanup changelogVictor Stinner2015-07-121-8/+8
| |
* | update docVictor Stinner2015-07-116-15/+90
| | | | | | | | | | * update project URL * set version to 2.0
* | Enable warnings to see ResourceWarning on Python 3Victor Stinner2015-07-111-5/+5
| |
* | Test without ssl or without concurrentVictor Stinner2015-07-113-8/+44
| |
* | Fix Python 3.2 compatVictor Stinner2015-07-111-3/+5
| |
* | fix 2.6 compatVictor Stinner2015-07-112-2/+2
| |
* | don't commit in update-asyncio-step3.shVictor Stinner2015-07-112-6/+13
| | | | | | | | update setup.py to use git
* | Merge asyncio into trolliusVictor Stinner2015-07-1111-56/+111
|\ \ | |/
| * Issue #234: Drop JoinableQueue on Python 3.5+Victor Stinner2015-07-102-4/+12
| |
| * Merge pull request #254 from haypo/compatVictor Stinner2015-07-108-30/+35
| |\ | | | | | | Add asyncio.compat module
| | * Add asyncio.compat moduleVictor Stinner2015-07-098-30/+35
| |/ | | | | | | | | Move compatibility helpers for the different Python versions to a new asyncio.compat module.
* | enhance git mergeVictor Stinner2015-07-111-1/+5
| |
* | rename compat.py to be able to merge asyncioVictor Stinner2015-07-111-61/+0
| |
* | update scripts to gitVictor Stinner2015-07-112-5/+5
| |
* | rename update-tulip...sh scripts to update-asyncio-...shVictor Stinner2015-07-113-0/+0
| |
* | port update-tulip-step1.sh to git+githubVictor Stinner2015-07-111-7/+6
| |
* | fix test_events on python 3.4.0 and 3.4.1Victor Stinner2015-07-091-2/+0
| |
* | Fix PipeHandle.__del__ on Python 2Victor Stinner2015-07-091-1/+3
| |
* | subprocess.Popen doesn't support context manager on Python 2Victor Stinner2015-07-091-3/+4
| |
* | getaddrinfo() doesn't support keywords on Python 2Victor Stinner2015-07-091-4/+4
| |
* | fix importVictor Stinner2015-07-091-0/+1
| |
* | get unittest from trollius.test_utilsVictor Stinner2015-07-0918-122/+114
| |
* | Fix import on windowsVictor Stinner2015-07-091-1/+0
| |
* | update doc for unittest2Victor Stinner2015-07-091-1/+1
| |
* | Merge branch 'master' into trolliusVictor Stinner2015-07-097-11/+12
|\ \ | |/
| * replace tulip with asyncioVictor Stinner2015-07-094-3/+5
| | | | | | | | README: mention the old Tulip name
| * Replace Tulip with asyncio in test commentsVictor Stinner2015-07-094-7/+9
| |
| * queues.py: import coroutine from .coroutinesVictor Stinner2015-07-091-1/+1
| | | | | | | | not from .tasks