diff options
Diffstat (limited to 'gi/overrides/Gtk.py')
-rw-r--r-- | gi/overrides/Gtk.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gi/overrides/Gtk.py b/gi/overrides/Gtk.py index 2c0e870..08d2612 100644 --- a/gi/overrides/Gtk.py +++ b/gi/overrides/Gtk.py @@ -30,10 +30,8 @@ from gi import PyGIDeprecationWarning if sys.version_info >= (3, 0): _basestring = str - _callable = lambda c: hasattr(c, '__call__') else: _basestring = basestring - _callable = callable Gtk = get_introspection_module('Gtk') @@ -91,7 +89,7 @@ def _extract_handler_and_args(obj_or_map, handler_name): args = handler[1:] handler = handler[0] - elif not _callable(handler): + elif not callable(handler): raise TypeError('Handler %s is not a method, function or tuple' % handler) return handler, args @@ -745,9 +743,6 @@ class TextBuffer(Gtk.TextBuffer): self.apply_tag(tag, start, iter) def insert_with_tags_by_name(self, iter, text, *tags): - if not tags: - return - tag_objs = [] for tag in tags: |