summaryrefslogtreecommitdiffstats
path: root/Python/peephole.c
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2007-11-22 02:48:12 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2007-11-22 02:48:12 (GMT)
commit39599dca9db7431510f1d68609db5ea0b60af2cb (patch)
treee73e57d1e631fe1b6572bea4e915cc604fd88044 /Python/peephole.c
parent484fcd4521cd63beffeb45bca8396dcd7b377f0a (diff)
downloadcpython-39599dca9db7431510f1d68609db5ea0b60af2cb.zip
cpython-39599dca9db7431510f1d68609db5ea0b60af2cb.tar.gz
cpython-39599dca9db7431510f1d68609db5ea0b60af2cb.tar.bz2
PyString_AsString is permissive and accepts unicode strings.
Replace it with PyUnicode_AsString when the argument is known to be a str.
Diffstat (limited to 'Python/peephole.c')
-rw-r--r--Python/peephole.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/peephole.c b/Python/peephole.c
index d012d39..9f1e642 100644
--- a/Python/peephole.c
+++ b/Python/peephole.c
@@ -407,7 +407,7 @@ PyCode_Optimize(PyObject *code, PyObject* consts, PyObject *names,
case LOAD_NAME:
case LOAD_GLOBAL:
j = GETARG(codestr, i);
- name = PyString_AsString(PyTuple_GET_ITEM(names, j));
+ name = PyUnicode_AsString(PyTuple_GET_ITEM(names, j));
h = load_global(codestr, i, name, consts);
if (h < 0)
goto exitUnchanged;