diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-03 23:09:20 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-03 23:09:20 (GMT) |
commit | 0f38908684505905fd0890f4effbe6f683b39954 (patch) | |
tree | b38d916a07ecd6e6cefd10ccb0fea619f0e2d172 /Lib/_strptime.py | |
parent | a99e1711f7899fa49dfde4cd6b7514ad172ddff2 (diff) | |
download | cpython-0f38908684505905fd0890f4effbe6f683b39954.zip cpython-0f38908684505905fd0890f4effbe6f683b39954.tar.gz cpython-0f38908684505905fd0890f4effbe6f683b39954.tar.bz2 |
#17572: Avoid chained exceptions while passing bad directives to time.strptime(). Initial patch by Claudiu Popa.
Diffstat (limited to 'Lib/_strptime.py')
-rw-r--r-- | Lib/_strptime.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_strptime.py b/Lib/_strptime.py index b0cd3d6..b089b08 100644 --- a/Lib/_strptime.py +++ b/Lib/_strptime.py @@ -326,7 +326,7 @@ def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"): bad_directive = "%" del err raise ValueError("'%s' is a bad directive in format '%s'" % - (bad_directive, format)) + (bad_directive, format)) from None # IndexError only occurs when the format string is "%" except IndexError: raise ValueError("stray %% in format '%s'" % format) |