summaryrefslogtreecommitdiffstats
path: root/Demo/embed/loop.c
Commit message (Collapse)AuthorAgeFilesLines
* Slight reworking to make it more useful for debuggingBarry Warsaw2001-01-231-5/+12
| | | | | | | | | | Py_Initialize()/Py_Finalize() loop leaks. - allow an optional 3rd argument which is the loop count. -1 means infloop (the default). - Add a setting of Py_NoSiteFlag=1, but leave it commented out by default.
* Add loop.c -- a test program for repeatedly calling Py_Initialize()Guido van Rossum2001-01-101-0/+26
and Py_Finalize(). It seems to dump core right now...