This repository was archived by the owner on Apr 14, 2024. It is now read-only.
File tree 2 files changed +40
-0
lines changed
2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ Creator: Sebastian Thiel
Original file line number Diff line number Diff line change
1
+ async
2
+ =====
3
+ Async aims to make writing asyncronous processing easier. It provides a task-graph
4
+ with interdependent tasks that communicate using blocking channels, allowing
5
+ to delay actual computations until items are requested.
6
+ Tasks will automatically be distributed among 0 or more threads for the actual computation.
7
+
8
+ Even though the GIL effectively prevents true concurrency, operations which block,
9
+ such as file IO, can be sped up with it already. In conjuction with
10
+ custom c extensions which release the GIL, true concurrency can be obtained as well.
11
+
12
+ REQUIREMENTS
13
+ ============
14
+
15
+ * Python Nose - for running the tests
16
+
17
+ SOURCE
18
+ ======
19
+ The source is available in a git repository at gitorious and github:
20
+
21
+ git://gitorious.org/git-python/async.git
22
+ git://github.com/Byron/async.git
23
+
24
+ Run the tests with
25
+ cd async
26
+ nosetests
27
+
28
+ MAILING LIST
29
+ ============
30
+ http://groups.google.com/group/git-python
31
+
32
+ ISSUE TRACKER
33
+ =============
34
+ http://byronimo.lighthouseapp.com/projects/51787-gitpython
35
+
36
+ LICENSE
37
+ =======
38
+
39
+ New BSD License
You can’t perform that action at this time.
0 commit comments