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 benjamin.peterson, serhiy.storchaka, vstinner
Date 2013-11-19.21:24:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1384896277.93.0.841154897503.issue19617@psf.upfronthosting.co.za>
In-reply-to
Content
Oops, I forgot to mention this issue number in the commit:
---
changeset:   87277:68fd86a83ece
tag:         tip
user:        Victor Stinner <victor.stinner@gmail.com>
date:        Tue Nov 19 22:23:20 2013 +0100
files:       Python/compile.c
description:
Issue #9566: compile.c uses Py_ssize_t instead of int to store sizes to fix
compiler warnings on Windows 64-bit. Use Py_SAFE_DOWNCAST() where the final
downcast is needed.

The bytecode doesn't support integer parameters larger than 32-bit yet.
---

I added some more Py_SAFE_DOWNCAST() in the final commit.
History
Date User Action Args
2013-11-19 21:24:37vstinnersetrecipients: + vstinner, benjamin.peterson, serhiy.storchaka
2013-11-19 21:24:37vstinnersetmessageid: <1384896277.93.0.841154897503.issue19617@psf.upfronthosting.co.za>
2013-11-19 21:24:37vstinnerlinkissue19617 messages
2013-11-19 21:24:37vstinnercreate