Commit b9c04db6 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #23330: h2py now supports arbitrary filenames in #include.

parent 122f4b1b
...@@ -254,8 +254,11 @@ Documentation ...@@ -254,8 +254,11 @@ Documentation
Tools/Demos Tools/Demos
----------- -----------
- Issue #23330: h2py now supports arbitrary filenames in #include.
- Issue #24031: make patchcheck now supports git checkouts, too. - Issue #24031: make patchcheck now supports git checkouts, too.
What's New in Python 3.4.3? What's New in Python 3.4.3?
=========================== ===========================
......
...@@ -29,7 +29,7 @@ p_macro = re.compile( ...@@ -29,7 +29,7 @@ p_macro = re.compile(
'^[\t ]*#[\t ]*define[\t ]+' '^[\t ]*#[\t ]*define[\t ]+'
'([a-zA-Z0-9_]+)\(([_a-zA-Z][_a-zA-Z0-9]*)\)[\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_comment = re.compile(r'/\*([^*]+|\*+[^/])*(\*+/)?')
p_cpp_comment = re.compile('//.*') p_cpp_comment = re.compile('//.*')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment