[pypy-svn] r45105 - pypy/dist/pypy/lang/scheme

mwh at codespeak.net mwh at codespeak.net
Sun Jul 15 15:13:05 CEST 2007


Author: mwh
Date: Sun Jul 15 15:13:04 2007
New Revision: 45105

Modified:
   pypy/dist/pypy/lang/scheme/object.py
Log:
a XXX/todo

Modified: pypy/dist/pypy/lang/scheme/object.py
==============================================================================
--- pypy/dist/pypy/lang/scheme/object.py	(original)
+++ pypy/dist/pypy/lang/scheme/object.py	Sun Jul 15 15:13:04 2007
@@ -170,6 +170,7 @@
         self.cdr = cdr
 
     def to_string(self):
+        # XXX This should do things differently if (list? self).
         car = self.car.to_string()
         cdr = self.cdr.to_string()
         return "(" + car + " . " + cdr + ")"



More information about the Pypy-commit mailing list