This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author brett.cannon
Recipients JelleZijlstra, brett.cannon, ned.deily, smcv
Date 2016-08-12.21:01:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1471035678.68.0.561125929581.issue27736@psf.upfronthosting.co.za>
In-reply-to
Content
The revision that Ned found only changed posixmodule.c by adding PyModule_AddObject(m, "DirEntry", (PyObject *)&DirEntryType); at the end of the module initializer. Only thing I can think of is it needs to go into the `if (!initialized)` block: https://github.com/python/cpython/blob/11b48001fb8d908f6db164e9d2233e911f22d4f4/Modules/posixmodule.c#L13214 (maybe as an else clause for the PyType_Ready() call at https://github.com/python/cpython/blob/11b48001fb8d908f6db164e9d2233e911f22d4f4/Modules/posixmodule.c#L13259).
History
Date User Action Args
2016-08-12 21:01:18brett.cannonsetrecipients: + brett.cannon, ned.deily, JelleZijlstra, smcv
2016-08-12 21:01:18brett.cannonsetmessageid: <1471035678.68.0.561125929581.issue27736@psf.upfronthosting.co.za>
2016-08-12 21:01:18brett.cannonlinkissue27736 messages
2016-08-12 21:01:18brett.cannoncreate