Issue #19872: remove unused imports in pathlib. Patch by Vajrasky Kok.

This commit is contained in:
Antoine Pitrou 2013-12-03 09:41:35 +01:00
parent f10345e102
commit 069a5e1057
1 changed files with 2 additions and 9 deletions

View File

@ -6,19 +6,12 @@ import os
import posixpath import posixpath
import re import re
import sys import sys
import weakref from collections import Sequence
try:
import threading
except ImportError:
import dummy_threading as threading
from collections import Sequence, defaultdict
from contextlib import contextmanager from contextlib import contextmanager
from errno import EINVAL, ENOENT from errno import EINVAL, ENOENT
from itertools import chain, count
from operator import attrgetter from operator import attrgetter
from stat import S_ISDIR, S_ISLNK, S_ISREG, S_ISSOCK, S_ISBLK, S_ISCHR, S_ISFIFO from stat import S_ISDIR, S_ISLNK, S_ISREG, S_ISSOCK, S_ISBLK, S_ISCHR, S_ISFIFO
from urllib.parse import quote as urlquote, quote_from_bytes as urlquote_from_bytes from urllib.parse import quote_from_bytes as urlquote_from_bytes
supports_symlinks = True supports_symlinks = True