diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:13:48 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:13:48 (GMT) |
commit | cd938fc5a1ba4a61959460787eb549ff989ca6b0 (patch) | |
tree | bdacb1f3ba568d3095e414dc4d02732a02c7c9c3 /Modules/_tkinter.c | |
parent | 78c0535a224697e1c7a1a4e68462d3d204e38942 (diff) | |
download | cpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.zip cpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.tar.gz cpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.tar.bz2 |
Made some more things static, and other cleanup for new naming scheme
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r-- | Modules/_tkinter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 9675da5..618587a 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -73,7 +73,7 @@ AsString (value, tmp) { PyObject *v; - v = strobject (value); + v = PyObject_Str (value); PyList_Append (tmp, v); Py_DECREF (v); return PyString_AsString (v); |