]> granicus.if.org Git - zziplib/commit
test: use Python3-compatible way to specify octal numbers
authorPatrick Steinhardt <ps@pks.im>
Wed, 22 May 2019 19:21:43 +0000 (21:21 +0200)
committerPatrick Steinhardt <ps@pks.im>
Thu, 1 Aug 2019 06:35:33 +0000 (08:35 +0200)
commitd77ed5f4bc7c837aaffc633821e3d13852fceafa
tree63ffbe4f8eb2c2321231abb27164ae589cfba1b1
parent9f1da0b0fdcf96223d5d29bdd025c215ab8ca600
test: use Python3-compatible way to specify octal numbers

Support for zero-prefixed octal numbers ("0755") has been removed in
Python 3 in favor of the zero-oh-prefix ("0o755"). As the latter has
been introduced in Python 2.6, we can safely switch all occurrences of
the former with the new way to improve compatibility with Python 3.
test/zziptests.py