summaryrefslogtreecommitdiffstats
path: root/Demo/embed/loop.c
Commit message (Collapse)AuthorAgeFilesLines
* More cleanup: Move some demos into a dedicated Tools/demo dir, move 2to3 ↵Georg Brandl2010-12-301-33/+0
| | | | demo to Tools, and remove all the other Demo content.
* #6439: fix argument type for PySys_SetArgvEx() and Py_SetProgramName() in ↵Georg Brandl2010-08-011-1/+1
| | | | Demo/embed code.
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-19/+19
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
* 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...