Author: Alex Gaynor <[email protected]>
Branch: kill-single-impl-multimethods
Changeset: r46302:ba5ae7c35696
Date: 2011-08-05 19:21 -0700
http://bitbucket.org/pypy/pypy/changeset/ba5ae7c35696/

Log:    Fix marshalling of pycode and elippsis.

diff --git a/pypy/objspace/std/model.py b/pypy/objspace/std/model.py
--- a/pypy/objspace/std/model.py
+++ b/pypy/objspace/std/model.py
@@ -5,6 +5,8 @@
 
 from pypy.objspace.std.multimethod import MultiMethodTable, FailedToImplement
 from pypy.interpreter.baseobjspace import W_Root, ObjSpace
+from pypy.interpreter import pycode, special
+
 
 _registered_implementations = set()
 def registerimplementation(implcls):
@@ -126,6 +128,8 @@
             dictmultiobject.W_DictViewKeysObject: [],
             dictmultiobject.W_DictViewItemsObject: [],
             dictmultiobject.W_DictViewValuesObject: [],
+            pycode.PyCode: [],
+            special.Ellipsis: [],
         }
 
         self.imported_but_not_registered = {
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to