Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3379b3d
Add context managers for turtle.fill and turtle.poly
yngvem Oct 6, 2024
879d886
Add documentation
MarieRoald Oct 20, 2024
54f709c
Add context manager to turtle.TurtleScreen for disabling auto-update
MarieRoald Oct 27, 2024
437c8ce
Forward functions correctly
yngvem Oct 27, 2024
d11d8f9
Add documentation
yngvem Oct 27, 2024
1f04ee4
πŸ“œπŸ€– Added by blurb_it.
blurb-it[bot] Nov 3, 2024
3947de1
Fix typo in docs
MarieRoald Nov 3, 2024
5ee489b
Apply suggestions from code review
MarieRoald Nov 8, 2024
28a5ac6
Address review comments
MarieRoald Nov 8, 2024
6621bd3
Apply suggestions from code review
MarieRoald Nov 8, 2024
2f5c488
Address review comments
MarieRoald Nov 8, 2024
302a1ed
Apply suggestions from code review
MarieRoald Nov 9, 2024
ad779d5
Use setUp for unit tests
yngvem Nov 9, 2024
fd89c95
Address review comments
yngvem Nov 9, 2024
fe39751
Add missing blank line
MarieRoald Nov 9, 2024
0a5e250
Update Lib/turtle.py
MarieRoald Nov 9, 2024
6d381ec
Apply suggestions from code review
MarieRoald Nov 14, 2024
42d678d
Update Lib/turtle.py
MarieRoald Nov 14, 2024
7928306
Address reviewer comments
MarieRoald Nov 14, 2024
815a8a3
Update Lib/test/test_turtle.py
MarieRoald Dec 18, 2024
fc01695
Merge branch 'main' into fix-issue-126349
hugovk Dec 29, 2024
8487336
Re-sort
hugovk Dec 29, 2024
401c07f
Merge branch 'main' into fix-issue-126349
erlend-aasland Dec 30, 2024
3f2b4ef
Pull in main and resolve conflicts
erlend-aasland Dec 30, 2024
0c2fca0
Remove unneeded stylistic change; remove unprintable char from NEWS e…
erlend-aasland Dec 30, 2024
6115eef
Change assert to self.assertEqual
MarieRoald Jan 5, 2025
11d9bc3
Change assert to self.assertEqual
MarieRoald Jan 18, 2025
061fe2a
Improve usage of unittest.mock.patch
MarieRoald Jan 18, 2025
32bbf68
Merge branch 'main' into fix-issue-126349
MarieRoald Jan 18, 2025
b2ab84b
Merge branch 'main' into fix-issue-126349
MarieRoald Jan 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
πŸ“œπŸ€– Added by blurb_it.
  • Loading branch information
blurb-it[bot] authored Nov 3, 2024
commit 1f04ee4cc9f958b22de8b757026b0b58b940443c
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Add :func:`turtle.fill`, :func:`turtle.poly` and :func:`turtle.no_animation` context managers.
Patch by Marie Roald and Yngve Mardal Moe.