What’s New¶
1.9.0¶
New features:
- The underlying callable wrapped
@run_in_reactorand@wait_foris now available via the more standard__wrapped__attribute.
Backwards incompatibility (in tests):
- This was actually introduced in 1.8.0:
wrapped_functionmay not always be available on decorated callables. You should use__wrapped__instead.
Bug fixes:
- Fixed regression in 1.8.0 where bound method couldn’t be wrapped. Thanks to 2mf for the bug report.
1.8.0¶
New features:
- Signatures on decorated functions now match the original functions. Thanks to Mikhail Terekhov for the original patch.
- Documentation improvements, including an API reference.
Bug fixes:
- Switched to EPoll reactor for logging thread. Anecdotal evidence suggests this fixes some issues on AWS Lambda, but it’s not clear why. Thanks to Rolando Espinoza for the patch.
- It’s now possible to call
@run_in_reactorand@wait_forabove a@classmethod. Thanks to vak for the bug report.
1.7.0¶
Bug fixes:
- If the Python
logging.Handlerthrows an exception Crochet no longer goes into a death spiral. Thanks to Michael Schlenker for the bug report.
Removed features:
- Versions of Twisted < 16.0 are no longer supported (i.e. no longer tested in CI.)
1.5.0¶
New features:
- Added support for Python 3.5.
Removed features:
- Python 2.6, Python 3.3, and versions of Twisted < 15.0 are no longer supported.
1.4.0¶
New features:
- Added support for Python 3.4.
Documentation:
- Added a section on known issues and workarounds.
Bug fixes:
- Main thread detection (used to determine when Crochet should shutdown) is now less fragile. This means Crochet now supports more environments, e.g. uWSGI. Thanks to Ben Picolo for the patch.
1.3.0¶
Bug fixes:
- It is now possible to call
EventualResult.wait()(or functions wrapped inwait_for) at import time if another thread holds the import lock. Thanks to Ken Struys for the patch.
1.2.0¶
New features:
crochet.wait_forimplements the timeout/cancellation pattern documented in previous versions of Crochet.crochet.wait_for_reactorandEventualResult.wait(timeout=None)are now deprecated, since lacking timeouts they could potentially block forever.- Functions wrapped with
wait_forandrun_in_reactorcan now be accessed via thewrapped_functionattribute, to ease unit testing of the underlying Twisted code.
API changes:
- It is no longer possible to call
EventualResult.wait()(or functions wrapped withwait_for) at import time, since this can lead to deadlocks or prevent other threads from importing. Thanks to Tom Prince for the bug report.
Bug fixes:
warningsare no longer erroneously turned into Twisted log messages.- The reactor is now only imported when
crochet.setup()orcrochet.no_setup()are called, allowing daemonization if onlycrochetis imported (http://tm.tl/7105). Thanks to Daniel Nephin for the bug report.
Documentation:
- Improved motivation, added contact info and news to the documentation.
- Better example of using Crochet from a normal Twisted application.
1.1.0¶
Bug fixes:
EventualResult.wait()can now be used safely from multiple threads, thanks to Gavin Panella for reporting the bug.- Fixed reentrancy deadlock in the logging code caused by http://bugs.python.org/issue14976, thanks to Rod Morehead for reporting the bug.
- Crochet now installs on Python 3.3 again, thanks to Ben Cordero.
- Crochet should now work on Windows, thanks to Konstantinos Koukopoulos.
- Crochet tests can now run without adding its absolute path to PYTHONPATH or installing it first.
Documentation:
EventualResult.original_failureis now documented.
1.0.0¶
Documentation:
- Added section on use cases and alternatives. Thanks to Tobias Oberstein for the suggestion.
Bug fixes:
- Twisted does not have to be pre-installed to run
setup.py, thanks to Paul Weaver for bug report and Chris Scutcher for patch. - Importing Crochet does not have side-effects (installing reactor event) any more.
- Blocking calls are interrupted earlier in the shutdown process, to reduce scope for deadlocks. Thanks to rmorehead for bug report.
0.9.0¶
New features:
- Expanded and much improved documentation, including a new section with design suggestions.
- New decorator
@wait_for_reactoradded, a simpler alternative to@run_in_reactor. - Refactored
@run_in_reactor, making it a bit more responsive. - Blocking operations which would otherwise never finish due to reactor having
stopped (
EventualResult.wait()or@wait_for_reactordecorated call) will be interrupted with aReactorStoppedexception. Thanks to rmorehead for the bug report.
Bug fixes:
@run_in_reactordecorated functions (or rather, their generated wrapper) are interrupted by Ctrl-C.- On POSIX platforms, a workaround is installed to ensure processes started by reactor.spawnProcess have their exit noticed. See Twisted ticket 6378 for more details about the underlying issue.
0.8.1¶
EventualResult.wait()now raises error if called in the reactor thread, thanks to David Buchmann.- Unittests are now included in the release tarball.
- Allow Ctrl-C to interrupt
EventualResult.wait(timeout=None).
0.7.0¶
- Improved documentation.
0.6.0¶
- Renamed
DeferredResulttoEventualResult, to reduce confusion with Twisted’sDeferredclass. The old name still works, but is deprecated. - Deprecated
@in_reactor, replaced with@run_in_reactorwhich doesn’t change the arguments to the wrapped function. The deprecated API still works, however. - Unhandled exceptions in
EventualResultobjects are logged. - Added more examples.
setup.py sdistshould work now.
0.5.0¶
- Initial release.