[pypy-svn] r78247 - in pypy/trunk/pypy/module: _winreg bz2

arigo at codespeak.net arigo at codespeak.net
Sun Oct 24 14:35:45 CEST 2010


Author: arigo
Date: Sun Oct 24 14:35:44 2010
New Revision: 78247

Modified:
   pypy/trunk/pypy/module/_winreg/interp_winreg.py
   pypy/trunk/pypy/module/bz2/interp_bz2.py
Log:
More with_statements.


Modified: pypy/trunk/pypy/module/_winreg/interp_winreg.py
==============================================================================
--- pypy/trunk/pypy/module/_winreg/interp_winreg.py	(original)
+++ pypy/trunk/pypy/module/_winreg/interp_winreg.py	Sun Oct 24 14:35:44 2010
@@ -1,3 +1,4 @@
+from __future__ import with_statement
 from pypy.interpreter.baseobjspace import Wrappable
 from pypy.interpreter.baseobjspace import ObjSpace, W_Root
 from pypy.interpreter.gateway import interp2app

Modified: pypy/trunk/pypy/module/bz2/interp_bz2.py
==============================================================================
--- pypy/trunk/pypy/module/bz2/interp_bz2.py	(original)
+++ pypy/trunk/pypy/module/bz2/interp_bz2.py	Sun Oct 24 14:35:44 2010
@@ -1,3 +1,4 @@
+from __future__ import with_statement
 from pypy.rpython.tool import rffi_platform as platform
 from pypy.rpython.lltypesystem import rffi
 from pypy.rpython.lltypesystem import lltype



More information about the Pypy-commit mailing list