Message1393

Author leouserz
Recipients
Date 2007-01-18.19:38:30
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
There are 6 types that are reporting the wrong type name:
BuiltinFunctionType wrong, is <type 'reflectedfunction'>, should be <type 'builtin_function_or_method'>
BuiltinMethodType wrong, is <type 'method'>, should be <type 'builtin_function_or_method'>
MethodType wrong, is <type 'method'>, should be <type 'instance method'>
TypeType wrong, is <type 'javaclass'>, should be <type 'type'>
UnboundMethodType wrong, is <type 'method'>, should be <type 'instance method'>
UnicodeType wrong, is <type 'str'>, should be <type 'unicode'>

The diffs are compared against a dict that has been produced by getting the types from the types module.

These types appear to be missing:
'DictProxyType': "<type 'dict-proxy'>" 
'BufferType': "<type 'buffer'>" 
'ObjectType': "<type 'object'>"

leouser

History
Date User Action Args
2008-02-20 17:17:40adminlinkissue1638904 messages
2008-02-20 17:17:40admincreate