get rid from six module

This commit is contained in:
Alexander Bersenev 2019-05-14 02:30:52 +05:00 committed by Ram Rachum
parent d200457d63
commit a73ea14f58
5 changed files with 20 additions and 958 deletions

View file

@ -4,7 +4,11 @@
import re
import abc
import inspect
from pysnooper.third_party.six.moves import zip_longest
try:
from itertools import zip_longest
except ImportError:
from itertools import izip_longest as zip_longest
from python_toolbox import caching, sys_tools