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
a2946a43
Commit
a2946a43
authored
Jul 24, 2006
by
Kurt B. Kaiser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- EditorWindow.test() was failing. Bug 1417598
M EditorWindow.py M ScriptBinding.py M NEWS.txt
parent
b3c4d16e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
Lib/idlelib/EditorWindow.py
Lib/idlelib/EditorWindow.py
+3
-2
Lib/idlelib/NEWS.txt
Lib/idlelib/NEWS.txt
+2
-0
Lib/idlelib/ScriptBinding.py
Lib/idlelib/ScriptBinding.py
+1
-1
No files found.
Lib/idlelib/EditorWindow.py
View file @
a2946a43
...
...
@@ -95,11 +95,12 @@ class EditorWindow(object):
self
.
tkinter_vars
=
flist
.
vars
#self.top.instance_dict makes flist.inversedict avalable to
#configDialog.py so it can access all EditorWindow instaces
self
.
top
.
instance_dict
=
flist
.
inversedict
self
.
top
.
instance_dict
=
flist
.
inversedict
else
:
self
.
tkinter_vars
=
{}
# keys: Tkinter event names
# values: Tkinter variable instances
self
.
recent_files_path
=
os
.
path
.
join
(
idleConf
.
GetUserCfgDir
(),
self
.
top
.
instance_dict
=
{}
self
.
recent_files_path
=
os
.
path
.
join
(
idleConf
.
GetUserCfgDir
(),
'recent-files.lst'
)
self
.
vbar
=
vbar
=
Scrollbar
(
top
,
name
=
'vbar'
)
self
.
text_frame
=
text_frame
=
Frame
(
top
)
...
...
Lib/idlelib/NEWS.txt
View file @
a2946a43
...
...
@@ -3,6 +3,8 @@ What's New in IDLE 1.2c1?
*Release date: XX-XXX-2006*
- EditorWindow.test() was failing. Bug 1417598
- EditorWindow failed when used stand-alone if sys.ps1 not set.
Bug 1010370 Dave Florek
...
...
Lib/idlelib/ScriptBinding.py
View file @
a2946a43
...
...
@@ -51,7 +51,7 @@ class ScriptBinding:
# Provide instance variables referenced by Debugger
# XXX This should be done differently
self
.
flist
=
self
.
editwin
.
flist
self
.
root
=
self
.
flist
.
root
self
.
root
=
self
.
editwin
.
root
def
check_module_event
(
self
,
event
):
filename
=
self
.
getfilename
()
...
...
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