Implement favorites for unicode input

This commit is contained in:
Kovid Goyal
2018-02-13 10:33:55 +05:30
parent a36f4a4670
commit 67e0d3723a
3 changed files with 118 additions and 31 deletions

View File

@@ -38,3 +38,6 @@ class Handler:
def print(self, *args, sep=' ', end='\r\n'):
data = sep.join(map(str, args)) + end
self.write(data)
def suspend(self):
return self._term_manager.suspend()