summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_turtle.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.12] gh-107805: Fix signatures of module-level generated functions in ↵Miss Islington (bot)2023-09-011-0/+20
| | | | | | | | | `turtle` (GH-107807) (#108749) gh-107805: Fix signatures of module-level generated functions in `turtle` (GH-107807) (cherry picked from commit 044b8b3b6a65e6651b161e3badfa5d57c666db19) Co-authored-by: Nikita Sobolev <mail@sobolevn.me> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
* gh-88773: Added teleport method to Turtle library (#103974)Liam Gersten2023-04-301-0/+20
| | | | | | | | | | | Add a `teleport` method to `turtle` module turtle instances that acts a lot like `goto`, _but_ ensures the pen is up while warping to the new position to and can control shape filling behavior as part of the jump. Based on an educator user feature request. --------- Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: Gregory P. Smith <greg@krypto.org>
* bpo-44734: Fix floating point precision in test_turtle (GH-30910)Karolina Surma2022-01-271-1/+1
|
* bpo-44734: Fix precision in turtle tests (GH-27343)Logan Jones2021-07-261-11/+3
|
* bpo-41720: Add "return NotImplemented" in turtle.Vec2D.__rmul__(). (GH-22092)Serhiy Storchaka2020-09-071-2/+16
|
* bpo-40275: Use new test.support helper submodules in tests (GH-21743)Hai Shi2020-08-061-3/+4
|
* bpo-40275: Use new test.support helper submodules in tests (GH-21412)Hai Shi2020-07-091-1/+3
|
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | * Fix typos in comments, docs and test names * Update test_pyparse.py account for change in string length * Apply suggestion: splitable -> splittable Co-Authored-By: Terry Jan Reedy <tjreedy@udel.edu> * Apply suggestion: splitable -> splittable Co-Authored-By: Terry Jan Reedy <tjreedy@udel.edu> * Apply suggestion: Dealloccte -> Deallocate Co-Authored-By: Terry Jan Reedy <tjreedy@udel.edu> * Update posixmodule checksum. * Reverse idlelib changes.
* Issue #21916: Added more tests for the turtle module.Serhiy Storchaka2016-06-051-0/+36
| | | | Original patch by Jelle Zijlstra.
* Issue #21916: Added tests for the turtle module.Serhiy Storchaka2016-06-041-0/+400
Patch by ingrid, Gregory Loyse and Jelle Zijlstra.