diff --git a/plugin/pythonhelper.vim b/plugin/pythonhelper.vim index d8b6730..3846ab2 100644 --- a/plugin/pythonhelper.vim +++ b/plugin/pythonhelper.vim @@ -158,13 +158,6 @@ class SimplePythonTagsParser(object): """ # }}} - # CODE {{{ - # make sure source has readline() method {{{ - if ((hasattr(source, 'readline') == 0) or - (callable(source.readline) == 0)): - raise AttributeError("Source must have callable readline method.") - # }}} - # remember what the source is self.source = source # }}}