bpo-40431: Fix syntax typo in turtledemo (GH-19777)

***   File "/usr/lib64/python3.9/turtledemo/__main__.py", line 275
        bg="#d00" if clear == NORMAL else"#fca")
                                        ^
    SyntaxError: invalid string prefix
This commit is contained in:
Miro Hrončok 2020-04-29 02:00:07 +02:00 committed by GitHub
parent 8852ad4208
commit 49f70db83e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -272,7 +272,7 @@ class DemoWindow(object):
self.stop_btn.config(state=stop,
bg="#d00" if stop == NORMAL else "#fca")
self.clear_btn.config(state=clear,
bg="#d00" if clear == NORMAL else"#fca")
bg="#d00" if clear == NORMAL else "#fca")
self.output_lbl.config(text=txt, fg=color)
def makeLoadDemoMenu(self, master):

View File

@ -0,0 +1 @@
Fix a syntax typo in ``turtledemo`` that now raises a ``SyntaxError``.