Message105315
| Author |
stutzbach |
| Recipients |
gvanrossum, lemburg, loewis, r.david.murray, scoder, stutzbach, vstinner, zooko |
| Date |
2010年05月08日.16:47:27 |
| SpamBayes Score |
0.00082363316 |
| Marked as misclassified |
No |
| Message-id |
<q2reae285401005080947qcbc2b3f0x55d1ae7559fe8d66@mail.gmail.com> |
| In-reply-to |
<4BE592D4.9030807@egenix.com> |
| Content |
On Sat, May 8, 2010 at 11:35 AM, Marc-Andre Lemburg
<report@bugs.python.org> wrote:
> One of the more important cases you are missing is the
> argument parser in Python:
Thanks. I've had my head buried in c-api/unicode.html and unicodeobject.h.
> Py_UNICODE *x;
> Py_ssize_t y;
> PyArg_ParseTuple(args, "u#", &x, &y);
My plan is to not define Py_UNICODE in Unicode-agnostic mode, to
prevent that from compiling. |
|