[pypy-svn] r15240 - pypy/dist/pypy/module/__builtin__

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Jul 28 15:34:29 CEST 2005


Author: cfbolz
Date: Thu Jul 28 15:34:28 2005
New Revision: 15240

Modified:
   pypy/dist/pypy/module/__builtin__/importing.py
Log:
commented out printing at interplevel to remove SomeObjects

Modified: pypy/dist/pypy/module/__builtin__/importing.py
==============================================================================
--- pypy/dist/pypy/module/__builtin__/importing.py	(original)
+++ pypy/dist/pypy/module/__builtin__/importing.py	Thu Jul 28 15:34:28 2005
@@ -453,7 +453,7 @@
         raise OperationError(space.w_ImportError, w(
             "Bad magic number in %s" % cpathname))
     _r_long(osfile) # skip time stamp
-    print "loading pyc file:", cpathname
+    #print "loading pyc file:", cpathname
     code_w = read_compiled_module(space, cpathname, osfile)
     #if (Py_VerboseFlag)
     #    PySys_WriteStderr("import %s # precompiled from %s\n",
@@ -489,7 +489,7 @@
     try:
         w_str = space.call_method(w_marshal, 'dumps', space.wrap(co))
     except OperationError:
-        print "Problem while marshalling %s, skipping" % cpathname
+        #print "Problem while marshalling %s, skipping" % cpathname
         return
     fd = os.open(cpathname, BIN_WRITEMASK, 0666)
     osfile = OsFileWrapper(fd)



More information about the Pypy-commit mailing list