Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 122f4b1 commit b9c04dbCopy full SHA for b9c04db
2 files changed
Misc/NEWS
@@ -254,8 +254,11 @@ Documentation
254
Tools/Demos
255
-----------
256
257
+- Issue #23330: h2py now supports arbitrary filenames in #include.
258
+
259
- Issue #24031: make patchcheck now supports git checkouts, too.
260
261
262
What's New in Python 3.4.3?
263
===========================
264
Tools/scripts/h2py.py
@@ -29,7 +29,7 @@
29
'^[\t ]*#[\t ]*define[\t ]+'
30
'([a-zA-Z0-9_]+)\(([_a-zA-Z][_a-zA-Z0-9]*)\)[\t ]+')
31
32
-p_include = re.compile('^[\t ]*#[\t ]*include[\t ]+<([a-zA-Z0-9_/\.]+)')
+p_include = re.compile('^[\t ]*#[\t ]*include[\t ]+<([^>\n]+)>')
33
34
p_comment = re.compile(r'/\*([^*]+|\*+[^/])*(\*+/)?')
35
p_cpp_comment = re.compile('//.*')
0 commit comments