summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Added fixes to setup.py to allow easy_installation0.5.0Sebastian Thiel2010-07-081-0/+0
|
* PackEntity: fixed capital bug which would cause a None to be in place of the ↵Sebastian Thiel2010-07-061-0/+0
| | | | bin sha when querying infos or streams through an entity
* added setup.py and Manifest to allow distribution and easy_installSebastian Thiel2010-07-011-0/+0
|
* DecompressMemMapReader: implemented compressed bytes counting, including ↵Sebastian Thiel2010-06-161-0/+0
| | | | test. This is required to properly read packs without the use of an index
* Made the db module a package to have enough room for expansionSebastian Thiel2010-06-141-0/+0
|
* Now using the async zlib module if it is available to allow performance ↵Sebastian Thiel2010-06-131-0/+0
| | | | gains through multi-threading.
* Added multi-threading performance tests which show that, during compression ↵Sebastian Thiel2010-06-121-0/+0
| | | | and decompression, it is not a tiny bit faster than without, which is due to the GIL and even separately locked zlib module implementations. The only way to make this faster update the resepctive c modules to drop the gil, and their own locks where possible
* Implemented all async methods, including test which shows how to chain the ↵Sebastian Thiel2010-06-121-0/+0
| | | | async method together
* Added async as submoduleSebastian Thiel2010-06-121-0/+0
tests: minimal reorganzation of code