Commit Graph

856 Commits

Author SHA1 Message Date
Georg Brandl 406f7a99fd Merged revisions 82594,82599 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r82594 | georg.brandl | 2010-07-05 22:13:41 +0200 (Mo, 05 Jul 2010) | 1 line

  Update Vec class constructor, remove indirection via function, use operator module.
........
  r82599 | alexander.belopolsky | 2010-07-05 23:44:05 +0200 (Mo, 05 Jul 2010) | 1 line

  "Modernized" the demo a little.
........
2010-07-27 08:45:35 +00:00
Mark Dickinson 2037913507 Update Demo/parser directory; backport unparse fixes from py3k. 2010-06-30 14:19:56 +00:00
Mark Dickinson 0187be0825 unparse.py: fix mispaced parentheses in chained comparisons 2010-06-28 19:54:19 +00:00
Mark Dickinson b83a1ff76b Fix typo in test_unparse.py. 2010-06-28 19:34:15 +00:00
Mark Dickinson 623b979553 Fix some shallow bugs in Demo/parser/unparse.py, and add tests:
- insert commas between entries in del statement
  - left and right shifts were represented as >> and << (respectively); reverse
  - unindent properly after for: else:  or while: else:
  - add parens around the result of an unary operation
  - add parens around negative numbers, to avoid turning (-1)**2 into -1**2.
2010-06-28 19:31:41 +00:00
Andrew M. Kuchling de0aeaa432 #5753: update demo.c to use PySys_SetArgvEx(), and add a comment 2010-06-11 00:16:08 +00:00
Andrew M. Kuchling a0b0c6f23c Edit comments for current Python; bump version number of Python 2010-06-11 00:14:34 +00:00
Georg Brandl 84a8d8fbf2 #8616: add new turtle demo "nim". 2010-05-29 08:46:18 +00:00
Georg Brandl 574a857640 #8616: update module name 2010-05-24 21:37:54 +00:00
Antoine Pitrou c83ea137d7 Untabify C files. Will watch buildbots. 2010-05-09 14:46:46 +00:00
Ronald Oussoren 9545a23c7f In a number of places code still revers
to "sys.platform == 'mac'" and that is
dead code because it refers to a platform
that is no longer supported (and hasn't been
supported for several releases).

Fixes issue #7908 for the trunk.
2010-05-05 19:09:31 +00:00
Benjamin Peterson 9cf41d0c9d normalize shebang lines to #!/usr/bin/env python 2010-03-11 22:33:25 +00:00
Benjamin Peterson cd0ace391c remove svn:executable from scripts without a shebang line 2010-03-08 02:11:06 +00:00
Georg Brandl f1ca811abb Fix a demo. 2009-10-25 20:25:43 +00:00
Georg Brandl 32855b6dcd Overhaul of Demo/xml. 2009-10-11 15:06:44 +00:00
Georg Brandl b3f9d66ca3 Remove ftpstats script, the daemon whose log files it reads is long gone. 2009-10-11 14:49:37 +00:00
Georg Brandl 393c823245 Update lpwatch script. 2009-10-11 14:23:49 +00:00
Georg Brandl 8ec30e835f Fix variable. 2009-10-11 12:03:01 +00:00
Georg Brandl ce662d0467 Use getopt in script.py demo. 2009-10-11 12:00:18 +00:00
Mark Dickinson 9bb796597d Set missing executable property on scripts 2009-10-11 10:01:17 +00:00
Mark Dickinson ab6d373aa0 Fix 'primes 0 1' 2009-10-11 09:35:57 +00:00
Georg Brandl 4271ecaf72 Update primes script. 2009-10-11 08:48:28 +00:00
Georg Brandl 6e62c56416 Remove useless script "mkrcs" and update README. 2009-10-11 08:45:03 +00:00
Georg Brandl 86d38e9ecc Update markov demo. 2009-10-11 08:39:16 +00:00
Georg Brandl 30fd2bb884 Update morse script, avoid globals, use iterators. 2009-10-11 08:18:44 +00:00
Georg Brandl 723fb3adc8 Modernize all around (dont ask me how useful that script is nowadays...) 2009-10-10 22:26:45 +00:00
Georg Brandl ffc87d5c8c Style fixes. 2009-10-10 22:03:43 +00:00
Georg Brandl a0bcc27e65 Modernize factorisation demo (mostly augassign.) 2009-10-10 21:55:11 +00:00
Georg Brandl 3d072c9587 Show use of range() step argument nicely. 2009-10-10 21:47:31 +00:00
Georg Brandl 0b798a9d4d Remove outdated comment and fix a few style issues. 2009-10-10 21:43:21 +00:00
Benjamin Peterson 75b32c9c76 remove script which uses long gone module 2009-10-10 21:15:58 +00:00
Georg Brandl 69f81a8b68 Remove unneeded "L" suffixes. 2009-10-10 21:10:05 +00:00
Georg Brandl 18cb949807 Bring old demo up-to-date. 2009-10-10 21:07:35 +00:00
R. David Murray ddfb6cdc2b Applying patches backported from 3.1, by Gregor Lingl. 2009-09-28 18:29:28 +00:00
R. David Murray 1666f19317 Issue 6340: update by Gregor Lingl of his tdemo_chaos demo program.
Functionally equivalent, clearer code, English comments.
2009-06-25 17:29:39 +00:00
Amaury Forgeot d'Arc 388637d373 Remove last remnants of the ipaddr package.
The changes in mcast.py come from the first version of the patch for issue5379.
2009-06-23 21:53:46 +00:00
Gregory P. Smith 6493d788f0 Issue 5379 - applies patch supplied by philipp hagemeister to fix
many problems with the ancient mcast.py demo code.
2009-05-03 18:42:15 +00:00
Mark Dickinson 3e4caeb3bf Issue #5341: Fix a variety of spelling errors. 2009-02-21 20:27:01 +00:00
Guilherme Polo 4eae078448 Demos for ttk added. 2009-01-28 15:56:01 +00:00
Martin v. Löwis e563aa4383 Issue #3965: Allow repeated calls to turtle.Screen, by making it a
true singleton object.

Reviewed by Gregor Lingl.
2008-09-29 22:09:07 +00:00
Andrew M. Kuchling d9a9c1066c Update uses of string exceptions 2008-09-13 01:57:25 +00:00
Andrew M. Kuchling 0bef15846f Fix SyntaxError 2008-09-13 01:56:56 +00:00
Andrew M. Kuchling c997f178ed Subclass exception 2008-09-13 01:48:36 +00:00
Andrew M. Kuchling dda0ce7285 Remove semicolon 2008-09-13 01:47:02 +00:00
Andrew M. Kuchling 2a9b9cbea0 #687648 from Robert Schuppenies: use classic division. 2008-09-13 01:43:28 +00:00
Andrew M. Kuchling e91fcbdf69 #687648 from Robert Schuppenies: use classic division. From me: remove two stray semicolons 2008-09-13 01:42:55 +00:00
Andrew M. Kuchling 8bd9a2f7db #687648 from Robert Schuppenies: use classic division. From me: don't use string exception; add __main__ section 2008-09-13 01:34:41 +00:00
Andrew M. Kuchling c2dc269288 #687648 from Robert Schuppenies: use classic division. From me: don't use string exception; flush stdout after printing 2008-09-13 01:27:33 +00:00
Andrew M. Kuchling 949f71b446 #687648 from Robert Schuppenies: use classic division. (RM Barry gave permission to update the demos.) 2008-09-13 01:22:08 +00:00
Benjamin Peterson 7c972f971c get unparse to at least unparse its self 2008-08-19 17:59:23 +00:00