[issue27914] Incorrect comment in PyModule_ExcDef

2016-09-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Good catch! -- nosy: +serhiy.storchaka resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.7 -Python 3.5 ___ Python tracker _

[issue27914] Incorrect comment in PyModule_ExcDef

2016-09-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2cf16c627c17 by Serhiy Storchaka in branch '3.6': Issue #27914: Fixed a comment in PyModule_ExcDef. https://hg.python.org/cpython/rev/2cf16c627c17 New changeset a944b08d1ac7 by Serhiy Storchaka in branch 'default': Issue #27914: Fixed a comment in P

[issue27914] Incorrect comment in PyModule_ExcDef

2016-08-31 Thread Xiang Zhang
New submission from Xiang Zhang: There is a comment in PyModule_ExcDef: /* handled in PyModule_CreateFromSlots */ But there seems never exists PyModule_CreateFromSlots, I think PyModule_CreateFromSlots should be PyModule_FromDefAndSpec2. -- files: PyModule_ExcDef_comment.patch key