[pypy-commit] pypy py3.3: merging

numerodix noreply at buildbot.pypy.org
Sat Aug 2 00:40:04 CEST 2014


Author: Martin Matusiak <numerodix at gmail.com>
Branch: py3.3
Changeset: r72645:7a470162ff0e
Date: 2014-07-31 19:13 +0200
http://bitbucket.org/pypy/pypy/changeset/7a470162ff0e/

Log:	merging

diff --git a/pypy/interpreter/astcompiler/validate.py b/pypy/interpreter/astcompiler/validate.py
--- a/pypy/interpreter/astcompiler/validate.py
+++ b/pypy/interpreter/astcompiler/validate.py
@@ -11,7 +11,8 @@
 
 
 class ValidationError(Exception):
-    """Signals an invalid AST"""
+    def __init__(self, message):
+        self.message = message
 
 
 def expr_context_name(ctx):


More information about the pypy-commit mailing list