[pypy-svn] r13772 - pypy/dist/pypy/rpython

hpk at codespeak.net hpk at codespeak.net
Fri Jun 24 13:05:11 CEST 2005


Author: hpk
Date: Fri Jun 24 13:05:08 2005
New Revision: 13772

Modified:
   pypy/dist/pypy/rpython/lltype.py
Log:
shorten representation for functions from 'func' to 'fn' 



Modified: pypy/dist/pypy/rpython/lltype.py
==============================================================================
--- pypy/dist/pypy/rpython/lltype.py	(original)
+++ pypy/dist/pypy/rpython/lltype.py	Fri Jun 24 13:05:08 2005
@@ -679,7 +679,7 @@
         return '<%s>' % (self,)
 
     def __str__(self):
-        return "func %s" % self._name
+        return "fn %s" % self._name
 
     def __eq__(self, other):
         return (self.__class__ is other.__class__ and



More information about the Pypy-commit mailing list