aboutsummaryrefslogtreecommitdiffstats
path: root/Demo
Commit message (Collapse)AuthorAgeFilesLines
* bpo-27593: Updates Windows build to use information from git (#262) (#448)Steve Dower2017-03-041-0/+0
| | | | | | | | * bpo-27593: Updates Windows build to use information from git (#262) * bpo-27593: Updates Windows build to use information from git * Fixes git command (#451)
* Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-2815-15/+15
| | | | Based on patch by Ville Skyttä.
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
| | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed to fix the grammar.
* Issue #27171: Fix typos in documentation, code comments, and testsMartin Panter2016-06-021-1/+1
|
* Issue #27125: Fix various errors like “will [be] inherited”Martin Panter2016-05-291-1/+1
|
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-261-2/+2
| | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
* Corrections for a/an in code comments and documentationMartin Panter2016-05-081-1/+1
|
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-172-2/+2
|
* Issue #6639: Module-level turtle functions no longer raise TclError afterSerhiy Storchaka2015-02-221-0/+4
| | | | closing the window.
* nuke ancient script with dubious license (closes #12987)Benjamin Peterson2014-12-022-421/+0
|
* De-'colour'ize stdlib except for idlelib.configDialog.Terry Jan Reedy2014-10-092-3/+3
| | | | Tweak docstrigs and comments in affected functions in idlelib.configHandler.
* Issue #22051: remove unneeded reload that allowed bad code.Terry Jan Reedy2014-09-031-1/+0
|
* Modernize turtledemo with conditional expressions; remove duplicate line.Terry Jan Reedy2014-07-271-19/+6
|
* Issue #22061: remove call of useless function slated for removal.Terry Jan Reedy2014-07-251-1/+0
|
* Issue #22053: Make help work, after previous patch for this issue disabled itTerry Jan Reedy2014-07-251-18/+9
| | | | by removing global 'demo'. Refactor and remove duplicate code.
* Issue #22053: Cleanup turtledemo start and stop and fix debug shutdown warning.Terry Jan Reedy2014-07-231-15/+6
|
* Issue #21597: Turtledemo text pane can now be widened to view or copy completeTerry Jan Reedy2014-07-231-75/+92
| | | | | | lines or narrowed for small screens. Issie #19132: Turtledemo buttons no longer disappear when window is shrun. Patch mostly by Lita Cho (21597) using idea from patch by Jan Kanis (18132).
* Issue #21882: In turtle demos, remove module scope gui and sys calls byTerry Jan Reedy2014-06-306-70/+72
| | | | moving them to the module's main function.
* Issue #14117: Inprove help text and docstrings, some for clarity, some just toTerry Jan Reedy2014-06-245-45/+46
| | | | fit in the default width of the text window (45 chars).
* Issue #21824: Turtledemo 2.7 help menu entries now display help text insteadTerry Jan Reedy2014-06-221-11/+15
| | | | of help file name.
* Issue #21823: Catch turtle.Terminator exceptions in turtledemo.Terry Jan Reedy2014-06-223-25/+37
| | | | Add note to demohelp.txt about doing so.
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-1644-0/+0
| | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface.
* Issue #18448: Fix a typo in Demo/newmetaclasses/Eiffel.py.Serhiy Storchaka2013-07-161-1/+1
|
* Remove duplication.Ezio Melotti2011-10-192-2/+2
|
* #12677: correct turtle orientation in docSandro Tosi2011-08-071-2/+2
|
* Add updated .hgeol file and fix newlines in the 2.7 branch.Georg Brandl2011-03-051-227/+227
|
* Merged revisions 85429 via svnmerge fromBenjamin Peterson2010-10-132-374/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85429 | benjamin.peterson | 2010-10-13 16:59:36 -0500 (Wed, 13 Oct 2010) | 1 line remove obselete import implementation #7287 ........
* Merged revisions 82594,82599 via svnmerge fromGeorg Brandl2010-07-271-21/+35
| | | | | | | | | | | | | | 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. ........
* Update Demo/parser directory; backport unparse fixes from py3k.Mark Dickinson2010-06-305-170/+297
|
* unparse.py: fix mispaced parentheses in chained comparisonsMark Dickinson2010-06-282-1/+5
|
* Fix typo in test_unparse.py.Mark Dickinson2010-06-281-1/+1
|
* Fix some shallow bugs in Demo/parser/unparse.py, and add tests:Mark Dickinson2010-06-282-6/+77
| | | | | | | | - 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.
* #5753: update demo.c to use PySys_SetArgvEx(), and add a commentAndrew M. Kuchling2010-06-111-3/+12
|
* Edit comments for current Python; bump version number of PythonAndrew M. Kuchling2010-06-111-3/+3
|
* #8616: add new turtle demo "nim".Georg Brandl2010-05-291-0/+227
|
* #8616: update module nameGeorg Brandl2010-05-241-1/+1
|
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-093-300/+300
|
* In a number of places code still reversRonald Oussoren2010-05-051-26/+5
| | | | | | | | | 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.
* normalize shebang lines to #!/usr/bin/env pythonBenjamin Peterson2010-03-1117-17/+17
|
* remove svn:executable from scripts without a shebang lineBenjamin Peterson2010-03-0846-0/+0
|
* Fix a demo.Georg Brandl2009-10-251-10/+4
|
* Overhaul of Demo/xml.Georg Brandl2009-10-113-39/+52
|
* Remove ftpstats script, the daemon whose log files it reads is long gone.Georg Brandl2009-10-112-146/+0
|
* Update lpwatch script.Georg Brandl2009-10-113-52/+44
|
* Fix variable.Georg Brandl2009-10-111-1/+1
|
* Use getopt in script.py demo.Georg Brandl2009-10-111-8/+17
|
* Set missing executable property on scriptsMark Dickinson2009-10-112-0/+0
|
* Fix 'primes 0 1'Mark Dickinson2009-10-111-1/+1
|
* Update primes script.Georg Brandl2009-10-112-15/+18
|
* Remove useless script "mkrcs" and update README.Georg Brandl2009-10-112-64/+3
|