Fix the repr of the persistent objects to include the module name when using the C extension. This matches the pure-Python behaviour and the behaviour prior to 4.4.0.
Do so by getting the __module__ and __name__ attributes of the type, just like the Python version. Credit to @mgedmin for the suggestion.
Fix the repr of the persistent objects to include the module name when using the C extension. This matches the pure-Python behaviour and the behaviour prior to 4.4.0.
Do so by getting the
__module__
and__name__
attributes of the type, just like the Python version. Credit to @mgedmin for the suggestion.Fixes #92