Commit 885d4f65 authored by Jack Jansen's avatar Jack Jansen

Mod to previous checkin: we must require ascii, not system defautl encoding,

because we have no easy way to convert the python encoding string to
a CF encoding parameter.
parent d505cab5
...@@ -360,7 +360,7 @@ class CFStringRefObjectDefinition(MyGlobalObjectDefinition): ...@@ -360,7 +360,7 @@ class CFStringRefObjectDefinition(MyGlobalObjectDefinition):
if (v == Py_None) { *p_itself = NULL; return 1; } if (v == Py_None) { *p_itself = NULL; return 1; }
if (PyString_Check(v)) { if (PyString_Check(v)) {
char *cStr; char *cStr;
if (!PyArg_Parse(v, "et", "ascii", &cStr)) if (!PyArg_Parse(v, "es", "ascii", &cStr))
return NULL; return NULL;
*p_itself = CFStringCreateWithCString((CFAllocatorRef)NULL, cStr, kCFStringEncodingASCII); *p_itself = CFStringCreateWithCString((CFAllocatorRef)NULL, cStr, kCFStringEncodingASCII);
return 1; return 1;
......
...@@ -292,7 +292,7 @@ PyCF_Python2CF_string(PyObject *src, CFStringRef *dst) { ...@@ -292,7 +292,7 @@ PyCF_Python2CF_string(PyObject *src, CFStringRef *dst) {
UniChar *unichars; UniChar *unichars;
if (PyString_Check(src)) { if (PyString_Check(src)) {
if (!PyArg_Parse(src, "es", NULL, &chars)) if (!PyArg_Parse(src, "es", "ascii", &chars))
return NULL; /* This error is more descriptive than the general one below */ return NULL; /* This error is more descriptive than the general one below */
*dst = CFStringCreateWithCString((CFAllocatorRef)NULL, chars, kCFStringEncodingASCII); *dst = CFStringCreateWithCString((CFAllocatorRef)NULL, chars, kCFStringEncodingASCII);
return 1; return 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment