There was an error while loading. Please reload this page.
1 parent f10345e commit 069a5e1Copy full SHA for 069a5e1
1 file changed
Lib/pathlib.py
@@ -6,19 +6,12 @@
6
import posixpath
7
import re
8
import sys
9
-import weakref
10
-try:
11
- import threading
12
-except ImportError:
13
- import dummy_threading as threading
14
-
15
-from collections import Sequence, defaultdict
+from collections import Sequence
16
from contextlib import contextmanager
17
from errno import EINVAL, ENOENT
18
-from itertools import chain, count
19
from operator import attrgetter
20
from stat import S_ISDIR, S_ISLNK, S_ISREG, S_ISSOCK, S_ISBLK, S_ISCHR, S_ISFIFO
21
-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
22
23
24
supports_symlinks = True
0 commit comments