Author: Alexander Hesse <[email protected]> Branch: split-rpython Changeset: r59976:599114782639 Date: 2013-01-11 21:54 +0100 http://bitbucket.org/pypy/pypy/changeset/599114782639/
Log: Fixed missing import in interp_struct diff --git a/pypy/module/struct/interp_struct.py b/pypy/module/struct/interp_struct.py --- a/pypy/module/struct/interp_struct.py +++ b/pypy/module/struct/interp_struct.py @@ -2,7 +2,7 @@ from pypy.interpreter.error import OperationError from pypy.module.struct.formatiterator import PackFormatIterator, UnpackFormatIterator from rpython.rlib import jit -from rpython.rlib.rstruct.error import StructError +from rpython.rlib.rstruct.error import StructError, StructOverflowError from rpython.rlib.rstruct.formatiterator import CalcSizeFormatIterator _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
