Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. | ||||
* | Update Canvas before computing width. Draw turtle at end of drawing circle. | Martin v. Löwis | 2002-09-22 | 1 | -0/+2 |
| | | | | Fixes #612595. Will backport to 2.2. | ||||
* | Patch #536117: Typo in turtle.py. | Martin v. Löwis | 2002-03-28 | 1 | -1/+1 |
| | | | | 2.2.2 candidate. | ||||
* | Applied SF patch #438424 by Josh Cogliati: | Guido van Rossum | 2001-08-09 | 1 | -4/+42 |
| | | | | | | | | | Python's logolike module turtle.py did not display the turtle except when actually drawing lines. This patch changes the turtle.py module so that it displays the turtle at all times when tracing is on. This is similar to the the way that logo works. When tracing is off the turtle will not be displayed. | ||||
* | Patch by kragen@pobox.com: When tracing is turned on, lines shorter | Guido van Rossum | 2001-01-01 | 1 | -0/+2 |
| | | | | | than a pixel don't get drawn at all. If you're building long curves made of such lines, this is a bad thing. | ||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 1 | -2/+2 |
| | |||||
* | Don't rename Tkinter to Tk; closes bug 115714 | Martin v. Löwis | 2000-10-01 | 1 | -6/+6 |
| | | | | Subclass Error from Exception. | ||||
* | Turtle graphics | Guido van Rossum | 1998-12-04 | 1 | -0/+343 |