[pypy-svn] r68842 - pypy/branch/logging/pypy/rlib

fijal at codespeak.net fijal at codespeak.net
Thu Oct 29 11:55:52 CET 2009


Author: fijal
Date: Thu Oct 29 11:55:51 2009
New Revision: 68842

Modified:
   pypy/branch/logging/pypy/rlib/rlog.py
Log:
typo, I think I can see what is armin thinking about :)


Modified: pypy/branch/logging/pypy/rlib/rlog.py
==============================================================================
--- pypy/branch/logging/pypy/rlib/rlog.py	(original)
+++ pypy/branch/logging/pypy/rlib/rlog.py	Thu Oct 29 11:55:51 2009
@@ -12,7 +12,7 @@
 
 
 def has_log():
-    """Check if logging is enabled.  If translated with --no-rjit, this
+    """Check if logging is enabled.  If translated with --no-rlog, this
     returns the constant False.  Otherwise, it returns True or False
     depending on the presence of the PYPYLOG env var.  (Note that the
     debug_log() function also checks has_log() by itself, so it's only
@@ -21,7 +21,7 @@
     return True
 
 def debug_log(_category, _message, **_kwds):
-    """Logging main function.  If translated with --no-rjit, all calls to
+    """Logging main function.  If translated with --no-rlog, all calls to
     this function are ignored.  Otherwise, if the PYPYLOG env var is set,
     it records an entry in the log.  Arguments:
 



More information about the Pypy-commit mailing list