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.
2 parents 7496fef + f25e3d5 commit 12aa1aeCopy full SHA for 12aa1ae
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
@@ -237,6 +237,9 @@ Core and Builtins
Library
-------
239
240
+- Issue #12590: IDLE editor window now always displays the first line
241
+ when opening a long file. With Tk 8.5, the first line was hidden.
242
+
243
- Issue #12576: Fix urlopen behavior on sites which do not send (or obfuscates)
244
Connection:close header.
245
0 commit comments