summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/PyShell.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-08-13 23:51:29 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-08-13 23:51:29 (GMT)
commitb31e3f7fb8a8c774b9b7a8fe414ba19639484a3b (patch)
treed5e5d733da41d2942f9900b6391bb36b14431aca /Lib/idlelib/PyShell.py
parentfc8a0a7b82e9cb9434269bf64bd018882098d88c (diff)
parent0a01ac4300ff3831d63fc065eb9bac7767bfd8dc (diff)
downloadcpython-b31e3f7fb8a8c774b9b7a8fe414ba19639484a3b.zip
cpython-b31e3f7fb8a8c774b9b7a8fe414ba19639484a3b.tar.gz
cpython-b31e3f7fb8a8c774b9b7a8fe414ba19639484a3b.tar.bz2
Merge with 3.3
Diffstat (limited to 'Lib/idlelib/PyShell.py')
-rw-r--r--Lib/idlelib/PyShell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py
index fafeefd..36aff92 100644
--- a/Lib/idlelib/PyShell.py
+++ b/Lib/idlelib/PyShell.py
@@ -1264,7 +1264,7 @@ class PyShell(OutputWindow):
def resetoutput(self):
source = self.text.get("iomark", "end-1c")
if self.history:
- self.history.history_store(source)
+ self.history.store(source)
if self.text.get("end-2c") != "\n":
self.text.insert("end-1c", "\n")
self.text.mark_set("iomark", "end-1c")