Brett Cannon added the comment:

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).

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue27736>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to