diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2011-09-28 07:41:54 +0200 | 
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2011-09-28 07:41:54 +0200 | 
| commit | d63a3b8beb4a0841cb59fb3515347ccaab34b733 (patch) | |
| tree | 3b4e3cc63151c5a5a910c3550a190aefaea96ad4 /Modules/_cursesmodule.c | |
| parent | 48d49497c50e79d14e9df9527d766ca3a0a38be5 (diff) | |
| download | cpython-git-d63a3b8beb4a0841cb59fb3515347ccaab34b733.tar.gz | |
Implement PEP 393.
Diffstat (limited to 'Modules/_cursesmodule.c')
| -rw-r--r-- | Modules/_cursesmodule.c | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/Modules/_cursesmodule.c b/Modules/_cursesmodule.c index ef0a66c0ed..191d53fff2 100644 --- a/Modules/_cursesmodule.c +++ b/Modules/_cursesmodule.c @@ -203,8 +203,11 @@ PyCurses_ConvertToChtype(PyObject *obj, chtype *ch)      } else if(PyBytes_Check(obj)                && (PyBytes_Size(obj) == 1)) {          *ch = (chtype) *PyBytes_AsString(obj); -    } else if (PyUnicode_Check(obj) && PyUnicode_GetSize(obj) == 1) { -        *ch = (chtype) *PyUnicode_AS_UNICODE(obj); +    } else if (PyUnicode_Check(obj) && PyUnicode_GET_LENGTH(obj) == 1) { +        Py_UCS4 ucs = PyUnicode_READ(PyUnicode_KIND(obj), +                                     PyUnicode_DATA(obj), +                                     0); +        *ch = (chtype)ucs;      } else {          return 0;      }  | 
