diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-08 19:25:33 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-08 19:25:33 +0200 |
commit | 772b95631916223e472989b43f3a31f61e237f31 (patch) | |
tree | cac3b488a05502b15532b07bb3848e0fdb2df339 /lib/git/async/util.py | |
parent | e5c0002d069382db1768349bf0c5ff40aafbf140 (diff) | |
download | gitpython-772b95631916223e472989b43f3a31f61e237f31.tar.gz |
workerthread: adjusted to use a blocking queue, it will receive termination events only with its queue, with boosts performance into brigt green levels
Diffstat (limited to 'lib/git/async/util.py')
-rw-r--r-- | lib/git/async/util.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/git/async/util.py b/lib/git/async/util.py index 6d09de59..f3213ed6 100644 --- a/lib/git/async/util.py +++ b/lib/git/async/util.py @@ -240,7 +240,6 @@ class AsyncQueue(Queue): # END handle block # can throw if we woke up because we are not writable anymore - print len(q), id(q), current_thread() try: return q.popleft() except IndexError: |