Message952

Author nobody
Recipients
Date 2005-02-26.22:17:26
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
When getting an object's __dict__, the type() of the  
dictionary object returns PyStringMap. This causes a  
problem because types.DictType does not match  
PyStringMap. Some existing Marshallers (in my case,  
xmlrpclib) expect an Instance's __dict__ to be a DictType  
when marshalling an Instance (such as an Exception).  
  
It looks like types.DictType should match  
org.python.core.PyStringMap. When getting the __dict__  
of an Instance in CPython, it returns a type of DictType.  
  
-Steve 
leonexis@nuleo.org 
History
Date User Action Args
2008-02-20 17:17:21adminlinkissue1152612 messages
2008-02-20 17:17:21admincreate