Author: Armin Rigo <[email protected]> Branch: stm Changeset: r51991:cbf4aa8ac66e Date: 2012-01-31 15:59 +0100 http://bitbucket.org/pypy/pypy/changeset/cbf4aa8ac66e/
Log: Python 2.5 compat. diff --git a/pypy/module/transaction/interp_epoll.py b/pypy/module/transaction/interp_epoll.py --- a/pypy/module/transaction/interp_epoll.py +++ b/pypy/module/transaction/interp_epoll.py @@ -1,8 +1,8 @@ # Linux-only +from __future__ import with_statement import os -from select import EPOLLIN from pypy.rpython.lltypesystem import lltype, rffi from pypy.interpreter.gateway import unwrap_spec from pypy.interpreter.error import OperationError _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
