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 vstinner
Recipients Robin.Schreiber, vstinner
Date 2020-06-22.09:23:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1592817830.86.0.702773639994.issue15691@roundup.psfhosted.org>
In-reply-to
Content
Fixed by:

commit 1c2fa781560608aa4be50c748d4b3f403cfa5035
Author: Victor Stinner <vstinner@python.org>
Date:   Sun May 10 11:05:29 2020 +0200

    bpo-40549: Convert posixmodule.c to multiphase init (GH-19982)
    
    Convert posixmodule.c ("posix" or "nt" module) to the multiphase
    initialization (PEP 489).
    
    * Create the module using PyModuleDef_Init().
    * Create ScandirIteratorType and DirEntryType with the new
      PyType_FromModuleAndSpec() (PEP 573)
    * Get the module state from ScandirIteratorType and DirEntryType with
      the new PyType_GetModule() (PEP 573)
    * Pass module to functions which access the module state.
    * convert_sched_param() gets a new module parameter. It is now called
      directly since Argument Clinic doesn't support passing the module
      to an argument converter callback.
    * Remove _posixstate_global macro.
History
Date User Action Args
2020-06-22 09:23:50vstinnersetrecipients: + vstinner, Robin.Schreiber
2020-06-22 09:23:50vstinnersetmessageid: <1592817830.86.0.702773639994.issue15691@roundup.psfhosted.org>
2020-06-22 09:23:50vstinnerlinkissue15691 messages
2020-06-22 09:23:50vstinnercreate