[pypy-svn] r34691 - pypy/dist/pypy/module/_stackless

fijal at codespeak.net fijal at codespeak.net
Thu Nov 16 21:25:34 CET 2006


Author: fijal
Date: Thu Nov 16 21:25:32 2006
New Revision: 34691

Modified:
   pypy/dist/pypy/module/_stackless/__init__.py
Log:
Removed non-existing import

Modified: pypy/dist/pypy/module/_stackless/__init__.py
==============================================================================
--- pypy/dist/pypy/module/_stackless/__init__.py	(original)
+++ pypy/dist/pypy/module/_stackless/__init__.py	Thu Nov 16 21:25:32 2006
@@ -24,8 +24,8 @@
         # are not yet directly supported
         from pypy.module._stackless.coroutine import post_install as post_install_coro
         post_install_coro(self)
-        from pypy.module._stackless.clonable import post_install as post_install_clonable
-        post_install_clonable(self)
+        #from pypy.module._stackless.clonable import post_install as post_install_clonable
+        #post_install_clonable(self)
         from pypy.module._stackless.interp_greenlet import post_install as post_install_greenlet
         post_install_greenlet(self)
 



More information about the Pypy-commit mailing list