Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/stdnum/iso6346.py
Commit message (Collapse)AuthorAgeFilesLines
* Switch from import-order to isortArthur de Jong2019-03-031-2/+1
|
* Docstring improvementsArthur de Jong2017-09-111-1/+1
|
* Switch to HTTPS URLsArthur de Jong2017-04-131-2/+2
|
* Add formatting of ISO 6346 container codesArthur de Jong2016-07-261-1/+9
|
* Add pointer to ISO 6346 informationArthur de Jong2016-07-261-0/+4
|
* Fix for when ISO 6346 checksum is 10Ronald Paloschi2015-10-161-1/+1
| | | | | | | Bug fix for when the checksum is 10, it was compared to 0 and failed. New doctest exposing the bug that passes after the fix is applied. See: https://github.com/arthurdejong/python-stdnum/pull/30
* Code style improvementsArthur de Jong2015-10-111-1/+1
| | | | | | | Ensure that regular expressions are r'' strings, avoid too long lines and fix line wrapping. Also avoid catching toplevel Exception when possible and use binascii for hex to binary conversion which is available in both Python 2 and 3.
* Remove unused importArthur de Jong2014-10-191-1/+0
|
* Add support for ISO6346Sharoon Thomas2014-03-181-0/+84
Add validation and creation of check digit for ISO6346 codes. See: https://github.com/arthurdejong/python-stdnum/pull/9