Am 08.01.2014 13:10, schrieb Victor Stinner:
Hi,
I just released Trollius 0.1.2 because all unit tests are now passing
;-) Changelog:
- Trollius now supports CPython 2.6-3.4, PyPy and Windows. All unit tests
pass with CPython 2.7 on Linux.
- Fix Windows support. Fix compilation of the _overlapped module and add a
asyncio._winapi module (written in pure Python). Patch written by Marc
Schlaich.
- Support Python 2.6: require an extra dependency,
ordereddict (and unittest2 for unit tests)
- Support Python 3.2, 3.3 and 3.4
- Support PyPy 2.2
- Don't modify __builtins__ nor the ssl module to inject backported exceptions
like BlockingIOError or SSLWantReadError. Exceptions are available in the
asyncio module, ex: asyncio.BlockingIOError.
Victor
Neat!
In the meantime, I've got Autobahn/Trollius on Python 2.6 running. There
was an issue left (in Autobahn) that is fixed in the upcoming 0.7.4
release (and in the repo already of course).
Hence, Autobahn/Trollius works on
CPython 2.6, 2.7 and PyPy 2.2
I won't bother with CPython 3.2 (and hence also not with PyPy3 which is
currently tracking Python 3.2) ..
This is now reflected in
https://github.com/tavendo/AutobahnPython#python-support
Cheers,
/Tobias