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:18 | brett.cannon | set | recipients: + brett.cannon, ned.deily, JelleZijlstra, smcv |
| 2016年08月12日 21:01:18 | brett.cannon | set | messageid: <1471035678.68.0.561125929581.issue27736@psf.upfronthosting.co.za> |
| 2016年08月12日 21:01:18 | brett.cannon | link | issue27736 messages |
| 2016年08月12日 21:01:18 | brett.cannon | create | |