- e97ecf9 demonstration importers by Greg Stein · 24 years ago
- a05e293 typos fixed by Rob Hooft by Jeremy Hylton · 24 years ago
- 99f235d Remove stdwin references by Guido van Rossum · 24 years ago
- 6a1b133 Removing junk by Guido van Rossum · 24 years ago
- 81b4e41 removing more stdwin users by Guido van Rossum · 24 years ago
- dab6cb8 removing more stdwin users by Guido van Rossum · 24 years ago
- 01b3aa4 Fix use of list.append() with multiple arguments by Andrew M. Kuchling · 25 years ago
- b4624b9 Fix a couple dozen broken ci.append(x, y, z) calls, spotted by Tim. by Guido van Rossum · 25 years ago
- e0a928d Fix some broken links. by Guido van Rossum · 25 years ago
- 995285e Moved all the imports to the top. by Fred Drake · 25 years ago
- caf2f8e Add -v flag. Comment duplicate Py_Finalize(). by Guido van Rossum · 25 years ago
- 4f1a618 Ofir Reichenberg suggested to apply htonl() to grpaddr in openmcastsock(). by Guido van Rossum · 25 years ago
- d9e5d17 Fix bug discovered by Klaus-Juergen Wolf -- it runs into infinite recursion! by Guido van Rossum · 25 years ago
- eda80ea Correct spelling of length, discovered by Christian Tismer. by Guido van Rossum · 26 years ago
- 60cc90e This demo imported some private code from Matt. Make it cripple along. by Guido van Rossum · 26 years ago
- 9a4da08 Change #! line to modern usage; also chmod +x by Guido van Rossum · 26 years ago
- 7e75c94 Change #! line to modern usage by Guido van Rossum · 26 years ago
- 496bc7f Call Py_SetProgramName() instead of redefining getprogramname(), by Guido van Rossum · 26 years ago
- b55f9ff 100 bottles of beer on the wall example. by Guido van Rossum · 26 years ago
- fe78cc0 Adding Fredrik Lundh's demo of the option menu. by Guido van Rossum · 26 years ago
- 1554b7b Use constants defined in cl module. (Sjoerd) by Guido van Rossum · 26 years ago
- 1e57a04 Removed unnecessary import of cl and CL. (Sjoerd) by Guido van Rossum · 26 years ago
- 9c2c1e8 Fix multi-arg list.append() calls. by Guido van Rossum · 26 years ago
- dfae3d5 Added a 'Help' special menu to show how this is done. by Barry Warsaw · 26 years ago
- d24d3fc Added the mainloop() call. by Guido van Rossum · 26 years ago
- 5fae9e8 nannified by Guido van Rossum · 26 years ago
- 4117e54 nannified by Guido van Rossum · 26 years ago
- dcd038f nannified. by Guido van Rossum · 26 years ago
- 7ca9a1a Fix a bug where comparison of a rational with a float failed because by Guido van Rossum · 26 years ago
- 482e82a Corrected some spelling and one technical error. by Guido van Rossum · 26 years ago
- a9ca42d Vladimir Marangozov's explanatory message. by Guido van Rossum · 26 years ago
- d895749 New warnings to the uninitiated reader. by Guido van Rossum · 26 years ago
- 98c92c8 Show how to do switchable panels. by Guido van Rossum · 26 years ago
- 7e0e955 Get rid of the lock; it's no longer needed. by Guido van Rossum · 26 years ago
- 5542449 Remove the doc string -- it doesn't tell the truth. by Guido van Rossum · 26 years ago
- 0da45c4 New demo -- Perl style regular expression matching. by Guido van Rossum · 26 years ago
- 7e7912f Protect all uses of the random generator with a lock. by Guido van Rossum · 26 years ago
- 3d3a52a An example of a multi-threaded Tkinter program. by Guido van Rossum · 26 years ago
- f638d1c Fix some comments; move 'import random' to top. by Guido van Rossum · 26 years ago
- 6c3a2cb whrandom -> random by Guido van Rossum · 26 years ago
- 29892d8 Use whrandom instead of rand. by Guido van Rossum · 26 years ago
- 8c8e814 Add link to Anthony Baxter's enhanced version. by Guido van Rossum · 27 years ago
- bd8341e Catch exceptions in final self.destroy() call. by Guido van Rossum · 27 years ago
- 5d97ebf Got rid of redundant copy of telnetlib.py by Guido van Rossum · 27 years ago
- 07af9a7 Add a sleep(0.00001) call to make sure all threads run. by Guido van Rossum · 27 years ago
- 2e6938f Fix bug in islocked() -- it would always return 0. by Guido van Rossum · 27 years ago
- 36123aa Removed condition.py -- it was just sync.py without by Guido van Rossum · 27 years ago
- 44f5c75 Add Piet van Oostrum's name to the comments. by Guido van Rossum · 27 years ago
- dd918a9 Add simple Unix socket example by Piet van Oostrum. by Guido van Rossum · 27 years ago
- 5b8b8cd Fixed typo reported by Grzegorz Makarewicz <mak@mikroplan.com.pl>. by Fred Drake · 27 years ago
- 25f1722 Paint demo by Dave Mitchell. There's clearly a demand for such a by Guido van Rossum · 27 years ago
- 48b805c SO_REUSEPORT should be SO_REUSEADDR. by Guido van Rossum · 27 years ago
- 81e84c9 Just for fun, add a static module, "xyzzy" -- show that calling its by Guido van Rossum · 27 years ago
- 643f8f6 Add setsockopt...SO_REUSEADDR to avoid stupid waiting when killing and by Guido van Rossum · 27 years ago
- ba17905 Fix the way the version number is gotten out of the RCS revision. by Guido van Rossum · 27 years ago
- 1a24bb5 Fix the test for pow() -- no more TypeErrors are raised! by Guido van Rossum · 27 years ago
- c37eb56 Forgot to use </> for some example output. by Guido van Rossum · 27 years ago
- 682fbe5 Remove hyperlink to time-sensitive Python release info. by Guido van Rossum · 27 years ago
- 37885c2 Trivial change in prompt label suggested by Case Roole. by Guido van Rossum · 27 years ago
- 46a0bb4 Typo discovered by Case Roole. by Guido van Rossum · 27 years ago
- d6449a2 Be more careful with closing fd's 0,1,2. by Guido van Rossum · 27 years ago
- ef31b24 Add note about condition.py. by Guido van Rossum · 27 years ago
- 5edcf34 Change bind() to tag_bind() so it works again. by Guido van Rossum · 27 years ago
- a2f626f Patch by Case Roole <cjr@bound.xs4all.nl> to fail with a more by Guido van Rossum · 27 years ago
- 626a8d0 Added hint to skip the heavy stuff on first reading. by Guido van Rossum · 27 years ago
- 7ade6da As Paul Prescod pointed out, metaprogramming is really something by Guido van Rossum · 27 years ago
- 7b877a9 Some nits, added a whole section on what you could do with by Guido van Rossum · 27 years ago
- 0cdb887 Completed first draft. by Guido van Rossum · 27 years ago
- 1fb071c Checkpoint. by Guido van Rossum · 27 years ago
- 27e4aa3 Arbitrary point checkpoint commit. Take no notice. by Guido van Rossum · 27 years ago
- bff110f Examples of metaprogramming in pure Python. by Guido van Rossum · 27 years ago
- 21c5c8f Correct off-by-two-pixels error. by Guido van Rossum · 27 years ago
- aa61505 Use a counter instead of a Boolean to check for initialized; n calls by Guido van Rossum · 27 years ago
- dac4447 Add try-finally around main loop. by Guido van Rossum · 27 years ago
- 20abb4e Added (commented-out) defs for use with the build tree instead of the by Guido van Rossum · 27 years ago
- c46d22e Print ps (process status) for us when starting a new thread. by Guido van Rossum · 27 years ago
- 630924f Use Py_NewInterpreter() and friends. Remove saving/restoring of std files. by Guido van Rossum · 27 years ago
- 661aebc New test for generic Makefile.pre.in by Guido van Rossum · 27 years ago
- a955967 Added description of the extend subdirectory. by Guido van Rossum · 27 years ago
- a88446a Some improvements, e.g. -L/depot/... is not needed. by Guido van Rossum · 27 years ago
- e0c6901 Added leading comment and security check. by Guido van Rossum · 27 years ago
- 42ded89 Reformulate security check using getsockname(). by Guido van Rossum · 27 years ago
- eca991d Change security policy -- only accept requests from current host. by Guido van Rossum · 27 years ago
- d1bef00 Removed old signature. by Guido van Rossum · 27 years ago
- 14b0e70 Updated description for embed; added pysvr. by Guido van Rossum · 27 years ago
- 5c8b991 New example of threaded embedding by Guido van Rossum · 27 years ago
- 6e614e3 Updated the Makefile to work with the new build strategy. by Guido van Rossum · 27 years ago
- fe97656 Hide .fdc files here. by Guido van Rossum · 27 years ago
- 5416a0d Checking in zlib demo. by Guido van Rossum · 27 years ago
- 0609f19 A completely new Rat.py by Sjoerd. by Guido van Rossum · 27 years ago
- b2c02de Removed pprint.py. by Fred Drake · 28 years ago
- b5d2039 Always use spaces for indentation. by Fred Drake · 28 years ago
- 9a8cb84 Checked in some new Tk demos that I wrote a while ago. by Guido van Rossum · 28 years ago
- b5846d7 A different winning animation. by Guido van Rossum · 28 years ago
- a0dc1c4 Actually, *this* fixes the last bug. by Guido van Rossum · 28 years ago
- 1b2b53a Considerably restructured. This fixes the one remaining bug. by Guido van Rossum · 28 years ago
- 8de9f89 Solitaire game, like the one that comes with Windows. by Guido van Rossum · 28 years ago
- f06ee5f /usr/local/bin/python -> /usr/bin/env python by Guido van Rossum · 28 years ago
- 58a7856 Pass self as master to Entry() widget constructor. by Guido van Rossum · 28 years ago
- c153d12 Got rid of almost totally obsolete Demo/www subdir. by Guido van Rossum · 28 years ago