1
0
forked from VimPlug/jedi

Remove Python 3.4 support

This commit is contained in:
Dave Halter
2020-02-27 02:04:03 +01:00
parent d1ac00f64f
commit a892887b04
28 changed files with 31 additions and 68 deletions

View File

@@ -275,7 +275,7 @@ def _iter_modules(paths, prefix=''):
# END COPY
iter_modules = _iter_modules if py_version >= 34 else pkgutil.iter_modules
iter_modules = _iter_modules if py_version >= 35 else pkgutil.iter_modules
class ImplicitNSInfo(object):