Lib.test.bugs.pr134.py Maven / Gradle / Ivy
# test for PR#134 -- int('') and long('') should raise ValueErrors
for func in (int, long, float):
try:
func('')
except ValueError:
pass
else:
print 'function', func, 'with empty input should raise ValueError'
© 2015 - 2025 Weber Informatics LLC | Privacy Policy