Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [2.7] bpo-35250: Correct argument name "num" -> "btn" in turtle docs. ↵ | Serhiy Storchaka | 2018-12-05 | 1 | -4/+4 |
| | | | | | | | (GH-10565). (GH-10943) (cherry picked from commit 4edeaeac4c194ba5d09187640b5cfca5e03be617) Co-authored-by: Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com> | ||||
* | Issue #28998: More APIs now support longs as well as ints. | Serhiy Storchaka | 2016-12-27 | 1 | -2/+2 |
| | |||||
* | Issue #28515: Fixed py3k warnings. | Serhiy Storchaka | 2016-10-25 | 1 | -1/+2 |
| | |||||
* | Correct spelling in documentation and code comments | Martin Panter | 2016-09-10 | 1 | -1/+1 |
| | |||||
* | Issue #27238: Got rid of bare excepts in the turtle module. Original patch | Serhiy Storchaka | 2016-06-14 | 1 | -9/+9 |
| | | | | by Jelle Zijlstra. | ||||
* | Issue #6639: Module-level turtle functions no longer raise TclError after | Serhiy Storchaka | 2015-02-22 | 1 | -34/+32 |
| | | | | closing the window. | ||||
* | Issue #21868: Prevent turtle crash due to invalid undo buffer size. | Raymond Hettinger | 2014-07-21 | 1 | -1/+1 |
| | |||||
* | Issue #21882: In turtle demos, remove module scope gui and sys calls by | Terry Jan Reedy | 2014-06-30 | 1 | -1/+1 |
| | | | | moving them to the module's main function. | ||||
* | Issue #15618: Make turtle.py itself work when run from a module with | Terry Jan Reedy | 2014-03-06 | 1 | -9/+9 |
| | | | | | | | | from __future__ import unicode_literals. Initial patch by Juancarlo Añez. The demos at the end of turtle.py appear to be the only test, so I changed some of the strings to unicode with a u prefix. If os.path.isfile or the Tk image function have problems with Unicode input, that would be different issue. | ||||
* | #18705: fix a number of typos. Patch by Févry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -4/+4 |
| | |||||
* | Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*, | Terry Jan Reedy | 2013-03-11 | 1 | -2/+2 |
| | | | | as reported by Serhiy Storchaka and Matthew Barnett. | ||||
* | Issue #13439: Fix many errors in turtle docstrings. | Petri Lehtinen | 2011-12-02 | 1 | -54/+50 |
| | |||||
* | Remove duplication. | Ezio Melotti | 2011-10-19 | 1 | -1/+1 |
| | |||||
* | #12677: correct turtle orientation in doc | Sandro Tosi | 2011-08-07 | 1 | -2/+2 |
| | |||||
* | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -6/+6 |
| | |||||
* | #11515: fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-15 | 1 | -2/+2 |
| | |||||
* | Merged revisions 85930 via svnmerge from | Alexander Belopolsky | 2010-11-05 | 1 | -1/+4 |
| | | | | | | | | | | http://svn.python.org/projects/python/branches/py3k ........ r85930 | alexander.belopolsky | 2010-10-29 13:16:49 -0400 (Fri, 29 Oct 2010) | 1 line Issue 7061: Explained 'gon' ........ | ||||
* | Syntax cleanup `== None` -> `is None` | Florent Xicluna | 2010-03-25 | 1 | -5/+5 |
| | |||||
* | More yearly updates. | Georg Brandl | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | replace has_key with 'in' operator | Benjamin Peterson | 2009-10-09 | 1 | -2/+2 |
| | |||||
* | Applying patches backported from 3.1, by Gregor Lingl. | R. David Murray | 2009-09-28 | 1 | -4/+9 |
| | |||||
* | Issue #5341: Fix a variety of spelling errors. | Mark Dickinson | 2009-02-21 | 1 | -1/+1 |
| | |||||
* | Issue #5295: Typos in turtle.py | Mark Dickinson | 2009-02-20 | 1 | -21/+21 |
| | |||||
* | Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__ | Martin v. Löwis | 2008-11-19 | 1 | -2/+2 |
| | |||||
* | Issue #3965: Allow repeated calls to turtle.Screen, by making it a | Martin v. Löwis | 2008-09-29 | 1 | -28/+31 |
| | | | | | | true singleton object. Reviewed by Gregor Lingl. | ||||
* | #3950 fix missing scale factors in turtle.py | Benjamin Peterson | 2008-09-24 | 1 | -1/+1 |
| | | | | reviewers: Georg, Benjamin | ||||
* | Patch #1513695: New turtle module, with demos. | Martin v. Löwis | 2008-06-04 | 1 | -750/+3822 |
| | |||||
* | Tkinter rename reversal: remove tkinter package, adapt imports and docs. | Georg Brandl | 2008-05-20 | 1 | -5/+5 |
| | |||||
* | Tkinter renaming reversal: move modules back in their place. | Georg Brandl | 2008-05-20 | 1 | -0/+956 |
| | |||||
* | Tkinter renaming reversal: Delete all stubs from lib-tk. | Georg Brandl | 2008-05-20 | 1 | -8/+0 |
| | |||||
* | Tkinter rename, step 2: fix imports and add stub modules. | Georg Brandl | 2008-05-16 | 1 | -0/+8 |
| | |||||
* | Step 1 of Tkinter renaming: move lib-tk modules into a new "tkinter" package. | Georg Brandl | 2008-05-16 | 1 | -956/+0 |
| | |||||
* | #2503 make singletons compared with "is" not == or != | Benjamin Peterson | 2008-03-29 | 1 | -4/+4 |
| | | | | Thanks to Wummel for the patch | ||||
* | Fix turtle so that you can launch the demo2 function on its own instead of only | Brett Cannon | 2006-10-16 | 1 | -1/+1 |
| | | | | when the module is launched as a script. | ||||
* | Fix docstring punctuation | Andrew M. Kuchling | 2006-07-29 | 1 | -2/+2 |
| | |||||
* | Whitespace normalization.v2.5b2 | Tim Peters | 2006-07-11 | 1 | -1/+1 |
| | |||||
* | Patch #1519566: Remove unused _tofill member. | Martin v. Löwis | 2006-07-10 | 1 | -12/+23 |
| | | | | | Make begin_fill idempotent. Update demo2 to demonstrate filling of concave shapes. | ||||
* | Whitespace normalization. | Tim Peters | 2006-07-08 | 1 | -2/+2 |
| | |||||
* | Bug #1514693: Update turtle's heading when switching between | Martin v. Löwis | 2006-07-03 | 1 | -1/+6 |
| | | | | degrees and radians. | ||||
* | Reimplement turtle.circle using a polyline, to allow correct | Martin v. Löwis | 2006-07-03 | 1 | -48/+14 |
| | | | | filling of arcs. Also fixes #1514693. | ||||
* | Only setup canvas when it is first created. | Martin v. Löwis | 2006-07-03 | 1 | -1/+1 |
| | | | | Fixes #1514703 | ||||
* | Fix end_fill(). | Georg Brandl | 2006-06-28 | 1 | -1/+1 |
| | |||||
* | Patch #812986: Update the canvas even if not tracing. | Martin v. Löwis | 2006-06-17 | 1 | -0/+1 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-05-18 | 1 | -11/+11 |
| | |||||
* | Patch #1486962: Several bugs in the turtle Tk demo module were fixed | Georg Brandl | 2006-05-17 | 1 | -18/+565 |
| | | | | and several features added, such as speed and geometry control. | ||||
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -5/+5 |
| | | | | From SF patch #852334. | ||||
* | SF bug #685773: 2 (more) bugs in turtle | Raymond Hettinger | 2003-06-09 | 1 | -0/+1 |
| | | | | | | | The docs recommend filling by fill(1), drawing commands, fill(0). However, the filling did not actually take place until the next draw command. Fixed by issuing a null draw command at the end of the fill method. | ||||
* | SF patch #701494: more apply removals | Raymond Hettinger | 2003-04-06 | 1 | -2/+2 |
| | |||||
* | Whitespace normalization (get rid of tabs). | Guido van Rossum | 2002-09-29 | 1 | -4/+4 |
| | |||||
* | Add the bulk of SF patch 595111 by Attila Babo. | Guido van Rossum | 2002-09-23 | 1 | -2/+42 |
| | | | | | | | | | | | | This adds new methods heading(), setheading(), position(), window_width(), window_height(), setx(), and sety(), to make this more functionality-compatible with Logo turtle graphics (Attila's last words, not mine :-). I had to fix the sety() code which was broken in Attila's patch. I'm not adopting the functionality change that Attila claimed was a bugfix (no output without tracing), because I disagree that it's a bug. |