summaryrefslogtreecommitdiffstats
path: root/Lib/_strptime.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2003-04-28 21:30:13 (GMT)
committerBrett Cannon <bcannon@gmail.com>2003-04-28 21:30:13 (GMT)
commit2b6dfec1cccee1d9aa91d986cebcaa5d651438c7 (patch)
treef951ba26284e546c16d791a33507165a87194927 /Lib/_strptime.py
parenta390c6e194a7a7787aa0dfee0ac6628e542add54 (diff)
downloadcpython-2b6dfec1cccee1d9aa91d986cebcaa5d651438c7.zip
cpython-2b6dfec1cccee1d9aa91d986cebcaa5d651438c7.tar.gz
cpython-2b6dfec1cccee1d9aa91d986cebcaa5d651438c7.tar.bz2
Raise a ValueError when there is data that was not covered in the format string. Done to match behavior of pre-existing C-based strptime implementations.
Diffstat (limited to 'Lib/_strptime.py')
-rw-r--r--Lib/_strptime.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/_strptime.py b/Lib/_strptime.py
index 81c105f..4b7a7dd 100644
--- a/Lib/_strptime.py
+++ b/Lib/_strptime.py
@@ -423,6 +423,9 @@ def strptime(data_string, format="%a %b %d %H:%M:%S %Y"):
found = format_regex.match(data_string)
if not found:
raise ValueError("time data did not match format")
+ if len(data_string) != found.end():
+ raise ValueError("unconverted data remains: %s" %
+ data_string[found.end():])
year = 1900
month = day = 1
hour = minute = second = 0