summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* The task factory feature was implemented in Tulip and merged back to Trollius:trollius_greenioVictor Stinner2014-07-080-0/+0
| | | | it's the new BaseEventLoop.create_task() method.
* Add trollius.tasks.task_factory variableVictor Stinner2014-07-033-4/+7
| | | | | | | In the greenio project, Task._step() should not create Task objects but GreenTask to control how tasks are executed. Luca Sbardella already asked this feature for its Pulsar project to support coroutines using yield instead of yield-from.
* complete 0.4.1 changelogVictor Stinner2014-07-031-1/+25
|
* Merge Tulip into TrolliusVictor Stinner2014-06-2995-2608/+5842
|\
| * Fix for asyncio coroutines when passing tuple value in debug mode.Victor Stinner2014-06-272-7/+61
| | | | | | | | | | CoroWrapper.send() now checks if it is called from a "yield from" generator to decide if the parameter should be unpacked or not.
| * fix runtests.py command lineVictor Stinner2014-06-271-7/+4
| |
| * Merge Tulip into TrolliusVictor Stinner2014-06-2794-2581/+5778
| |\
| | * Merge Tulip into TrolliusVictor Stinner2014-06-2794-2560/+5761
| | |\
| | | * docVictor Stinner2014-06-241-1/+2
| | | |
| | | * Tornado docVictor Stinner2014-06-241-2/+4
| | | |
| | | * post-release: set version to 0.4.1Victor Stinner2014-06-233-3/+3
| | | |
| | | * Added tag trollius-0.4 for changeset 87728a19c008Victor Stinner2014-06-230-0/+0
| | | |
| | | * update MANIFEST.introllius-0.4Victor Stinner2014-06-231-5/+11
| | | |
| | | * prepare release 0.4Victor Stinner2014-06-231-2/+2
| | | |
| | | * doc: diffVictor Stinner2014-06-231-0/+2
| | | |
| | | * Add unit tests for asyncio coroutinesVictor Stinner2014-06-231-0/+72
| | | |
| | | * Trollius 0.4 supports asyncio coroutinesVictor Stinner2014-06-231-4/+3
| | | |
| | | * READMEVictor Stinner2014-06-232-11/+42
| | | |
| | | * Fill Tulip changelogVictor Stinner2014-06-231-1/+15
| | | |
| | | * docVictor Stinner2014-06-232-6/+3
| | | |
| | | * Fix time_t in time_monotonic on OpenBSDVictor Stinner2014-06-231-1/+10
| | | |
| | | * Fix test on WindowsVictor Stinner2014-06-231-1/+1
| | | |
| | | * Fix imports, againVictor Stinner2014-06-231-2/+3
| | | |
| | | * Fix importVictor Stinner2014-06-231-1/+1
| | | |
| | | * Fix some tests on PyPyVictor Stinner2014-06-232-2/+2
| | | |
| | | * Fix subprocess on PyPyVictor Stinner2014-06-232-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | _UnixSubprocessTransport._start() doesn't use makefile() anymore: depending on the file object, the Python version and the Python implementation, closing the new file object may not close immediatly the file. Use instead os.dup()+file.close() which is more reliable.
| | | * Replace "yield from ()" with "yield From(None)"Victor Stinner2014-06-234-14/+8
| | | |
| | | * Merge Tulip into TrolliusVictor Stinner2014-06-231-2/+5
| | | |\
| | | * | Use the correct replacement for "yield from []" in unit tests: "if 0: yield",Victor Stinner2014-06-232-14/+24
| | | | | | | | | | | | | | | | | | | | to get tests closer to Tulip tests
| | | * | Fix support of Python 2Victor Stinner2014-06-232-3/+7
| | | | |
| | | * | Merge Tulip into TrolliusVictor Stinner2014-06-2392-2541/+5580
| | | |\ \
| | | | * | split update script in 3 partsVictor Stinner2014-06-233-10/+23
| | | | | |
| | | | * | RenameVictor Stinner2014-06-231-0/+0
| | | | | |
| | | | * | tests: PyPy support, force garbage collection to call destructorsVictor Stinner2014-06-233-2/+7
| | | | | |
| | | | * | Merge with TulipVictor Stinner2014-06-1890-2538/+5565
| | | | |\ \
| | | | | * | Python 3.5 is supported as wellVictor Stinner2014-06-181-1/+1
| | | | | | |
| | | | | * | document Tulip changesVictor Stinner2014-06-181-1/+32
| | | | | | |
| | | | | * | Don't use sys.flags.ignore_environment anymoreVictor Stinner2014-06-183-13/+5
| | | | | | |
| | | | | * | Fix python 2.6 compatibilityVictor Stinner2014-06-182-2/+2
| | | | | | |
| | | | | * | fix HandleTests.test_repr() on Python 2Victor Stinner2014-06-181-3/+6
| | | | | | |
| | | | | * | Remove debug codeVictor Stinner2014-06-181-1/+0
| | | | | | |
| | | | | * | On Python 2, define the __wrapped__ attribute, so _get_function_source() canVictor Stinner2014-06-181-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | retrieve the source of the wrapped function (instead of the source of the wrapper).
| | | | | * | Backport assertRegex() method in test_utils.assertRegexVictor Stinner2014-06-181-0/+12
| | | | | | |
| | | | | * | Merge with TulipVictor Stinner2014-06-1818-287/+369
| | | | | |\ \
| | | | | * | | changelog: support asyncio coroutinesVictor Stinner2014-06-181-0/+1
| | | | | | | |
| | | | | * | | Rename PYTHONASYNCIODEBUG envrionment variable to TROLLIUSDEBUGVictor Stinner2014-06-185-10/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Set also the version to 0.4
| | | | | * | | Merge trollius_interop_asyncio branch into trolliusVictor Stinner2014-06-185-207/+318
| | | | | |\ \ \
| | | | | | * | | Interop: support also event loop policyVictor Stinner2014-06-112-23/+27
| | | | | | | | |
| | | | | | * | | iscoroutine() now also supports asyncio.CoroWrapperVictor Stinner2014-06-111-1/+8
| | | | | | | | |
| | | | | | * | | Add an example of interoperability between Trollius and asyncioVictor Stinner2014-06-111-0/+51
| | | | | | | | |