summaryrefslogtreecommitdiffstats
path: root/Demo
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions ↵Georg Brandl2009-10-271-10/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 73206,73232,73299,73683,74020,74185,74544,74643,74647,74817,74838-74839,74865,74946,75402,75459,75604,75696 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r73206 | georg.brandl | 2009-06-04 11:15:12 +0200 (Do, 04 Jun 2009) | 1 line #3584: ignore trailing newlines when placing the caret for a SyntaxError location. ........ r73232 | georg.brandl | 2009-06-04 20:59:58 +0200 (Do, 04 Jun 2009) | 1 line Add test for #3684. ........ r73299 | georg.brandl | 2009-06-08 20:41:36 +0200 (Mo, 08 Jun 2009) | 1 line Typo fix. ........ r73683 | georg.brandl | 2009-06-29 16:44:49 +0200 (Mo, 29 Jun 2009) | 1 line Fix error handling in PyCode_Optimize, by Alexander Schremmer at EuroPython sprint. ........ r74020 | georg.brandl | 2009-07-16 09:18:07 +0200 (Do, 16 Jul 2009) | 1 line #5910: fix kqueue for calls with more than one event. ........ r74185 | georg.brandl | 2009-07-23 11:17:09 +0200 (Do, 23 Jul 2009) | 1 line Fix the "pylocals" gdb command. ........ r74544 | georg.brandl | 2009-08-24 19:12:30 +0200 (Mo, 24 Aug 2009) | 1 line #6775: fix python.org URLs in README. ........ r74643 | georg.brandl | 2009-09-04 08:59:20 +0200 (Fr, 04 Sep 2009) | 2 lines Issue #2666: Handle BROWSER environment variable properly for unknown browser names in the webbrowser module. ........ r74647 | georg.brandl | 2009-09-04 10:17:04 +0200 (Fr, 04 Sep 2009) | 2 lines Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments as documented. ........ r74817 | georg.brandl | 2009-09-16 11:05:11 +0200 (Mi, 16 Sep 2009) | 1 line Make deprecation notices as visible as warnings are right now. ........ r74838 | georg.brandl | 2009-09-16 18:22:12 +0200 (Mi, 16 Sep 2009) | 1 line Remove some more boilerplate from the actual tests in test_pdb. ........ r74839 | georg.brandl | 2009-09-16 18:36:39 +0200 (Mi, 16 Sep 2009) | 1 line Make the pdb displayhook compatible with the standard displayhook: do not print Nones. Add a test for that. ........ r74865 | georg.brandl | 2009-09-17 09:49:37 +0200 (Do, 17 Sep 2009) | 1 line #6912: add "with" block support to pindent. ........ r74946 | georg.brandl | 2009-09-19 10:43:16 +0200 (Sa, 19 Sep 2009) | 1 line Update bug tracker reference. ........ r75402 | georg.brandl | 2009-10-14 17:51:48 +0200 (Mi, 14 Okt 2009) | 1 line #7125: fix typo. ........ r75459 | georg.brandl | 2009-10-17 10:57:43 +0200 (Sa, 17 Okt 2009) | 1 line Fix refleaks in _ctypes PyCSimpleType_New, which fixes the refleak seen in test___all__. ........ r75604 | georg.brandl | 2009-10-22 13:36:50 +0200 (Do, 22 Okt 2009) | 1 line Fix stylesheet for multi-paragraph impl-details. ........ r75696 | georg.brandl | 2009-10-25 21:25:43 +0100 (So, 25 Okt 2009) | 1 line Fix a demo. ........
* Merged revisions 75115 via svnmerge fromR. David Murray2009-09-281-0/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75115 | r.david.murray | 2009-09-28 14:29:28 -0400 (Mon, 28 Sep 2009) | 2 lines Applying patches backported from 3.1, by Gregor Lingl. ........
* Merged revisions 69846 via svnmerge fromJesus Cea2009-07-022-7/+7
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69846 | mark.dickinson | 2009-02-21 21:27:01 +0100 (Sat, 21 Feb 2009) | 2 lines Issue #5341: Fix a variety of spelling errors. ........
* Merged revisions 73557 via svnmerge fromR. David Murray2009-06-251-27/+23
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73557 | r.david.murray | 2009-06-25 13:29:39 -0400 (Thu, 25 Jun 2009) | 3 lines Issue 6340: update by Gregor Lingl of his tdemo_chaos demo program. Functionally equivalent, clearer code, English comments. ........
* Issue #3965: Allow repeated calls to turtle.Screen, by making it aMartin v. Löwis2008-09-291-2/+2
| | | | | | true singleton object. Reviewed by Gregor Lingl.
* Update uses of string exceptionsAndrew M. Kuchling2008-09-134-9/+7
|
* Fix SyntaxErrorAndrew M. Kuchling2008-09-131-2/+2
|
* Subclass exceptionAndrew M. Kuchling2008-09-131-1/+2
|
* Remove semicolonAndrew M. Kuchling2008-09-131-1/+1
|
* #687648 from Robert Schuppenies: use classic division.Andrew M. Kuchling2008-09-1312-33/+33
|
* #687648 from Robert Schuppenies: use classic division. From me: remove two ↵Andrew M. Kuchling2008-09-131-2/+2
| | | | stray semicolons
* #687648 from Robert Schuppenies: use classic division. From me: don't use ↵Andrew M. Kuchling2008-09-131-5/+10
| | | | string exception; add __main__ section
* #687648 from Robert Schuppenies: use classic division. From me: don't use ↵Andrew M. Kuchling2008-09-131-3/+11
| | | | string exception; flush stdout after printing
* #687648 from Robert Schuppenies: use classic division. (RM Barry gave ↵Andrew M. Kuchling2008-09-132-28/+28
| | | | permission to update the demos.)
* get unparse to at least unparse its selfBenjamin Peterson2008-08-191-2/+2
|
* correct versionBenjamin Peterson2008-08-181-1/+1
|
* Replace all map(None, a) with list(a).Georg Brandl2008-07-181-1/+1
|
* Patch #1513695: New turtle module, with demos.Martin v. Löwis2008-06-0421-0/+1895
|
* Revert the renaming of repr to reprlib.Brett Cannon2008-05-232-2/+2
|
* Changed references to the reprlib module to use its new name.Alexandre Vassalotti2008-05-162-2/+2
|
* #2503 make singletons compared with "is" not == or !=Benjamin Peterson2008-03-296-11/+11
| | | | Thanks to Wummel for the patch
* Use os.closerange().Georg Brandl2008-02-231-5/+1
|
* Remove reference to RationalMark Dickinson2008-02-101-1/+0
|
* Add rational.Rational as an implementation of numbers.Rational with infiniteJeffrey Yasskin2008-01-151-310/+0
| | | | | | | | | | | | | precision. This has been discussed at http://bugs.python.org/issue1682. It's useful primarily for teaching, but it also demonstrates how to implement a member of the numeric tower, including fallbacks for mixed-mode arithmetic. I expect to write a couple more patches in this area: * Rational.from_decimal() * Rational.trim/approximate() (maybe with different names) * Maybe remove the parentheses from Rational.__str__() * Maybe rename one of the Rational classes * Maybe make Rational('3/2') work.
* Replaced import of the 'new' module with 'types' module and added a ↵Christian Heimes2007-11-271-1/+1
| | | | deprecation warning to the 'new' module.
* A thread-less variant of brownian.py, submitted by Michele Simoniato.Guido van Rossum2007-11-261-0/+55
|
* Remove references to stdwin which was removed long ago.Neal Norwitz2007-05-131-2/+0
|
* Whitespace normalization.Tim Peters2007-04-251-1/+1
|
* Patch #1683328: fixes and enhancements for "unparse" demo.Georg Brandl2007-03-191-51/+50
|
* Patch #1552024: add decorator support to unparse.py demo script.Georg Brandl2006-10-271-0/+3
|
* Normalized a few cases of whitespace in function declarations.Martin Blais2006-06-062-38/+38
| | | | | | | | | | | | Found them using:: find . -name '*.py' | while read i ; do grep 'def[^(]*( ' $i /dev/null ; done find . -name '*.py' | while read i ; do grep ' ):' $i /dev/null ; done (I was doing this all over my own code anyway, because I'd been using spaces in all defs, so I thought I'd make a run on the Python code as well. If you need to do such fixes in your own code, you can use xx-rename or parenregu.el within emacs.)
* Add more whitespace; use a better socket nameAndrew M. Kuchling2006-06-032-5/+14
|
* Remove dangling referenceAndrew M. Kuchling2006-06-031-1/+0
|
* Remove xmlrpc/ directoryAndrew M. Kuchling2006-06-031-3/+0
|
* Remove xmlrpc demo -- it duplicates the SimpleXMLRPCServer module.Andrew M. Kuchling2006-06-031-75/+0
|
* This demo requires Medusa (not just asyncore); remove itAndrew M. Kuchling2006-06-031-104/+0
|
* Use functions; modernize codeAndrew M. Kuchling2006-06-031-60/+87
|
* Put code in a main() function; loosen up the spacing to match current code styleAndrew M. Kuchling2006-06-031-32/+45
|
* Docstring fix; use TrueAndrew M. Kuchling2006-06-031-2/+2
|
* Use true division, and the True valueAndrew M. Kuchling2006-06-031-12/+13
|
* Use True; value returned from main is unusedAndrew M. Kuchling2006-06-031-2/+2
|
* Some code tidying; use curses.wrapperAndrew M. Kuchling2006-06-031-67/+61
|
* Drop 0 parameterAndrew M. Kuchling2006-06-031-3/+3
|
* Update readmeAndrew M. Kuchling2006-06-031-4/+1
|
* Whitespace normalization.Tim Peters2006-04-101-19/+19
|
* Patch #1441452: Add more AST nodes.Martin v. Löwis2006-04-101-15/+236
|
* Patch #1462222: Fix Tix.Grid. Closes #1036406.Martin v. Löwis2006-04-101-0/+28
|
* Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.Neal Norwitz2006-03-1611-32/+31
|
* unparse.py can now unparse itself.Martin v. Löwis2006-02-281-2/+139
|
* Set EOL style to native.Tim Peters2006-02-281-158/+158
|