pygimp: pyconsole: remove unused method

This commit is contained in:
Kristian Rietveld 2016-04-28 21:53:26 +02:00 committed by Kristian Rietveld
parent 3d86a6c709
commit 21a4999230
1 changed files with 0 additions and 6 deletions

View File

@ -538,12 +538,6 @@ class _Console(_ReadLine, code.InteractiveInterpreter):
else:
self.emit("command", code)
def exec_command(self, command):
if self._get_line():
self._commit()
self.buffer.insert_at_cursor(command)
self._commit()
def complete_attr(self, start, end):
try:
obj = eval(start, self.locals)