Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1299a8f commit f25e3d5Copy full SHA for f25e3d5
2 files changed
Lib/idlelib/IOBinding.py
@@ -232,7 +232,7 @@ def loadfile(self, filename):
232
# before being able to execute the code
233
self.set_saved(False)
234
self.text.mark_set("insert", "1.0")
235
- self.text.see("insert")
+ self.text.yview("insert")
236
self.updaterecentfileslist(filename)
237
return True
238
Misc/NEWS
@@ -37,6 +37,9 @@ Core and Builtins
37
Library
38
-------
39
40
+- Issue #12590: IDLE editor window now always displays the first line
41
+ when opening a long file. With Tk 8.5, the first line was hidden.
42
+
43
- Issue #12576: Fix urlopen behavior on sites which do not send (or obfuscates)
44
Connection:close header.
45
0 commit comments