Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 33.9k
gh-88773: Added teleport method to Turtle library#103974
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Uh oh!
There was an error while loading. Please reload this page.
Merged
Changes from all commits
Commits
Show all changes
26 commits Select commit Hold shift + click to select a range
a51d835 Working teleport method
liam-gersten 7986926 Handle filling with teleport method
liam-gersten 1054b34 Teleport method documentation
liam-gersten af7c1c6 Merge branch 'main' into TurtleTeleportMethod
liam-gersten 5871c2c 📜🤖 Added by blurb_it.
blurb-it[bot] 494f478 Fixed NEWS entry
liam-gersten 2fd8eda Update Misc/NEWS.d/next/Library/2023-04-28-18-04-23.gh-issue-88773.xX…
terryjreedy e89549e Merge branch 'main' into TurtleTeleportMethod
liam-gersten ba2920e Made new coord assignment more concise
liam-gersten 01dd697 Merge branch 'TurtleTeleportMethod' of https://github.com/liam-gerste…
liam-gersten f8a9681 Teleport documentation in Doc/library/turtle.rst
liam-gersten 7cec9b6 Update Doc/library/turtle.rst
liam-gersten eec5411 Update Misc/NEWS.d/next/Library/2023-04-28-18-04-23.gh-issue-88773.xX…
liam-gersten ca3d9c5 Partial teleport method in TNavigator for testing in TestTNavigator
liam-gersten 02712b3 Partial teleport method in TPen for testing in TestTPen
liam-gersten 8db9bf3 Teleport tests in TestTNavigator and TestTPen
liam-gersten 4272101 Merge branch 'main' into TurtleTeleportMethod
liam-gersten ae01a3e Made teleport appear in alphabetical order
liam-gersten 43f8a69 Merge branch 'TurtleTeleportMethod' of https://github.com/liam-gerste…
liam-gersten 07ae3da Attempt to fix the doctests.
gpshead d648f52 Mention fill_gap in the teleport prototype.
gpshead 2baaf85 Make fill_gap a keyword only argument.
gpshead 203a0f3 Align docs with fill_gap being keyword only.
gpshead dac054e Testing changes for fill_gap arg and assertFalse
liam-gersten 9a38e8a Merge branch 'main' into TurtleTeleportMethod
liam-gersten fc880c8 Merge branch 'main' into TurtleTeleportMethod
liam-gersten File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions 1 Misc/NEWS.d/next/Library/2023-04-28-18-04-23.gh-issue-88773.xXCNJw.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Added :func:`turtle.teleport` to the :mod:`turtle` module to move a turtle to a new point without tracing a line, visible or invisible. Patch by Liam Gersten. |
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.