Hi, Someone wrote "Release often, release early", so here is a new release of Trollius :-) The major change is the new "Return" syntax. Trollius 0.1.3 now works on Windows, Mac OS X, Linux, FreeBSD and OpenIndiana!
All changes between 0.1.2 and 0.1.3: - Workaround bugs in the ssl module of Python older than 2.6.6. For example, Mac OS 10.6 (Snow Leopard) uses Python 2.6.1. - ``return x, y`` is now written ``raise Return(x, y)`` instead of ``raise Return((x, y))`` - Support "with (yield lock):" syntax for Lock, Condition and Semaphore - SSL support is now optional: don't fail if the ssl module is missing - Add tox.ini, tool to run unit tests. For example, "tox -e py27" creates a virtual environment to run tests with Python 2.7. There is only one failing test on Mac OS 10.6, the PTY test (which also fails in Tulip and Python 3.4). The release includes also the new crawl.py example written last week by Guido. Victor
