Commit 90d746dc authored by Stefan Behnel's avatar Stefan Behnel

Py2 fix

parent 55b35ade
...@@ -163,7 +163,7 @@ class UtilityCodeBase(object): ...@@ -163,7 +163,7 @@ class UtilityCodeBase(object):
if ext in ('.pyx', '.py', '.pxd', '.pxi'): if ext in ('.pyx', '.py', '.pxd', '.pxi'):
comment = '#' comment = '#'
strip_comments = partial(re.compile(r'^\s*#.*').sub, '') strip_comments = partial(re.compile(r'^\s*#.*').sub, '')
rstrip = str.rstrip rstrip = StringEncoding._unicode.rstrip
else: else:
comment = '/' comment = '/'
strip_comments = partial(re.compile(r'^\s*//.*|/\*[^*]*\*/').sub, '') strip_comments = partial(re.compile(r'^\s*//.*|/\*[^*]*\*/').sub, '')
......
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