summaryrefslogtreecommitdiffstats
path: root/Demo/embed
Commit message (Collapse)AuthorAgeFilesLines
* Update to use more modern calling conventions; also avoid a magic numberFred Drake2001-11-171-3/+2
| | | | | in the function table. Add a docstring for the function as well, since examples should show good form.
* Bump the version number; used to identify the Python runtime we link to.Fred Drake2001-11-171-1/+1
|
* Separate CFLAGS and CPPFLAGS. CFLAGS should not contain preprocessorNeil Schemenauer2001-06-021-1/+2
| | | | directives, which is the role of CPPFLAGS. Closes SF patch #414991.
* import.c -> importexc.cBarry Warsaw2001-02-201-0/+0
|
* import -> importexcBarry Warsaw2001-02-201-1/+1
|
* import.c -> importexc.cBarry Warsaw2001-02-201-4/+6
| | | | Added `realclean' target.
* Simple embedded program that does a module import. Useful forBarry Warsaw2001-01-311-0/+17
| | | | debugging leaks and other memory problems.
* Ignore the programs created in this directory.Barry Warsaw2001-01-311-0/+3
|
* Add targets to make building `loop' and `import' easier. Useful forBarry Warsaw2001-01-311-2/+5
| | | | debugging memory leaks and the like.
* 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.
* Updates and changes:Barry Warsaw2001-01-231-2/+2
| | | | | | | - set VERSION to 2.1 - change blddir to ../.. since that seems more common than the old value (at least for my debugging session).
* Add loop.c -- a test program for repeatedly calling Py_Initialize()Guido van Rossum2001-01-103-1/+41
| | | | and Py_Finalize(). It seems to dump core right now...
* Fix weird typo caused by ANSIfication (nobody bothered to test itGuido van Rossum2001-01-101-1/+1
| | | | since! :-( ).
* Miscelaneous ANSIfications. I'm assuming here 'main' should take (int,Thomas Wouters2000-07-221-8/+5
| | | | | char**) and return an int even on PC platforms. If not, please fix PC/utils/makesrc.c ;-P
* Add linker flag -export-dynamic so symbols in libpython*.a are exported.Guido van Rossum2000-07-101-1/+2
|
* Adapted for Python 2.0 under RH Linux.Guido van Rossum2000-07-101-5/+6
|
* Call Py_SetProgramName() instead of redefining getprogramname(),Guido van Rossum1999-03-091-11/+3
| | | | reflecting changes in the runtime around 1.5 or earlier.
* Just for fun, add a static module, "xyzzy" -- show that calling itsGuido van Rossum1997-12-251-0/+30
| | | | initxyzzy() works.
* Updated the Makefile to work with the new build strategy.Guido van Rossum1997-07-191-19/+18
|
* adapted to new naming; clarify comments somewhatGuido van Rossum1995-03-283-12/+14
|
* initial checkinGuido van Rossum1994-10-083-0/+100