Signed-off-by: Patrick Uiterwijk patrick@puiterwijk.org
Interesting, I wasn't familiar with this syntax, but it looks good:
>>> 0o700 448 >>> 0b111000000 448
LGTM
Python2 implied that you meant octal numbers when you prefix with a 0, but python3 considers that a syntax error, because it wants you to explicitly say it's octal with "0o", just like "0x".
Commit 4f554db8 fixes this pull-request
Pull-Request has been merged by patrick@puiterwijk.org
Signed-off-by: Patrick Uiterwijk patrick@puiterwijk.org