Commit 8d0f6202 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Use specialized functions intead of Py_BuildValue() in _tkinter.

parent 645058d1
...@@ -2092,7 +2092,7 @@ _tkinter_tkapp_exprlong_impl(TkappObject *self, const char *s) ...@@ -2092,7 +2092,7 @@ _tkinter_tkapp_exprlong_impl(TkappObject *self, const char *s)
if (retval == TCL_ERROR) if (retval == TCL_ERROR)
res = Tkinter_Error((PyObject *)self); res = Tkinter_Error((PyObject *)self);
else else
res = Py_BuildValue("l", v); res = PyLong_FromLong(v);
LEAVE_OVERLAP_TCL LEAVE_OVERLAP_TCL
return res; return res;
} }
...@@ -2123,7 +2123,7 @@ _tkinter_tkapp_exprdouble_impl(TkappObject *self, const char *s) ...@@ -2123,7 +2123,7 @@ _tkinter_tkapp_exprdouble_impl(TkappObject *self, const char *s)
if (retval == TCL_ERROR) if (retval == TCL_ERROR)
res = Tkinter_Error((PyObject *)self); res = Tkinter_Error((PyObject *)self);
else else
res = Py_BuildValue("d", v); res = PyFloat_FromDouble(v);
LEAVE_OVERLAP_TCL LEAVE_OVERLAP_TCL
return res; return res;
} }
...@@ -2152,7 +2152,7 @@ _tkinter_tkapp_exprboolean_impl(TkappObject *self, const char *s) ...@@ -2152,7 +2152,7 @@ _tkinter_tkapp_exprboolean_impl(TkappObject *self, const char *s)
if (retval == TCL_ERROR) if (retval == TCL_ERROR)
res = Tkinter_Error((PyObject *)self); res = Tkinter_Error((PyObject *)self);
else else
res = Py_BuildValue("i", v); res = PyLong_FromLong(v);
LEAVE_OVERLAP_TCL LEAVE_OVERLAP_TCL
return res; return res;
} }
...@@ -2891,7 +2891,7 @@ _tkinter_tkapp_dooneevent_impl(TkappObject *self, int flags) ...@@ -2891,7 +2891,7 @@ _tkinter_tkapp_dooneevent_impl(TkappObject *self, int flags)
ENTER_TCL ENTER_TCL
rv = Tcl_DoOneEvent(flags); rv = Tcl_DoOneEvent(flags);
LEAVE_TCL LEAVE_TCL
return Py_BuildValue("i", rv); return PyLong_FromLong(rv);
} }
/*[clinic input] /*[clinic input]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment