Skip to content
Snippets Groups Projects

Python3

Merged Tanner Prestegard requested to merge python3 into master
3 files
+ 7
7
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 1
1
@@ -19,7 +19,7 @@ def int_to_letters(num, positive_only=True):
"""
# Argument checking
if not isinstance(num, (int, long)):
if not isinstance(num, int):
# Coerce to int
logger.warning('Coercing argument of type {0} to int'.format(
type(num)))
Loading