cc-4232: fixed typo in doctest

This commit is contained in:
Rudi Grinberg 2012-08-17 15:18:40 -04:00
parent 1c865fc3f1
commit efa4b12e3a
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ def parse_int(s):
>>> parse_int("123saf")
'123'
>>> parse_int("asdf")
nothing
None
"""
if s.isdigit(): return s
else: