diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-03 12:36:37 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-03 12:36:37 (GMT) |
commit | d2a694c1bef8ead810c5973ca806a6e63f7ebd4c (patch) | |
tree | dadf33fbb11914faae44c4fc8fbc0c36bed8f6bf | |
parent | 24559e483400073c6ae1446c0ac2a7990c755f02 (diff) | |
parent | b9c04db64fd0315a30c4360d7ad33b975d5fbfc1 (diff) | |
download | cpython-d2a694c1bef8ead810c5973ca806a6e63f7ebd4c.zip cpython-d2a694c1bef8ead810c5973ca806a6e63f7ebd4c.tar.gz cpython-d2a694c1bef8ead810c5973ca806a6e63f7ebd4c.tar.bz2 |
Issue #23330: h2py now supports arbitrary filenames in #include.
-rw-r--r-- | Misc/NEWS | 3 | ||||
-rwxr-xr-x | Tools/scripts/h2py.py | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -65,8 +65,11 @@ Documentation Tools/Demos ----------- +- Issue #23330: h2py now supports arbitrary filenames in #include. + - Issue #24031: make patchcheck now supports git checkouts, too. + What's New in Python 3.5.0 alpha 4? =================================== diff --git a/Tools/scripts/h2py.py b/Tools/scripts/h2py.py index 4f871d9..0967fc2 100755 --- a/Tools/scripts/h2py.py +++ b/Tools/scripts/h2py.py @@ -29,7 +29,7 @@ p_macro = re.compile( '^[\t ]*#[\t ]*define[\t ]+' '([a-zA-Z0-9_]+)\(([_a-zA-Z][_a-zA-Z0-9]*)\)[\t ]+') -p_include = re.compile('^[\t ]*#[\t ]*include[\t ]+<([a-zA-Z0-9_/\.]+)') +p_include = re.compile('^[\t ]*#[\t ]*include[\t ]+<([^>\n]+)>') p_comment = re.compile(r'/\*([^*]+|\*+[^/])*(\*+/)?') p_cpp_comment = re.compile('//.*') |