diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-20 07:13:40 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-11-20 07:13:40 (GMT) |
| commit | a98c4a984b34f887076f4171b1e3303e164cbddf (patch) | |
| tree | 78f6f0fbbc6728e24d5478aadb7bfe1d871b244f /Modules/parsermodule.c | |
| parent | f6f15918087f2fae652634303a79f9cc6bc421ce (diff) | |
| parent | 06515833fef7b8b5c7968edf72367d94ff7eb1e0 (diff) | |
| download | cpython-a98c4a984b34f887076f4171b1e3303e164cbddf.zip cpython-a98c4a984b34f887076f4171b1e3303e164cbddf.tar.gz cpython-a98c4a984b34f887076f4171b1e3303e164cbddf.tar.bz2 | |
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
with PyUnicode_AsUTF8 and PyUnicode_AsUTF8AndSize.
Diffstat (limited to 'Modules/parsermodule.c')
| -rw-r--r-- | Modules/parsermodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 82770a5..b2566951 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -912,7 +912,7 @@ build_node_children(PyObject *tuple, node *root, int *line_num) Py_DECREF(o); } } - temp_str = _PyUnicode_AsStringAndSize(temp, &len); + temp_str = PyUnicode_AsUTF8AndSize(temp, &len); if (temp_str == NULL) { Py_DECREF(temp); Py_XDECREF(elem); @@ -1013,7 +1013,7 @@ build_node_tree(PyObject *tuple) if (res && encoding) { Py_ssize_t len; const char *temp; - temp = _PyUnicode_AsStringAndSize(encoding, &len); + temp = PyUnicode_AsUTF8AndSize(encoding, &len); if (temp == NULL) { Py_DECREF(res); Py_DECREF(encoding); |
