/usr/share/pyshared/async/README is in python-async 0.6.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 28 29 30 31 32 33 34 35 36 37 38 | async
=====
Async aims to make writing asyncronous processing easier. It provides a task-graph
with interdependent tasks that communicate using blocking channels, allowing
to delay actual computations until items are requested.
Tasks will automatically be distributed among 0 or more threads for the actual computation.
Even though the GIL effectively prevents true concurrency, operations which block,
such as file IO, can be sped up with it already. In conjuction with
custom c extensions which release the GIL, true concurrency can be obtained as well.
REQUIREMENTS
============
* Python Nose - for running the tests
SOURCE
======
The source is available in a git repository at gitorious and github:
git://gitorious.org/git-python/async.git
git://github.com/Byron/async.git
Run the tests with
cd async
nosetests
MAILING LIST
============
http://groups.google.com/group/git-python
ISSUE TRACKER
=============
http://byronimo.lighthouseapp.com/projects/51787-gitpython
LICENSE
=======
New BSD License
|