Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |