summaryrefslogtreecommitdiff
path: root/tests/test_transform.py
Commit message (Collapse)AuthorAgeFilesLines
* Reformatting with BlackSybren A. Stüvel2021-03-291-10/+7
| | | | No functional changes.
* Drop character encoding markers for Python 2.xAndrey Semakin2020-06-031-2/+0
|
* Removed compatibility code for Python 2.7 and 3.4Sybren A. Stüvel2019-08-041-22/+1
|
* Drop byte_literal in favour of b''adamantike2016-05-081-13/+12
|
* Updated documentation, mostly http -> https changesSybren A. Stüvel2016-02-051-1/+1
| | | | | | Also: - changed http to https in the code - changed header underlines in the documentation to match the header length
* Removed dependency on unittest2, also merged requirements.txt for py 2.x and 3.xSybren A. Stüvel2016-01-211-2/+2
|
* Added per-file licensesRoy Kokkelkoren2015-10-251-1/+14
|
* Adds verification tests for int2bytes and bytes2intYesudeep Mangalapilly2011-08-121-10/+45
| | | | | | | | | * There is a bug in the older int2bytes implementation. I've raised an issue on bitbucket for that already. #11 The pkcs1 file verification test fails if the behavior for int2bytes is corrected.
* Adds speed tests for int2bytes and old_int2bytes.Yesudeep Mangalapilly2011-08-111-1/+9
| | | | | | | | | | | | | | | | | | | | | | * In the following tests, the first speed test for each version of Python checked is the new implementation and the second is the old implementation. $ ./speed.sh int2bytes speed test python2.5 1000 loops, best of 3: 315 usec per loop 100 loops, best of 3: 4.87 msec per loop python2.6 10000 loops, best of 3: 170 usec per loop 100 loops, best of 3: 3.34 msec per loop python2.7 10000 loops, best of 3: 169 usec per loop 100 loops, best of 3: 2.8 msec per loop python3.2 10000 loops, best of 3: 169 usec per loop 100 loops, best of 3: 3.16 msec per loop
* Adds tests for int2bytes.Yesudeep Mangalapilly2011-08-111-0/+24