[pypy-svn] r66420 - pypy/branch/parser-compiler/pypy/module/parser

benjamin at codespeak.net benjamin at codespeak.net
Mon Jul 20 00:25:10 CEST 2009


Author: benjamin
Date: Mon Jul 20 00:25:09 2009
New Revision: 66420

Modified:
   pypy/branch/parser-compiler/pypy/module/parser/__init__.py
Log:
add ParserError exception which isn't actually used for anything

Modified: pypy/branch/parser-compiler/pypy/module/parser/__init__.py
==============================================================================
--- pypy/branch/parser-compiler/pypy/module/parser/__init__.py	(original)
+++ pypy/branch/parser-compiler/pypy/module/parser/__init__.py	Mon Jul 20 00:25:09 2009
@@ -6,7 +6,9 @@
 
      applevel_name = 'parser'
 
-     appleveldefs = {}
+     appleveldefs = {
+         'ParserError' : 'app_helpers.ParserError'
+         }
 
      interpleveldefs = {
          '__name__'     : '(space.wrap("parser"))',



More information about the Pypy-commit mailing list