summaryrefslogtreecommitdiffstats
path: root/Modules/puremodule.c
Commit message (Collapse)AuthorAgeFilesLines
* Deprecate the pure module for 3.0.Brett Cannon2008-05-091-0/+4
|
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
| | | | Probably should be backported.
* Patch #477750: Use METH_ constants in Modules.Martin v. Löwis2002-01-171-79/+79
|
* Do the absolute minimal amount of modifications to eradicateBarry Warsaw2000-09-011-2/+0
| | | | | | | | | | | | | | | Py_FatalError() from module initialization functions. The importing mechanism already checks for PyErr_Occurred() after module importation and it Does The Right Thing. Unfortunately, the following either were not compiled or tested by the regression suite, due to issues with my development platform: almodule.c cdmodule.c mpzmodule.c puremodule.c timingmodule.c
* ANSI-fy function headers. Not much more can be done since I don'tBarry Warsaw2000-08-181-249/+82
| | | | have access to Purify anymore.
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-11/+11
| | | | PyArg_ParseTuple() format string arguments as possible.
* (puremodule.c): New module which exports the Purify and Quantify C APIBarry Warsaw1997-01-171-0/+1155
to Python. Minimal documentation is included in comments at the top of the file, and in the Misc/PURIFY.README file. Note that this module must be statically linked since Pure doesn't provide shared stubs libraries. (Setup.in): Added commented template for pure module (syslogmodule.c): ins() function wasn't declared static.