mirror of https://github.com/python/cpython
Regenerated because of confusion with Style/StyleParameter and
Char/CharParameter
This commit is contained in:
parent
d6b6d88505
commit
e742a82067
|
@ -3638,7 +3638,7 @@ static PyObject *Qd_TextFace(_self, _args)
|
||||||
PyObject *_args;
|
PyObject *_args;
|
||||||
{
|
{
|
||||||
PyObject *_res = NULL;
|
PyObject *_res = NULL;
|
||||||
Style face;
|
StyleParameter face;
|
||||||
if (!PyArg_ParseTuple(_args, "h",
|
if (!PyArg_ParseTuple(_args, "h",
|
||||||
&face))
|
&face))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -3699,7 +3699,7 @@ static PyObject *Qd_DrawChar(_self, _args)
|
||||||
{
|
{
|
||||||
PyObject *_res = NULL;
|
PyObject *_res = NULL;
|
||||||
CharParameter ch;
|
CharParameter ch;
|
||||||
if (!PyArg_ParseTuple(_args, "c",
|
if (!PyArg_ParseTuple(_args, "h",
|
||||||
&ch))
|
&ch))
|
||||||
return NULL;
|
return NULL;
|
||||||
DrawChar(ch);
|
DrawChar(ch);
|
||||||
|
@ -3754,7 +3754,7 @@ static PyObject *Qd_CharWidth(_self, _args)
|
||||||
PyObject *_res = NULL;
|
PyObject *_res = NULL;
|
||||||
short _rv;
|
short _rv;
|
||||||
CharParameter ch;
|
CharParameter ch;
|
||||||
if (!PyArg_ParseTuple(_args, "c",
|
if (!PyArg_ParseTuple(_args, "h",
|
||||||
&ch))
|
&ch))
|
||||||
return NULL;
|
return NULL;
|
||||||
_rv = CharWidth(ch);
|
_rv = CharWidth(ch);
|
||||||
|
@ -4254,7 +4254,7 @@ static PyMethodDef Qd_methods[] = {
|
||||||
{"TextFont", (PyCFunction)Qd_TextFont, 1,
|
{"TextFont", (PyCFunction)Qd_TextFont, 1,
|
||||||
"(short font) -> None"},
|
"(short font) -> None"},
|
||||||
{"TextFace", (PyCFunction)Qd_TextFace, 1,
|
{"TextFace", (PyCFunction)Qd_TextFace, 1,
|
||||||
"(Style face) -> None"},
|
"(StyleParameter face) -> None"},
|
||||||
{"TextMode", (PyCFunction)Qd_TextMode, 1,
|
{"TextMode", (PyCFunction)Qd_TextMode, 1,
|
||||||
"(short mode) -> None"},
|
"(short mode) -> None"},
|
||||||
{"TextSize", (PyCFunction)Qd_TextSize, 1,
|
{"TextSize", (PyCFunction)Qd_TextSize, 1,
|
||||||
|
|
Loading…
Reference in New Issue