Skip to content

Commit

Permalink
Merge branch '0.29.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Feb 2, 2019
2 parents 2271a95 + 238605a commit 4d9a166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cython/Compiler/Code.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def load_utilities_from_file(cls, path):
(r'^%(C)s{5,30}\s*(?P<name>(?:\w|\.)+)\s*%(C)s{5,30}|'
r'^%(C)s+@(?P<tag>\w+)\s*:\s*(?P<value>(?:\w|[.:])+)') %
{'C': comment}).match
match_type = re.compile('(.+)[.](proto(?:[.]\S+)?|impl|init|cleanup)$').match
match_type = re.compile(r'(.+)[.](proto(?:[.]\S+)?|impl|init|cleanup)$').match

with closing(Utils.open_source_file(filename, encoding='UTF-8')) as f:
all_lines = f.readlines()
Expand Down

0 comments on commit 4d9a166

Please sign in to comment.