Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
2ced87f3
Commit
2ced87f3
authored
Aug 27, 2014
by
Terry Jan Reedy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #22065: Remove the now unsed configGUI menu parameter and arguments.
parent
8450c533
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
Lib/turtledemo/__main__.py
Lib/turtledemo/__main__.py
+8
-10
No files found.
Lib/turtledemo/__main__.py
View file @
2ced87f3
...
...
@@ -180,7 +180,7 @@ class DemoWindow(object):
self
.
exitflag
=
False
if
filename
:
self
.
loadfile
(
filename
)
self
.
configGUI
(
NORMAL
,
DISABLED
,
DISABLED
,
DISABLED
,
self
.
configGUI
(
DISABLED
,
DISABLED
,
DISABLED
,
"Choose example from menu"
,
"black"
)
self
.
state
=
STARTUP
...
...
@@ -225,9 +225,7 @@ class DemoWindow(object):
turtle
.
RawTurtle
.
screens
=
[
_s_
]
return
canvas
def
configGUI
(
self
,
menu
,
start
,
stop
,
clear
,
txt
=
""
,
color
=
"blue"
):
self
.
mBar
.
entryconfigure
(
0
,
state
=
menu
)
def
configGUI
(
self
,
start
,
stop
,
clear
,
txt
=
""
,
color
=
"blue"
):
self
.
start_btn
.
config
(
state
=
start
,
bg
=
"#d00"
if
start
==
NORMAL
else
"#fca"
)
self
.
stop_btn
.
config
(
state
=
stop
,
...
...
@@ -276,7 +274,7 @@ class DemoWindow(object):
self
.
text
.
insert
(
"1.0"
,
chars
)
self
.
root
.
title
(
filename
+
" - a Python turtle graphics example"
)
reload
(
self
.
module
)
self
.
configGUI
(
NORMAL
,
NORMAL
,
DISABLED
,
DISABLED
,
self
.
configGUI
(
NORMAL
,
DISABLED
,
DISABLED
,
"Press start button"
,
"red"
)
self
.
state
=
READY
...
...
@@ -284,7 +282,7 @@ class DemoWindow(object):
self
.
refreshCanvas
()
self
.
dirty
=
True
turtle
.
TurtleScreen
.
_RUNNING
=
True
self
.
configGUI
(
DISABLED
,
DISABLED
,
NORMAL
,
DISABLED
,
self
.
configGUI
(
DISABLED
,
NORMAL
,
DISABLED
,
"demo running..."
,
"black"
)
self
.
screen
.
clear
()
self
.
screen
.
mode
(
"standard"
)
...
...
@@ -300,24 +298,24 @@ class DemoWindow(object):
self
.
state
=
DONE
result
=
"stopped!"
if
self
.
state
==
DONE
:
self
.
configGUI
(
NORMAL
,
NORMAL
,
DISABLED
,
NORMAL
,
self
.
configGUI
(
NORMAL
,
DISABLED
,
NORMAL
,
result
)
elif
self
.
state
==
EVENTDRIVEN
:
self
.
exitflag
=
True
self
.
configGUI
(
DISABLED
,
DISABLED
,
NORMAL
,
DISABLED
,
self
.
configGUI
(
DISABLED
,
NORMAL
,
DISABLED
,
"use mouse/keys or STOP"
,
"red"
)
def
clearCanvas
(
self
):
self
.
refreshCanvas
()
self
.
screen
.
_delete
(
"all"
)
self
.
scanvas
.
config
(
cursor
=
""
)
self
.
configGUI
(
NORMAL
,
NORMAL
,
DISABLED
,
DISABLED
)
self
.
configGUI
(
NORMAL
,
DISABLED
,
DISABLED
)
def
stopIt
(
self
):
if
self
.
exitflag
:
self
.
clearCanvas
()
self
.
exitflag
=
False
self
.
configGUI
(
NORMAL
,
NORMAL
,
DISABLED
,
DISABLED
,
self
.
configGUI
(
NORMAL
,
DISABLED
,
DISABLED
,
"STOPPED!"
,
"red"
)
turtle
.
TurtleScreen
.
_RUNNING
=
False
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment