summaryrefslogtreecommitdiffstats
path: root/Demo
Commit message (Collapse)AuthorAgeFilesLines
* Updated -- all Demo subdirectories are once again listed here, inGuido van Rossum2001-12-271-6/+24
| | | | | | | | | alphabetical order (!), and the obsolete 'extend' directory is no longer mentioned. This and the erasure of the extend directory are 2.2.1 bugfix candidates (but only of you want to be thorough -- it's not like anybody cares :-).
* Removing this directory; it's no longer needed now that Misc/Makefile.pre.inGuido van Rossum2001-12-274-52/+0
| | | | no longer exists. Docs for distutils are plenty elsewhere.
* sprintf -> PyOS_snprintf in some "obviously safe" cases.Tim Peters2001-11-281-2/+3
| | | | | Also changed <>-style #includes to ""-style in some places where the former didn't make sense.
* Properly set static options for tixBalloon and tixResizeHandle.Martin v. Löwis2001-11-252-50/+193
| | | | | Expose Tix.ResizeHandle.{detach_widget,hide,show}. Update Tix demos.
* 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
|
* Patch #473002: Update Demo/tix tixwidgets.py et al.Martin v. Löwis2001-11-117-154/+542
|
* Remove obsolete e-mail addressAndrew M. Kuchling2001-11-051-1/+1
|
* Patch #469517: Info about rpcgen compilers.Martin v. Löwis2001-10-112-5/+12
|
* Removed Demo/dns -- see sf.net/projects/pydns/ instead.Guido van Rossum2001-10-026-717/+0
|
* Update reference to pydns.Guido van Rossum2001-10-021-5/+3
|
* Use the build directory by default, and update the version.Guido van Rossum2001-09-051-9/+12
|
* Use string.ascii_letters instead of string.letters (SF bug #226706).Fred Drake2001-07-201-1/+1
|
* Kill another merge zombie.Tim Peters2001-07-172-58/+0
|
* Deleting zombiesGuido van Rossum2001-07-1718-2122/+0
|
* Deleting merge zombie.Guido van Rossum2001-07-171-480/+0
|
* xmlrpclib for python 2.2; initial checkinFredrik Lundh2001-07-112-0/+181
|
* Separate CFLAGS and CPPFLAGS. CFLAGS should not contain preprocessorNeil Schemenauer2001-06-022-2/+4
| | | | directives, which is the role of CPPFLAGS. Closes SF patch #414991.
* [].index() raises ValueError if the value is not in the list, so onlyFred Drake2001-05-111-1/+1
| | | | catch that instead of using a bare except clause.
* [].index() raises ValueError if the value is not in the list, so onlyFred Drake2001-05-111-1/+1
| | | | catch that instead of using a bare except clause.
* Change co.detach() to co.back() call.Guido van Rossum2001-03-221-1/+1
|
* Add more complete reference. Change a co.back() call to co.tran() --Guido van Rossum2001-03-221-1/+2
| | | | that's all that's needed.
* Add newline to end of file.Guido van Rossum2001-03-211-1/+1
|
* Document tix directory.Martin v. Löwis2001-03-211-0/+2
|
* Patch #410231: Add the Python Tix library.Martin v. Löwis2001-03-2137-0/+2528
|
* 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.
* Updated to use new Python featuresMoshe Zadka2001-02-201-86/+86
| | | | Reindented
* Fixed to use new Python features and use more commonly accepted styleMoshe Zadka2001-02-201-18/+18
| | | | Reindented
* Changed to use the fact that str(long) doesn't produce a trailing LMoshe Zadka2001-02-201-16/+16
| | | | Reindented
* Superseded by $(srcdir)/Makefile.pre.in.Neil Schemenauer2001-02-031-12/+0
|
* 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).
* Whitespace normalization.Tim Peters2001-01-213-187/+187
|
* Geoffrey Gerrietts discovered that a KeyError was caught that probablyGuido van Rossum2001-01-151-1/+1
| | | | | | should have been a NameError. I'm checking in a change that catches both, just to be sure -- I can't be bothered trying to understand this code any more. :-)
* 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! :-( ).
* Added "repeat.py" -- repeatedly execute a shell command (likeGuido van Rossum2001-01-052-7/+64
| | | | watch(1)). Updated and untabified the README file.
* Choose the smallest value of x,y for the clock's radius (instead of just ↵Andrew M. Kuchling2000-12-231-9/+6
| | | | | | | taking the y coordinate), and change radius of second indicator to compensate Remove redundant setting of sradius
* Update this demo to use curses.panelAndrew M. Kuchling2000-12-221-2/+3
|
* Another demo from Thomas Gellekum (seasonally-themed, too)Andrew M. Kuchling2000-12-212-0/+907
|
* Curses demos contributed by Thomas Gellekum <tg@FreeBSD.org>.Andrew M. Kuchling2000-12-154-1/+541
| | | | ncurses.py requires panel support, and therefore doesn't work yet.
* Fix bit rot: use sock.connect((host, port)) and allow 2nd cmd lineGuido van Rossum2000-12-141-3/+3
| | | | arg.
* Check in README file and one demo programAndrew M. Kuchling2000-12-132-0/+226
|
* A solution to the classic N queens problem.Guido van Rossum2000-11-161-0/+85
|
* Add 1994 Coroutine module by Tim PetersGuido van Rossum2000-11-084-0/+332
|