abhi wrote:
On Jan 13, 12:17 pm, Terry Reedy wrote:
abhi wrote:
Hi,
I am trying to handle Unicode objects in C (Python 2.5.2)
... I want to convert this explicitely to utf-16
You are trying to get Unicode and UTF-16, whereas you should think
of those two as distinct. UTF-16 is a
abhi wrote:
> Now I want to utf-16 so I am trying to use the first one, but it is
> giving back NULL in case of PyObject is already Unicode type which is
> expected. What puzzles me is that PyUnicode_FromObject(PyObject *obj)
> is passing irrespective of type of PyObject. The API says it is
> Short
abhi wrote:
> On Jan 13, 12:17 pm, Terry Reedy wrote:
>> abhi wrote:
>>> Hi,
>>> I am trying to handle Unicode objects in C (Python 2.5.2). I am
>>> getting PyObjects from and want to coerce them to unicode objects. The
>>> documentation provides two APIs for that:
>>> PyUnicode_FromEncodedOb
On Jan 13, 12:17 pm, Terry Reedy wrote:
> abhi wrote:
> > Hi,
> > I am trying to handle Unicode objects in C (Python 2.5.2). I am
> > getting PyObjects from and want to coerce them to unicode objects. The
> > documentation provides two APIs for that:
>
> > PyUnicode_FromEncodedObject(PyObject
abhi wrote:
Hi,
I am trying to handle Unicode objects in C (Python 2.5.2). I am
getting PyObjects from and want to coerce them to unicode objects. The
documentation provides two APIs for that:
PyUnicode_FromEncodedObject(PyObject *obj, const char *encoding,
const char *errors)
PyUnicode_Fr
Hi,
I am trying to handle Unicode objects in C (Python 2.5.2). I am
getting PyObjects from and want to coerce them to unicode objects. The
documentation provides two APIs for that:
PyUnicode_FromEncodedObject(PyObject *obj, const char *encoding,
const char *errors)
PyUnicode_FromObject(PyObj