summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * instead of writing a string to a buffer api (in python 3) write a buffer.David Black2014-05-161-1/+1
* | Merge pull request #6 from dbaxa/python_3_supportSebastian Thiel2014-05-168-30/+39
|\ \ | |/
| * Initial work for supporting python 3 (>= 3.3).David Black2014-05-168-30/+39
|/
* Get starten on py3.3 compatabilitySebastian Thiel2014-05-061-0/+1
* Oh, travis doesn't support older python versions, fair enoughSebastian Thiel2014-05-041-2/+0
* pypy deactivated, it doesn't yet workSebastian Thiel2014-05-041-1/+2
* Added travis CI supportSebastian Thiel2014-05-042-3/+13
* tabs to spacesSebastian Thiel2014-02-0910-1455/+1455
* Bumped version to 0.8.2v0.8.2Sebastian Thiel2012-01-181-1/+1
* Added some more in-code comments to clarify why that exception is caughtSebastian Thiel2012-01-181-0/+5
* Merge remote branch 'kennethreitz/fix/1' into integrateSebastian Thiel2012-01-181-5/+8
|\
| * Workaround for #1Kenneth Reitz2011-07-081-5/+8
* | Added LICENSE file containing a copy of (new)BSDSebastian Thiel2011-08-291-0/+30
|/
* updated changelog, bumped versionv0.8.1Sebastian Thiel2011-07-052-1/+7
* Fixed possible bug as a method was called using an old signature. Apparently ...Sebastian Thiel2011-07-051-2/+1
* Removed possibly invalid documentation tagsSebastian Thiel2011-06-133-27/+35
* Fixed wrong operating system fieldsv0.8.0Sebastian Thiel2011-06-131-2/+2
* Made README.rst a copy of intro.rst. unfortunately symlinks are not followed ...Sebastian Thiel2011-06-131-1/+79
* Merge branch 'docs'Sebastian Thiel2011-06-1311-73/+374
|\
| * It turned out the :note: docstring was not supported. Now all documentation i...Sebastian Thiel2011-06-132-27/+36
| * Finished tutorial section, umproved capabilities of the buffer implementation...Sebastian Thiel2011-06-136-9/+221
| * Wrote introduction, readme.rst now points to the introduction page to keep th...Sebastian Thiel2011-06-134-51/+128
| * Fixed up configuration to create api documentation for the code. Improved som...Sebastian Thiel2011-06-133-4/+7
|/
* Added option to help test cases to succeed on windows. Its for test systems onlySebastian Thiel2011-06-131-3/+28
* A tiny win32 fix, once againSebastian Thiel2011-06-101-3/+4
* Merge branch 'single'Sebastian Thiel2011-06-105-275/+400
|\
| * Some more adjustments to make it work in all python versionsSebastian Thiel2011-06-102-3/+7
| * Finally the mem manager and buffer tests run with the static one tooSebastian Thiel2011-06-103-109/+131
| * test are running, once again, but not yet complete regarding the static managerSebastian Thiel2011-06-102-93/+70
| * Implemented static memory manager, for now without testSebastian Thiel2011-06-103-15/+99
| * Changed design of memory managers to support different implementations. Curre...Sebastian Thiel2011-06-103-98/+134
| * moved code from cursor into manager, as it belongs there. This is a design er...Sebastian Thiel2011-06-103-120/+122
|/
* Changed names to be more descriptive, hopefully. This opens op the option to ...Sebastian Thiel2011-06-106-53/+53
* Made all types available in root packageSebastian Thiel2011-06-101-0/+4
* Implemented __len__ method in buffer, including small test. This has its cave...Sebastian Thiel2011-06-102-3/+28
* Fixed missing ALLOCATIONGRANULARIY in python <2.6. Python is as unportable as...Sebastian Thiel2011-06-102-2/+9
* Fixed some mapping issues on windows. Fixed some tests to deal with the very ...Sebastian Thiel2011-06-105-23/+24
* Merge branch 'fd'Sebastian Thiel2011-06-105-162/+219
|\
| * Added tests for the fd case. It shows that this is measurably faster than the...Sebastian Thiel2011-06-104-138/+157
| * System can now deal with file descriptors as input, but it still requires som...Sebastian Thiel2011-06-103-25/+63
|/
* Added very special purpose method to free memory maps. The whole reason for t...Sebastian Thiel2011-06-101-0/+29
* Added indirection level to internally used types to allow others to exchange ...Sebastian Thiel2011-06-102-9/+18
* Changed buffer implementation to use a cursor right away instead of taking a ...Sebastian Thiel2011-06-092-45/+35
* Merge branch 'device'Sebastian Thiel2011-06-097-26/+246
|\
| * Optimized __getslice__ implementation a bitSebastian Thiel2011-06-091-10/+5
| * Finished implementation of buffer including a test which shows the performanc...Sebastian Thiel2011-06-094-32/+66
| * Implemented buffer interface and test to fully proove it. Its not yet fully p...Sebastian Thiel2011-06-094-10/+196
| * Cursor can now take additional flags when opening the file handle for mapping...Sebastian Thiel2011-06-094-7/+12
|/
* Merge branch 'cursor'Sebastian Thiel2011-06-095-33/+576
|\
| * Applied some optimizations for performance. Python is very easily overwhelmed...Sebastian Thiel2011-06-093-45/+68