mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
This wasn't ansified. Fixed.
This commit is contained in:
parent
7327918631
commit
e748f0358f
1 changed files with 2 additions and 6 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue