mirror of
https://github.com/cool-RR/PySnooper.git
synced 2026-01-23 02:14:04 +00:00
get rid from six module
This commit is contained in:
parent
d200457d63
commit
a73ea14f58
5 changed files with 20 additions and 958 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue