mirror of
https://github.com/python/cpython.git
synced 2024-11-27 03:45:08 +08:00
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 *
|
||||
cp_GetColor(self, args)
|
||||
PyObject *self; /* Not used */
|
||||
PyObject *args;
|
||||
cp_GetColor(PyObject *self, PyObject *args)
|
||||
{
|
||||
RGBColor inColor, outColor;
|
||||
Boolean ok;
|
||||
@ -68,9 +66,7 @@ static char cp_module_documentation[] =
|
||||
""
|
||||
;
|
||||
|
||||
void initColorPicker();
|
||||
|
||||
void initColorPicker()
|
||||
void initColorPicker(void)
|
||||
{
|
||||
PyObject *m;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user