summaryrefslogtreecommitdiff
path: root/Cython/Compiler/Parsing.py
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2015-04-24 13:40:20 +0200
committerStefan Behnel <stefan_ml@behnel.de>2015-04-24 13:40:20 +0200
commitb9c47cfcaed1ba6535beedb494e92d8f6679454d (patch)
tree060149de81f7d82eb13a2630f174feaedff5dad4 /Cython/Compiler/Parsing.py
parent2dbbe5a27fd3e02cb6e560bfa5584c507bbee2c7 (diff)
downloadcython-b9c47cfcaed1ba6535beedb494e92d8f6679454d.tar.gz
remove unnecessary re-wrapping of identifier name in parser
Diffstat (limited to 'Cython/Compiler/Parsing.py')
-rw-r--r--Cython/Compiler/Parsing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Compiler/Parsing.py b/Cython/Compiler/Parsing.py
index 69d041fa9..ad65c6782 100644
--- a/Cython/Compiler/Parsing.py
+++ b/Cython/Compiler/Parsing.py
@@ -2102,7 +2102,7 @@ def p_c_simple_base_type(s, self_flag, nonempty, templates = None):
s.next()
elif looking_at_dotted_name(s):
#print "p_c_simple_base_type: looking_at_type_name at", s.position()
- name = s.context.intern_ustring(s.systring)
+ name = s.systring
s.next()
while s.sy == '.':
module_path.append(name)