]> gitweb.michael.orlitzky.com - dead/census-tools.git/blob - src/StringUtils.py
Added the StringUtils module with the is_integer() function.
[dead/census-tools.git] / src / StringUtils.py
1 def is_integer(s):
2 try:
3 x = int(s)
4 return True
5 except:
6 return False
7