From f187b2bf33ce05e8249aa3a71803c55d08ed350b Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 10 Jan 2010 09:58:03 +0100 Subject: [PATCH] [entropy.output] remove ill-conceived TextInterface methods --- libraries/entropy/output.py | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/libraries/entropy/output.py b/libraries/entropy/output.py index f3428958c..f828eecf9 100644 --- a/libraries/entropy/output.py +++ b/libraries/entropy/output.py @@ -974,15 +974,6 @@ class TextInterface: break return results - # useful for reimplementation - # in this wait you can send a signal to a widget (total progress bar?) - def cycleDone(self): - """ - Not actually implemented. Can be useful for external applications and - its used to determine when a certain transaction is done. - """ - pass - def setTitle(self, title): """ Set application title. @@ -992,22 +983,9 @@ class TextInterface: """ xterm_title(title) - def setTotalCycles(self, total): - """ - Not actually implemented. Can be useful for external applications and - its used to set the amount of logical transactions that this interface - has to go through. - """ - pass - def nocolor(self): """ Disable coloured output. Used for terminals. """ nocolor() - def notitles(self): - """ - Disable the ability to effectively set the application title. - """ - notitles()