diff options
author | Marek Madejski <marekmadejski@yandex.com> | 2020-09-01 16:42:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-01 16:42:41 (GMT) |
commit | 6844b56176c41f0a0e25fcd4fef5463bcdbc7d7c (patch) | |
tree | 2f174f55b1c20af75d813c02a08e89080b677080 /Misc | |
parent | e6905e4c82cc05897dc1bf5ab2b5b94b2b043a7f (diff) | |
download | cpython-6844b56176c41f0a0e25fcd4fef5463bcdbc7d7c.zip cpython-6844b56176c41f0a0e25fcd4fef5463bcdbc7d7c.tar.gz cpython-6844b56176c41f0a0e25fcd4fef5463bcdbc7d7c.tar.bz2 |
bpo-41528: Use math module in turtle (GH-21837)
Use angle-related functions from math module instead of reinventing the wheel.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-08-12-07-43-31.bpo-41528.bu83oD.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-08-12-07-43-31.bpo-41528.bu83oD.rst b/Misc/NEWS.d/next/Library/2020-08-12-07-43-31.bpo-41528.bu83oD.rst new file mode 100644 index 0000000..a4ba57c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-08-12-07-43-31.bpo-41528.bu83oD.rst @@ -0,0 +1 @@ +turtle uses math module functions to convert degrees to radians and vice versa and to calculate vector norm
\ No newline at end of file |