diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-24 16:17:11 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-24 16:17:11 (GMT) |
commit | b5d386314fc9f66f9f69399da9b32bf0b6504033 (patch) | |
tree | 7dba719b73fe92f52645bbee8da63652f9f207e6 /Lib/_strptime.py | |
parent | 4d01c4b6bbb7b35edd8cd4f4577e2c97cba8b9fa (diff) | |
parent | cdac302af362f275f31c13e143f78ec682ef7b68 (diff) | |
download | cpython-b5d386314fc9f66f9f69399da9b32bf0b6504033.zip cpython-b5d386314fc9f66f9f69399da9b32bf0b6504033.tar.gz cpython-b5d386314fc9f66f9f69399da9b32bf0b6504033.tar.bz2 |
Issue #19545: Avoid chained exceptions while passing stray % 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 3884a67..d101c6d 100644 --- a/Lib/_strptime.py +++ b/Lib/_strptime.py @@ -329,7 +329,7 @@ def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"): (bad_directive, format)) from None # IndexError only occurs when the format string is "%" except IndexError: - raise ValueError("stray %% in format '%s'" % format) + raise ValueError("stray %% in format '%s'" % format) from None _regex_cache[format] = format_regex found = format_regex.match(data_string) if not found: |