[pypy-svn] r73838 - pypy/trunk/pypy/module/sys
benjamin at codespeak.net
benjamin at codespeak.net
Sat Apr 17 20:58:02 CEST 2010
Author: benjamin
Date: Sat Apr 17 20:58:01 2010
New Revision: 73838
Modified:
pypy/trunk/pypy/module/sys/__init__.py
Log:
use startup() over init()
Modified: pypy/trunk/pypy/module/sys/__init__.py
==============================================================================
--- pypy/trunk/pypy/module/sys/__init__.py (original)
+++ pypy/trunk/pypy/module/sys/__init__.py Sat Apr 17 20:58:01 2010
@@ -87,7 +87,7 @@
w_modules = self.get('modules')
self.space.setitem(w_modules, w_name, w_module)
- def init(self, space):
+ def startup(self, space):
self.filesystemencoding = _getfilesystemencoding(space)
def getmodule(self, name):
More information about the Pypy-commit
mailing list