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 ocean-city, vstinner
Date 2009-04-02.11:17:39
SpamBayes Score 4.0787089e-07
Marked as misclassified No
Message-id <1238671064.13.0.0771044975788.issue5666@psf.upfronthosting.co.za>
In-reply-to
Content
Let's try grep on py3k:
 grep 'Py_BuildValue("[^"]*c' $(find -name "*.c")

Py_BuildValue("c") is used for:
 - mmap.read_byte() result
 - <curses window>.getkey() result: this method returns also unicode 
string => your patch breaks getkey()!
 - array.__reduce__(): i don't understand if the patch breaks anything

I think that curses and array should use "C" format, but... it doesn't 
exist for Py_BuildValue. It was maybe forgotten.
History
Date User Action Args
2009-04-02 11:17:44vstinnersetrecipients: + vstinner, ocean-city
2009-04-02 11:17:44vstinnersetmessageid: <1238671064.13.0.0771044975788.issue5666@psf.upfronthosting.co.za>
2009-04-02 11:17:40vstinnerlinkissue5666 messages
2009-04-02 11:17:39vstinnercreate