#include int main(int argc, char* argv[]) { printf("Running command: %s with %d arguments\n", argv[0], argc); return 0; } w'/>
summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Mark the "encoding" parameter to ExternalEntityParserCreate() as optionalFred Drake2001-01-031-1/+1
* When using the latest & greatest version of Expat (currently in the ExpatFred Drake2000-12-211-0/+7
* Add returns_unicode to the __members__ list.Fred Drake2000-12-161-1/+2
* ParserCreate(): Added test that the namespace_separator value, if given,Fred Drake2000-10-291-0/+9
* PyModule_AddStringConstant(): Make this static since it isn't usedFred Drake2000-09-291-1/+5
* Remove unused VERSION #define.Martin v. Löwis2000-09-291-5/+26
* Repaired damaged string.Tim Peters2000-09-241-1/+1
* xmlparse_ExternalEntityParserCreate(): Add required cast to return toFred Drake2000-09-241-1/+1
* Added ExternalEntityParserCreate method (patch 101635).Lars Gustäbel2000-09-241-0/+66
* Change the name of the exception from "pyexpat.error" toFred Drake2000-09-231-12/+13
* When PyInt_FromLong() returns NULL, you do not need to checkFred Drake2000-09-221-4/+2
* Fix for SF bug 115051: Dodgy use of PyTuple_SET_ITEM in pyexpat.cTim Peters2000-09-221-2/+1
* Remove debugging print. ;(Fred Drake2000-09-221-2/+0
* Remove memory leaks of strings/Unicode objects passed into the characterFred Drake2000-09-211-58/+21
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-16/+0
* Try to supply a prototype for the module init function but avoidTim Peters2000-08-261-1/+1
* initpyexpat(): Code cleanup; makes it more robust and reduces warnings.Fred Drake2000-08-251-126/+143
* Fix the evil booboos. ;( Causes discussed with Jeremy offline.Fred Drake2000-08-241-2/+2
* Remove the Py_FatalError() from initpyexpat(); the Guido has decreedFred Drake2000-08-241-10/+22
* Mark Favas's fix for typos in docstrings.Thomas Wouters2000-07-221-4/+4
* Convert coding style to be internally consistent and similar to theFred Drake2000-07-121-545/+531
* Fix bugs in readinst():Andrew M. Kuchling2000-07-121-10/+25
* Patch #100854 from jhylton: eliminate compiler warnings in pyexpat:Andrew M. Kuchling2000-07-121-21/+22
* pyexpat.errors is a *strange* module!Fred Drake2000-07-041-14/+15
* Fixes for compilation problems on Tru64 reported by Mark FavasAndrew M. Kuchling2000-07-041-16/+16
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Added support for passing Unicode strings to Expat handlers by default.Andrew M. Kuchling2000-06-27