diff options
author | DongWoo Son <99868561+dnd-qodqks@users.noreply.github.com> | 2023-09-25 21:37:40 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-25 21:37:40 +0900 |
commit | 2302fa17cf3075bc8881ea3249ef4e4351fb0f99 (patch) | |
tree | 2139629d7f8648d627f6e81eb8aa40a9e62b1449 /Lib/turtle.py | |
parent | 4e478534d73e46aea5d10fb4e0ddf2c34440d0f6 (diff) | |
download | cpython-2302fa17cf3075bc8881ea3249ef4e4351fb0f99.tar.gz cpython-2302fa17cf3075bc8881ea3249ef4e4351fb0f99.zip |
no-issue: Capitalise 'PhotoImage' (gh-108958)
Diffstat (limited to 'Lib/turtle.py')
-rw-r--r-- | Lib/turtle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/turtle.py b/Lib/turtle.py index 6119b7a447e..7bfe81351b0 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -874,7 +874,7 @@ class Shape(object): if isinstance(data, str): if data.lower().endswith(".gif") and isfile(data): data = TurtleScreen._image(data) - # else data assumed to be Photoimage + # else data assumed to be PhotoImage elif type_ == "compound": data = [] else: |