[pypy-svn] r17383 - pypy/dist/pypy/interpreter/astcompiler

pedronis at codespeak.net pedronis at codespeak.net
Thu Sep 8 18:40:50 CEST 2005


Author: pedronis
Date: Thu Sep  8 18:40:49 2005
New Revision: 17383

Modified:
   pypy/dist/pypy/interpreter/astcompiler/ast.py
   pypy/dist/pypy/interpreter/astcompiler/astgen.py
Log:
oopsy oops



Modified: pypy/dist/pypy/interpreter/astcompiler/ast.py
==============================================================================
--- pypy/dist/pypy/interpreter/astcompiler/ast.py	(original)
+++ pypy/dist/pypy/interpreter/astcompiler/ast.py	Thu Sep  8 18:40:49 2005
@@ -37,7 +37,7 @@
     def getChildNodes(self):
         return [] # implemented by subclasses
     def accept(self, visitor):
-        raise NotImplentedError
+        raise NotImplementedError
     def flatten(self):
         res = []
         nodes = self.getChildNodes()

Modified: pypy/dist/pypy/interpreter/astcompiler/astgen.py
==============================================================================
--- pypy/dist/pypy/interpreter/astcompiler/astgen.py	(original)
+++ pypy/dist/pypy/interpreter/astcompiler/astgen.py	Thu Sep  8 18:40:49 2005
@@ -374,7 +374,7 @@
     def getChildNodes(self):
         return [] # implemented by subclasses
     def accept(self, visitor):
-        raise NotImplentedError
+        raise NotImplementedError
     def flatten(self):
         res = []
         nodes = self.getChildNodes()



More information about the Pypy-commit mailing list