summaryrefslogtreecommitdiff
path: root/tests/test_wiredata.py
Commit message (Collapse)AuthorAgeFilesLines
* remove bytearray() wrapping used for python 2 compatibilityBob Halley2019-01-051-2/+2
|
* Initial type signaturesJanus2018-07-311-4/+1
|
* Py3: remove __getslice__ methodMartin Basti2016-08-051-0/+126
__getslice__ is deprecated in py2 and it is not used in py3 at all. Instead of this __getitem__ with slice() index should be used. Please note that WireData class must still use __getslice__, because it inherites from 'binary_type' class that has implemented __getslice__ thus this method has to be overriden in WireData class.