[pypy-svn] r15336 - pypy/dist/pypy/objspace/std

pedronis at codespeak.net pedronis at codespeak.net
Fri Jul 29 13:22:42 CEST 2005


Author: pedronis
Date: Fri Jul 29 13:22:41 2005
New Revision: 15336

Modified:
   pypy/dist/pypy/objspace/std/objspace.py
Log:
commented out template for to be introduced marshal_w space multi method



Modified: pypy/dist/pypy/objspace/std/objspace.py
==============================================================================
--- pypy/dist/pypy/objspace/std/objspace.py	(original)
+++ pypy/dist/pypy/objspace/std/objspace.py	Fri Jul 29 13:22:41 2005
@@ -441,6 +441,7 @@
         str_w   = MultiMethod('str_w', 1, [])     # returns an unwrapped string
         float_w = MultiMethod('float_w', 1, [])   # returns an unwrapped float
         uint_w  = MultiMethod('uint_w', 1, [])    # returns an unwrapped unsigned int (r_uint)
+        #marshal_w = MultiMethod('marshal_w', 1, [], extra_args=['foo'])
 
         # add all regular multimethods here
         for _name, _symbol, _arity, _specialnames in ObjSpace.MethodTable:



More information about the Pypy-commit mailing list