forgotten part of last commit
authorStefan Behnel <scoder@users.berlios.de>
Sun, 18 May 2008 23:05:36 +0000 (01:05 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 18 May 2008 23:05:36 +0000 (01:05 +0200)
Cython/Compiler/ExprNodes.py

index c2ae18b43d4a55c5a9d896265a3e695a43256665..b786bde5a3aabfd4312d360183e9cecd8131cf2a 100644 (file)
@@ -736,9 +736,9 @@ class StringNode(ConstNode):
             return self.entry.cname
 
 
-class KeywordNameNode(ConstNode):
-    # A keyword in a Python function call: a string that behaves like
-    # an identifier
+class IdentifierStringNode(ConstNode):
+    # A Python string that behaves like an identifier, e.g. for
+    # keyword arguments in a call, or for imported names
     type = PyrexTypes.py_object_type
 
     def analyse_types(self, env):
@@ -1067,8 +1067,8 @@ class ImportNode(ExprNode):
     #  Implements result = 
     #    __import__(module_name, globals(), None, name_list)
     #
-    #  module_name   StringNode         dotted name of module
-    #  name_list     ListNode or None   list of names to be imported
+    #  module_name   IdentifierStringNode     dotted name of module
+    #  name_list     ListNode or None         list of names to be imported
     
     subexprs = ['module_name', 'name_list']