summaryrefslogtreecommitdiff
path: root/Python/_warnings.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-11-21 02:49:52 +0100
committerVictor Stinner <victor.stinner@haypocalc.com>2011-11-21 02:49:52 +0100
commitca8cc12c914866d056515be4f028011fd623994c (patch)
tree3de35bc08d4cc81eacbc8a39ba736a3b905900e9 /Python/_warnings.c
parent57c6141b405c63645ac2889da8149aea74c10c01 (diff)
downloadcpython-ca8cc12c914866d056515be4f028011fd623994c.tar.gz
Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()
And PyUnicode_GetSize() => PyUnicode_GetLength()
Diffstat (limited to 'Python/_warnings.c')
-rw-r--r--Python/_warnings.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Python/_warnings.c b/Python/_warnings.c
index 2e5b0dd4e2..a494dd9a3c 100644
--- a/Python/_warnings.c
+++ b/Python/_warnings.c
@@ -203,13 +203,13 @@ normalize_module(PyObject *filename)
mod_str = _PyUnicode_AsString(filename);
if (mod_str == NULL)
- return NULL;
- len = PyUnicode_GetSize(filename);
+ return NULL;
+ len = PyUnicode_GetLength(filename);
if (len < 0)
return NULL;
if (len >= 3 &&
strncmp(mod_str + (len - 3), ".py", 3) == 0) {
- module = PyUnicode_FromStringAndSize(mod_str, len-3);
+ module = PyUnicode_Substring(filename, 0, len-3);
}
else {
module = filename;
@@ -506,7 +506,7 @@ setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno,
if (PyUnicode_READY(*filename))
goto handle_error;
- len = PyUnicode_GetSize(*filename);
+ len = PyUnicode_GetLength(*filename);
kind = PyUnicode_KIND(*filename);
data = PyUnicode_DATA(*filename);
@@ -690,7 +690,7 @@ warnings_warn_explicit(PyObject *self, PyObject *args, PyObject *kwds)
}
/* Split the source into lines. */
- source_list = PyObject_CallMethodObjArgs(source,
+ source_list = PyObject_CallMethodObjArgs(source,
PyId_splitlines.object,
NULL);
Py_DECREF(source);