[pypy-svn] r61317 - pypy/trunk/lib-python/modified-2.5.2

fijal at codespeak.net fijal at codespeak.net
Sat Jan 24 21:10:48 CET 2009


Author: fijal
Date: Sat Jan 24 21:10:44 2009
New Revision: 61317

Modified:
   pypy/trunk/lib-python/modified-2.5.2/site.py
Log:
add a copyright (why not?)


Modified: pypy/trunk/lib-python/modified-2.5.2/site.py
==============================================================================
--- pypy/trunk/lib-python/modified-2.5.2/site.py	(original)
+++ pypy/trunk/lib-python/modified-2.5.2/site.py	Sat Jan 24 21:10:44 2009
@@ -62,7 +62,6 @@
 import os
 import __builtin__
 
-
 def makepath(*paths):
     dir = os.path.abspath(os.path.join(*paths))
     return dir, os.path.normcase(dir)
@@ -309,6 +308,7 @@
 
 def setcopyright():
     # XXX this is the PyPy-specific version.  Should be unified with the above.
+    __builtin__.copyright = _Printer("copyright", sys.copyright)
     __builtin__.credits = _Printer(
         "credits",
         "PyPy is maintained by the PyPy developers: http://codespeak.net/pypy")



More information about the Pypy-commit mailing list