diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-02 23:37:41 +0200 |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-02 23:37:41 +0200 |
| commit | 8e3ea5b0387ed580d3a71d6193bf5346b95bcfd6 (patch) | |
| tree | a27fe11b1afd402df9f9bac95009d7dbd98d988f /Python/errors.c | |
| parent | a080e92dc3f4f96e3efe1028ef7f0a2d0b9e900f (diff) | |
| parent | ac0df967cfc483b2f749d8e6b439ecb39002bae9 (diff) | |
| download | cpython-8e3ea5b0387ed580d3a71d6193bf5346b95bcfd6.tar.gz | |
Fix ResourceWarnings in the TIPC socket tests.
Diffstat (limited to 'Python/errors.c')
| -rw-r--r-- | Python/errors.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/errors.c b/Python/errors.c index 5a9a624279..149151ebfa 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -395,7 +395,7 @@ PyErr_SetFromErrnoWithFilenameObject(PyObject *exc, PyObject *filenameObject) /* remove trailing cr/lf and dots */ while (len > 0 && (s_buf[len-1] <= L' ' || s_buf[len-1] == L'.')) s_buf[--len] = L'\0'; - message = PyUnicode_FromUnicode(s_buf, len); + message = PyUnicode_FromWideChar(s_buf, len); } } } @@ -487,7 +487,7 @@ PyObject *PyErr_SetExcFromWindowsErrWithFilenameObject( /* remove trailing cr/lf and dots */ while (len > 0 && (s_buf[len-1] <= L' ' || s_buf[len-1] == L'.')) s_buf[--len] = L'\0'; - message = PyUnicode_FromUnicode(s_buf, len); + message = PyUnicode_FromWideChar(s_buf, len); } if (message == NULL) |
