On Thu, 13 Jun 2019 02:07:54 +0200 Victor Stinner <[email protected]> wrote: > > For PyCodeOptions: does it contain posonlyargcount? If not, how do you > pass posonlyargcount. I'm not sure if you plan to handle the backward > compatibility.
The idiom to use it could be: PyCodeOptions opts = PyCodeOptions_INIT; // set attributes here PyObject* code_obj = PyCode_NewEx(opts); So you can change the PyCodeOptions_INIT macro when some new fields are added. Regards Antoine. _______________________________________________ Python-Dev mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/XLXKUDDEQLCAAJL366CSXIGWK34TED5G/
