summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update README to indicate no maintenance.trollius-2.1.post1Jason Madden2019-07-292-43/+14
|
* Make a .post1 release.Jason Madden2019-07-291-1/+1
|
* Deprecate Trolliustrollius-2.1Victor Stinner2016-02-059-0/+130
|
* set version to 2.1Victor Stinner2016-02-052-5/+13
|
* document the win32 fixVictor Stinner2016-02-051-0/+1
|
* Merge pull request #6 from mindw/fix_win32_testVictor Stinner2016-02-052-2/+3
|\ | | | | Fix win32 test
| * ignore inline built extensionsGabi Davar2015-11-131-1/+2
| |
| * fix test on py2 win32Gabi Davar2015-11-131-1/+1
| |
* | Fix CoroWrapper.throw()Victor Stinner2016-02-051-2/+2
| | | | | | | | Add support for up to 3 parameters, not only 1.
* | Ugly hack to support Python 3.5 with the PEP 479Victor Stinner2016-02-055-45/+131
| |
* | Drop support of Python 2.6 and 3.2Victor Stinner2016-02-056-14/+21
| |
* | document change on exceptionVictor Stinner2016-02-051-0/+8
| |
* | Fix Future on Python 3.5Victor Stinner2016-02-051-3/+0
|/ | | | Future.__iter__() doesn't exist on Python 3.5.
* Merge pull request #5 from imkin/trolliusVictor Stinner2015-11-132-2/+6
|\ | | | | better exception traceback
| * better exception tracebackDhawal Yogesh Bhanushali2015-11-122-2/+6
|/
* Merge asyncio into trolliusVictor Stinner2015-09-0817-48/+249
|\
| * Fix Task.get_stask() for 'async def' coroutineslistmasterYury Selivanov2015-08-142-1/+37
| |
| * Fix asyncio tests on windowsYury Selivanov2015-08-091-1/+5
| |
| * queues: Fix getter-cancellation with many pending getters code pathYury Selivanov2015-08-062-2/+37
| | | | | | | | | | This commit fixes a typo in a method call and adds a unittest to make sure that that code path is tested.
| * Make sure BaseException is re-raised in SSLProtocolYury Selivanov2015-08-051-1/+6
| |
| * Merge PR #256: fix issue23812 of queues loosing items on cancellationYury Selivanov2015-08-052-10/+98
| | | | | | | | Patch by @gjcarneiro.
| * 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