Author: Benjamin Peterson <[email protected]> Branch: Changeset: r44938:7aedafa574f1 Date: 2011-06-14 08:41 -0500 http://bitbucket.org/pypy/pypy/changeset/7aedafa574f1/
Log: fix for 2.5 diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py --- a/pypy/module/_ssl/interp_ssl.py +++ b/pypy/module/_ssl/interp_ssl.py @@ -1,3 +1,4 @@ +from __future__ import with_statement from pypy.rpython.lltypesystem import rffi, lltype from pypy.interpreter.error import OperationError from pypy.interpreter.baseobjspace import W_Root, ObjSpace, Wrappable _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
