Commit b9c47cfc authored by Stefan Behnel's avatar Stefan Behnel

remove unnecessary re-wrapping of identifier name in parser

parent 2dbbe5a2
......@@ -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)
......
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