massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2 / strop.pyi
1 """Stub file for the 'strop' module."""\r
2 \r
3 from typing import List, Sequence\r
4 \r
5 lowercase = ...  # type: str\r
6 uppercase = ...  # type: str\r
7 whitespace = ...  # type: str\r
8 \r
9 def atof(a: str) -> float:\r
10     raise DeprecationWarning()\r
11 \r
12 def atoi(a: str, base: int = ...) -> int:\r
13     raise DeprecationWarning()\r
14 \r
15 def atol(a: str, base: int = ...) -> long:\r
16     raise DeprecationWarning()\r
17 \r
18 def capitalize(s: str) -> str:\r
19     raise DeprecationWarning()\r
20 \r
21 def count(s: str, sub: str, start: int = ..., end: int = ...) -> int:\r
22     raise DeprecationWarning()\r
23 \r
24 def expandtabs(string: str, tabsize: int = ...) -> str:\r
25     raise DeprecationWarning()\r
26     raise OverflowError()\r
27 \r
28 def find(s: str, sub: str, start: int = ..., end: int = ...) -> int:\r
29     raise DeprecationWarning()\r
30 \r
31 def join(list: Sequence[str], sep: str = ...) -> str:\r
32     raise DeprecationWarning()\r
33     raise OverflowError()\r
34 \r
35 def joinfields(list: Sequence[str], sep: str = ...) -> str:\r
36     raise DeprecationWarning()\r
37     raise OverflowError()\r
38 \r
39 def lower(s: str) -> str:\r
40     raise DeprecationWarning()\r
41 \r
42 def lstrip(s: str) -> str:\r
43     raise DeprecationWarning()\r
44 \r
45 def maketrans(frm: str, to: str) -> str: ...\r
46 \r
47 def replace(s: str, old: str, new: str, maxsplit: int = ...) -> str:\r
48     raise DeprecationWarning()\r
49 \r
50 def rfind(s: str, sub: str, start: int = ..., end: int = ...) -> int:\r
51     raise DeprecationWarning()\r
52 \r
53 def rstrip(s: str) -> str:\r
54     raise DeprecationWarning()\r
55 \r
56 def split(s: str, sep: str, maxsplit: int = ...) -> List[str]:\r
57     raise DeprecationWarning()\r
58 \r
59 def splitfields(s: str, sep: str, maxsplit: int = ...) -> List[str]:\r
60     raise DeprecationWarning()\r
61 \r
62 def strip(s: str) -> str:\r
63     raise DeprecationWarning()\r
64 \r
65 def swapcase(s: str) -> str:\r
66     raise DeprecationWarning()\r
67 \r
68 def translate(s: str, table: str, deletechars: str = ...) -> str:\r
69     raise DeprecationWarning()\r
70 \r
71 def upper(s: str) -> str:\r
72     raise DeprecationWarning()\r