-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
270 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
__all__ = ['compress', 'compress_partitioned'] | ||
|
||
def compress(css: str, max_linelen: int = 0, preserve_exclamation_comments: bool = True) -> str: ... | ||
def compress_partitioned(css: str, max_linelen: int = 0, max_rules_per_file: int = 4000, preserve_exclamation_comments: bool = True) -> list[str]: ... |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
from _typeshed import Incomplete | ||
from io import BytesIO as BytesIO, StringIO | ||
|
||
PY2: Incomplete | ||
WIN: Incomplete | ||
unichr = chr | ||
text_type = str | ||
string_types: Incomplete | ||
integer_types: Incomplete | ||
iterkeys: Incomplete | ||
itervalues: Incomplete | ||
iteritems: Incomplete | ||
iterlists: Incomplete | ||
iterlistvalues: Incomplete | ||
int_to_byte: Incomplete | ||
iter_bytes: Incomplete | ||
|
||
def reraise(tp, value, tb: Incomplete | None = None) -> None: ... | ||
|
||
fix_tuple_repr: Incomplete | ||
implements_iterator: Incomplete | ||
implements_to_string: Incomplete | ||
implements_bool: Incomplete | ||
native_string_result: Incomplete | ||
imap = map | ||
izip = zip | ||
ifilter = filter | ||
range_type = range | ||
NativeStringIO = StringIO | ||
|
||
def make_literal_wrapper(reference): ... | ||
def normalize_string_tuple(tup): ... | ||
|
||
try_coerce_native: Incomplete | ||
wsgi_get_bytes: Incomplete | ||
|
||
def wsgi_decoding_dance(s, charset: str = 'utf-8', errors: str = 'replace'): ... | ||
def wsgi_encoding_dance(s, charset: str = 'utf-8', errors: str = 'replace'): ... | ||
def to_bytes(x, charset=..., errors: str = 'strict'): ... | ||
def to_native(x, charset=..., errors: str = 'strict'): ... | ||
def to_unicode(x, charset=..., errors: str = 'strict', allow_none_charset: bool = False): ... |
Oops, something went wrong.