[pypy-svn] r17427 - pypy/dist/pypy/interpreter/pyparser

ludal at codespeak.net ludal at codespeak.net
Fri Sep 9 19:31:44 CEST 2005


Author: ludal
Date: Fri Sep  9 19:31:43 2005
New Revision: 17427

Modified:
   pypy/dist/pypy/interpreter/pyparser/astbuilder.py
Log:
 oopsee : revert a wannabe change that shouldn't have been checked in


Modified: pypy/dist/pypy/interpreter/pyparser/astbuilder.py
==============================================================================
--- pypy/dist/pypy/interpreter/pyparser/astbuilder.py	(original)
+++ pypy/dist/pypy/interpreter/pyparser/astbuilder.py	Fri Sep  9 19:31:43 2005
@@ -967,7 +967,7 @@
     l = len(atoms)
     classname_token = atoms[1]
     assert isinstance(classname_token, TokenObject)
-    classname = classname_token.get_string()
+    classname = classname_token.get_value()
     if l == 4:
         basenames = []
         body = atoms[3]



More information about the Pypy-commit mailing list