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 shihai1991
Recipients shihai1991
Date 2019-10-28.15:08:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1572275310.19.0.141379413528.issue38618@roundup.psfhosted.org>
In-reply-to
Content
I don't know why don't use refcount
`
/* borrowed reference */
c.c_filename = filename;
`
in https://github.com/python/cpython/blob/master/Python/ast.c#L786-L787

like
`
Py_INCREF(filename);
c.c_filename = filename;
`
in https://github.com/python/cpython/blob/master/Python/compile.c#L333
History
Date User Action Args
2019-10-28 15:08:30shihai1991setrecipients: + shihai1991
2019-10-28 15:08:30shihai1991setmessageid: <1572275310.19.0.141379413528.issue38618@roundup.psfhosted.org>
2019-10-28 15:08:30shihai1991linkissue38618 messages
2019-10-28 15:08:29shihai1991create