[pypy-svn] r10292 - pypy/dist/pypy/translator/llvm

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Apr 4 17:32:03 CEST 2005


Author: cfbolz
Date: Mon Apr  4 17:32:03 2005
New Revision: 10292

Modified:
   pypy/dist/pypy/translator/llvm/classrepr.py
Log:
Removed debug print.

Modified: pypy/dist/pypy/translator/llvm/classrepr.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/classrepr.py	(original)
+++ pypy/dist/pypy/translator/llvm/classrepr.py	Mon Apr  4 17:32:03 2005
@@ -203,7 +203,6 @@
 def create_builtin_exceptions(gen, dependencies):
     import exceptions
     for exc in dir(exceptions):
-        print exc, "#############"
         if "__" not in exc:
             l_exc = gen.get_repr(getattr(exceptions, exc))
             dependencies.add(l_exc)



More information about the Pypy-commit mailing list