mirror of https://github.com/python/cpython
Browse Source
Importing unicodedata in sre_parse leads to failure in compilation.
unicodedata is unused during compilation, and is not compiled when this
file is imported. The error occurs when generating posix variables,
pprint is required. The dependency chain goes on like this:
sysconfig -> pprint -> re -> sre_compile -> sre_parse (this file)
This commits fixes compilation issues introduced by
2272cec13b.
(Issue 30688, GH-5588)
pull/5595/merge
committed by
Serhiy Storchaka
1 changed files with 2 additions and 1 deletions
Loading…
Reference in new issue