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 ammar2, benjamin.peterson, methane, petdance, serhiy.storchaka, vstinner
Date 2020-06-01.17:24:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1591032289.1.0.27607487777.issue39943@roundup.psfhosted.org>
In-reply-to
Content
If someone is interested, there is a one remaining compiler warning in frameobject.c which is likely easy to fix:

D:\a\cpython\cpython\Objects\frameobject.c(400,1): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data [D:\a\cpython\cpython\PCbuild\pythoncore.vcxproj]

See https://bugs.python.org/issue40228#msg368383

---

Moreover, the following change introduced a warning in pythonrun.c:

D:\a\cpython\cpython\Python\pythonrun.c(579,21): warning C4244: '=': conversion from 'Py_ssize_t' to 'int', possible loss of data [D:\a\cpython\cpython\PCbuild\pythoncore.vcxproj]

commit 15bc9ab301d73f20bff47a12ef05326feb40f797
Author: Guido van Rossum <guido@python.org>
Date:   Thu May 14 19:22:48 2020 -0700

    bpo-40612: Fix SyntaxError edge cases in traceback formatting (GH-20072)
History
Date User Action Args
2020-06-01 17:24:49vstinnersetrecipients: + vstinner, benjamin.peterson, methane, serhiy.storchaka, ammar2, petdance
2020-06-01 17:24:49vstinnersetmessageid: <1591032289.1.0.27607487777.issue39943@roundup.psfhosted.org>
2020-06-01 17:24:49vstinnerlinkissue39943 messages
2020-06-01 17:24:48vstinnercreate