Trying to cut things short, there's one thing I'd like to correct: On Thu, Feb 3, 2022 at 9:15 AM Victor Stinner <vstin...@python.org> wrote:
> [...] > > Another example is that Cython currently calls PyCode_New() to create > a fake frame object with a filename and line number. IMO it's the > wrong abstraction level: Python should provide a function to create a > frame with a filename and line number, so the caller doesn't have to > bother about the complex PyCode_New() API and frequent PyCodeObject > changes. (Correct me if this problem has already been solved in > Python.) > That was solved quite a while ago, with the PyCode_NewEmpty() API. Sadly Cython doesn't call it (or at least not always), because it takes a C string which is turned into a unicode object, and Cython already has the unicode object in hand. I don't want to proliferate APIs. -- --Guido van Rossum (python.org/~guido) *Pronouns: he/him **(why is my pronoun here?)* <http://feministing.com/2015/02/03/how-using-they-as-a-singular-pronoun-can-change-the-world/>
_______________________________________________ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/python-dev@python.org/message/VRC3PHFUOKOFPHPK5THRC4A7JA6GG7ZH/ Code of Conduct: http://python.org/psf/codeofconduct/