Message11081

Author stefan.richthofer
Recipients seletz, stefan.richthofer
Date 2017-02-07.17:05:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1486487111.79.0.0952037058881.issue2475@psf.upfronthosting.co.za>
In-reply-to
Content
With recent work on #2476 (https://github.com/jythontools/jython/commit/1452e07de33fd894dc4e9ddc815389f990758e83) functools.wraps is now workable. However pathlib still doesn't work; it now shows the for me the same behavior you originally describe.

TypeError: Error when calling the metaclass bases
    multiple bases have instance lay-out conflict

This is due to __slots__. You can probably fix this by guarding __slots__ in Jython case like we did (so far) in #1777, but this is tedious in pathlib case, because they use __slots__ frequently while in sympy it were only three or four occurrences.

I'll think about a better solution for the __slots__ issue.
History
Date User Action Args
2017-02-07 17:05:11stefan.richthofersetmessageid: <1486487111.79.0.0952037058881.issue2475@psf.upfronthosting.co.za>
2017-02-07 17:05:11stefan.richthofersetrecipients: + stefan.richthofer, seletz
2017-02-07 17:05:11stefan.richthoferlinkissue2475 messages
2017-02-07 17:05:11stefan.richthofercreate