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
7364c47f
Commit
7364c47f
authored
Jul 31, 2001
by
Steven M. Gava
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
activate new about dialog for testing
parent
6948f07d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
Lib/idlelib/EditorWindow.py
Lib/idlelib/EditorWindow.py
+7
-5
No files found.
Lib/idlelib/EditorWindow.py
View file @
7364c47f
...
...
@@ -17,6 +17,7 @@ import webbrowser
import
idlever
import
WindowList
from
IdleConf
import
idleconf
import
aboutDialog
# The default tab setting for a Text widget, in average-width characters.
TK_TABWIDTH_DEFAULT
=
8
...
...
@@ -88,7 +89,7 @@ by Guido van Rossum.
IDLEfork is an official experimental development version of IDLE.
\
Succesful new features in IDLEfork will be mereged back in to stable IDLE.
This version of IDLEfork is based on the work in stable IDLE version
%s
,
\
This version of IDLEfork is based on the work in stable IDLE version
0.8
,
\
IDLE fork 0.7.1 released by David Scherer, and the VPython idle fork.
See README.txt and NEWS.txt for more details on this verion of IDLEfork.
...
...
@@ -96,7 +97,7 @@ See README.txt and NEWS.txt for more details on this verion of IDLEfork.
WARNING: IDLEfork is at this stage alpha quality software, expect things
\
to be broken.
"""
%
(
idlever
.
IDLE
FORK_VERSION
,
idlever
.
IDLE
_VERSION
)
"""
%
(
idlever
.
IDLE_VERSION
)
class
EditorWindow
:
...
...
@@ -296,9 +297,10 @@ class EditorWindow:
self
.
rmenu
=
rmenu
def
about_dialog
(
self
,
event
=
None
):
tkMessageBox
.
showinfo
(
self
.
about_title
,
self
.
about_text
,
master
=
self
.
text
)
#tkMessageBox.showinfo(self.about_title, self.about_text,
# master=self.text)
aboutDialog
.
AboutDialog
(
self
.
top
,
'About IDLEfork'
)
helpfile
=
"help.txt"
def
good_advice
(
self
,
event
=
None
):
...
...
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