commit | 3b2b34790ff86abcf87cfcfe061fd9fa8cb0ab32 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Jun 22 03:54:15 1998 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Jun 22 03:54:15 1998 +0000 |
tree | fcf7e3d2c49b3eab598a0e888acbca162379df8c | |
parent | f57736e77a40aba1278d506e05655b03b0db8596 [diff] |
Fix the tests for various anomalies in the string-to-numbers conversions. Formerly, for example, int('-') would return 0 instead of raising ValueError, and int(' 0') would raise ValueError (complaining about a null byte!) instead of 0...