summaryrefslogtreecommitdiff
path: root/Modules/glmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* SF patch #577031, remove PyArg_NoArgs() since it's deprecatedNeal Norwitz2002-07-281-439/+437
| | | | Explicitly use METH_OLDARGS
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
| | | | This should match the situation in the 1.6b1 tree.
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
| | | | | | | | | | | | | | | | | | and a couple of functions that were missed in the previous batches. Not terribly tested, but very carefully scrutinized, three times. All these were found by the little findkrc.py that I posted to python-dev, which means there might be more lurking. Cases such as this: long func(a, b) long a; long b; /* flagword */ { and other cases where the last ; in the argument list isn't followed by a newline and an opening curly bracket. Regexps to catch all are welcome, of course ;)
* ANSI-fication of the SGI modules (note that svmodule.c and sgimodule.cPeter Schneider-Kamp2000-07-101-1297/+439
| | | | | | have already been checked in) UNTESTED!
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-2/+2
|
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
|
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
|
* Check in the changed version after running the stubber again -- thisGuido van Rossum1998-10-211-13/+12
| | | | | | solves the conflict with curses over the 'clear' entry point much nicer. (Jack had checked in the changes to cstubs eons ago, but I never regenrated glmodule.c :-( )
* Hm. What was previously checked in was the edited *output* of the oldGuido van Rossum1997-04-291-704/+693
| | | | | | | cgen.py. Now that cgen.py and cstubs have been quickly renamed, check in the actual output. This has some "old-style" names left in (getilongarg etc.) but these are now take care of by macros in cgensupport.h (which is now specific to glmodule.c).
* Renamed.Roger E. Masse1996-12-241-0/+8530
However: "cgensupport.h" is still present... otherwise I get maaaany type errors... not sure if this needs more attention.