Issue #17768: Support newline fill character in decimal.py and NUL fill

character in _decimal.c.
This commit is contained in:
Stefan Krah 2013-05-29 15:45:38 +02:00
parent c70a6ae49b
commit 6edda14b29
5 changed files with 64 additions and 16 deletions

View file

@ -6140,7 +6140,7 @@ _parse_format_specifier_regex = re.compile(r"""\A
(?:\.(?P<precision>0|(?!0)\d+))?
(?P<type>[eEfFgGn%])?
\Z
""", re.VERBOSE)
""", re.VERBOSE|re.DOTALL)
del re