Show More
@@ -23,6 +23,7 b' import unicodedata' | |||
|
23 | 23 | from typing import ( |
|
24 | 24 | Any, |
|
25 | 25 | AnyStr, |
|
26 | Callable, | |
|
26 | 27 | Iterable, |
|
27 | 28 | Iterator, |
|
28 | 29 | List, |
@@ -552,7 +553,7 b" if pycompat.sysplatform == b'OpenVMS':" | |||
|
552 | 553 | return False |
|
553 | 554 | |
|
554 | 555 | |
|
555 | _needsshellquote: Optional[Match[bytes]] = None | |
|
556 | _needsshellquote: Optional[Callable[[bytes], Optional[Match[bytes]]]] = None | |
|
556 | 557 | |
|
557 | 558 | |
|
558 | 559 | def shellquote(s: bytes) -> bytes: |
General Comments 0
You need to be logged in to leave comments.
Login now