mirror of https://github.com/python/cpython
This wasn't ansified. Fixed.
This commit is contained in:
parent
7327918631
commit
e748f0358f
|
@ -37,9 +37,7 @@ static char cp_GetColor__doc__[] =
|
||||||
;
|
;
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
cp_GetColor(self, args)
|
cp_GetColor(PyObject *self, PyObject *args)
|
||||||
PyObject *self; /* Not used */
|
|
||||||
PyObject *args;
|
|
||||||
{
|
{
|
||||||
RGBColor inColor, outColor;
|
RGBColor inColor, outColor;
|
||||||
Boolean ok;
|
Boolean ok;
|
||||||
|
@ -68,9 +66,7 @@ static char cp_module_documentation[] =
|
||||||
""
|
""
|
||||||
;
|
;
|
||||||
|
|
||||||
void initColorPicker();
|
void initColorPicker(void)
|
||||||
|
|
||||||
void initColorPicker()
|
|
||||||
{
|
{
|
||||||
PyObject *m;
|
PyObject *m;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue