1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Source: python-extended-threading
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Sandro Tosi <morph@debian.org>
Build-Depends: debhelper (>= 5), python
Build-Depends-Indep: python-support (>= 0.4)
Standards-Version: 3.8.0
Homepage: http://www.var-dev.net/programming/python/extended_threading/
Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-extended-threading/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-extended-threading/trunk/
Package: python-extended-threading
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}
Description: extension of the Python threading API
This is an extension to the basic Python threading library. It allows
inheritance of locks and several other non-inheritable types. It also
adds a few new lock types for those who found the original set
lacking.
.
Its main characteristics are:
.
* subclassable locks
* read/write mode lock (write locks are exclusive, read locks are
not)
* "safe" object based locks to help debug lock code.
|