id int64 0 458k | file_name stringlengths 4 119 | file_path stringlengths 14 227 | content stringlengths 24 9.96M | size int64 24 9.96M | language stringclasses 1
value | extension stringclasses 14
values | total_lines int64 1 219k | avg_line_length float64 2.52 4.63M | max_line_length int64 5 9.91M | alphanum_fraction float64 0 1 | repo_name stringlengths 7 101 | repo_stars int64 100 139k | repo_forks int64 0 26.4k | repo_open_issues int64 0 2.27k | repo_license stringclasses 12
values | repo_extraction_date stringclasses 433
values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
29,100 | unicodedata.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/unicodedata.pyi | import sys
from typing import Any, Text, TypeVar, Union
ucd_3_2_0: UCD
ucnhash_CAPI: Any
unidata_version: str
_default = TypeVar("_default")
def bidirectional(__chr: Text) -> Text: ...
def category(__chr: Text) -> Text: ...
def combining(__chr: Text) -> int: ...
def decimal(__chr: Text, __default: _default = ...) ->... | 1,902 | Python | .py | 36 | 49.888889 | 92 | 0.603763 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,101 | base64.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/base64.pyi | import sys
from typing import IO, Optional, Union
if sys.version_info < (3,):
_encodable = Union[bytes, unicode]
_decodable = Union[bytes, unicode]
else:
_encodable = bytes
_decodable = Union[bytes, str]
def b64encode(s: _encodable, altchars: Optional[bytes] = ...) -> bytes: ...
def b64decode(s: _deco... | 1,614 | Python | .py | 31 | 49.322581 | 130 | 0.620165 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,102 | _msi.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/_msi.pyi | import sys
from typing import List, Optional, Union
if sys.platform == "win32":
# Actual typename View, not exposed by the implementation
class _View:
def Execute(self, params: Optional[_Record] = ...) -> None: ...
def GetColumnInfo(self, kind: int) -> _Record: ...
def Fetch(self) -> _... | 2,168 | Python | .py | 47 | 38.617021 | 81 | 0.579519 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,103 | ssl.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/ssl.pyi | import enum
import socket
import sys
from _typeshed import StrPath
from typing import Any, Callable, ClassVar, Dict, Iterable, List, NamedTuple, Optional, Set, Text, Tuple, Type, Union, overload
from typing_extensions import Literal
_PCTRTT = Tuple[Tuple[str, str], ...]
_PCTRTTT = Tuple[_PCTRTT, ...]
_PeerCertRetDictT... | 14,626 | Python | .py | 397 | 31.297229 | 127 | 0.634993 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,104 | decimal.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/decimal.pyi | import numbers
import sys
from types import TracebackType
from typing import Any, Container, Dict, List, NamedTuple, Optional, Sequence, Text, Tuple, Type, TypeVar, Union, overload
_Decimal = Union[Decimal, int]
_DecimalNew = Union[Decimal, float, Text, Tuple[int, Sequence[int], int]]
if sys.version_info >= (3,):
... | 17,787 | Python | .py | 326 | 48.478528 | 126 | 0.573475 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,105 | _dummy_threading.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/_dummy_threading.pyi | import sys
from types import FrameType, TracebackType
from typing import Any, Callable, Iterable, List, Mapping, Optional, Text, Type, TypeVar, Union
# TODO recursive type
_TF = Callable[[FrameType, str, Any], Optional[Callable[..., Any]]]
_PF = Callable[[FrameType, str, Any], None]
_T = TypeVar("_T")
__all__: List[... | 6,309 | Python | .py | 160 | 33.2625 | 129 | 0.548024 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,106 | ftplib.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/ftplib.pyi | import sys
from _typeshed import SupportsRead, SupportsReadline
from socket import socket
from ssl import SSLContext
from types import TracebackType
from typing import Any, BinaryIO, Callable, Dict, Iterable, Iterator, List, Optional, Text, TextIO, Tuple, Type, TypeVar, Union
from typing_extensions import Literal
_T =... | 6,278 | Python | .py | 153 | 35.196078 | 131 | 0.566988 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,107 | contextlib.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/contextlib.pyi | import sys
from types import TracebackType
from typing import IO, Any, Callable, ContextManager, Iterable, Iterator, Optional, Type, TypeVar, overload
if sys.version_info >= (3, 5):
from typing import AsyncContextManager, AsyncIterator
if sys.version_info >= (3, 6):
AbstractContextManager = ContextManager
if ... | 4,419 | Python | .py | 86 | 45.034884 | 128 | 0.614084 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,108 | imaplib.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/imaplib.pyi | import subprocess
import sys
import time
from socket import socket as _socket
from ssl import SSLContext, SSLSocket
from types import TracebackType
from typing import IO, Any, Callable, Dict, List, Optional, Pattern, Text, Tuple, Type, Union
from typing_extensions import Literal
# TODO: Commands should use their actua... | 8,034 | Python | .py | 165 | 42.993939 | 130 | 0.581786 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,109 | profile.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/profile.pyi | from _typeshed import AnyPath
from typing import Any, Callable, Dict, Optional, TypeVar, Union
def run(statement: str, filename: Optional[str] = ..., sort: Union[str, int] = ...) -> None: ...
def runctx(
statement: str, globals: Dict[str, Any], locals: Dict[str, Any], filename: Optional[str] = ..., sort: Union[str... | 1,199 | Python | .py | 22 | 50.818182 | 127 | 0.592845 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,110 | select.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/select.pyi | import sys
from _typeshed import FileDescriptorLike
from types import TracebackType
from typing import Any, Iterable, List, Optional, Tuple, Type
if sys.platform != "win32":
PIPE_BUF: int
POLLERR: int
POLLHUP: int
POLLIN: int
POLLMSG: int
POLLNVAL: int
POLLOUT: int
POLLPRI: int
POLL... | 4,828 | Python | .py | 145 | 26.124138 | 110 | 0.565227 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,111 | _codecs.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/_codecs.pyi | import codecs
import sys
from typing import Any, Callable, Dict, Optional, Text, Tuple, Union
# For convenience:
_Handler = Callable[[Exception], Tuple[Text, int]]
_String = Union[bytes, str]
_Errors = Union[str, Text, None]
if sys.version_info < (3, 0):
_Decodable = Union[bytes, Text]
_Encodable = Union[bytes... | 5,308 | Python | .py | 73 | 70.383562 | 130 | 0.588404 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,112 | crypt.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/crypt.pyi | import sys
from typing import List, Optional, Union
if sys.version_info >= (3, 3):
class _Method: ...
METHOD_CRYPT: _Method
METHOD_MD5: _Method
METHOD_SHA256: _Method
METHOD_SHA512: _Method
if sys.version_info >= (3, 7):
METHOD_BLOWFISH: _Method
methods: List[_Method]
if sys.v... | 648 | Python | .py | 18 | 31 | 95 | 0.591054 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,113 | msvcrt.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/msvcrt.pyi | import sys
from typing import Text
# This module is only available on Windows
if sys.platform == "win32":
LK_LOCK: int
LK_NBLCK: int
LK_NBRLCK: int
LK_RLCK: int
LK_UNLCK: int
def locking(__fd: int, __mode: int, __nbytes: int) -> None: ...
def setmode(__fd: int, __mode: int) -> int: ...
... | 795 | Python | .py | 23 | 30.217391 | 67 | 0.559014 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,114 | datetime.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/datetime.pyi | import sys
from time import struct_time
from typing import AnyStr, ClassVar, Optional, SupportsAbs, Tuple, Type, TypeVar, Union, overload
_S = TypeVar("_S")
if sys.version_info >= (3,):
_Text = str
else:
_Text = Union[str, unicode]
MINYEAR: int
MAXYEAR: int
class tzinfo:
def tzname(self, dt: Optional[da... | 12,699 | Python | .py | 359 | 27.927577 | 128 | 0.498621 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,115 | pwd.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/pwd.pyi | from typing import List, Tuple
class struct_passwd(Tuple[str, str, int, int, str, str, str]):
pw_name: str
pw_passwd: str
pw_uid: int
pw_gid: int
pw_gecos: str
pw_dir: str
pw_shell: str
def getpwall() -> List[struct_passwd]: ...
def getpwuid(uid: int) -> struct_passwd: ...
def getpwnam(nam... | 350 | Python | .py | 12 | 25.666667 | 62 | 0.64881 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,116 | token.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/token.pyi | import sys
from typing import Dict
ENDMARKER: int
NAME: int
NUMBER: int
STRING: int
NEWLINE: int
INDENT: int
DEDENT: int
LPAR: int
RPAR: int
LSQB: int
RSQB: int
COLON: int
COMMA: int
SEMI: int
PLUS: int
MINUS: int
STAR: int
SLASH: int
VBAR: int
AMPER: int
LESS: int
GREATER: int
EQUAL: int
DOT: int
PERCENT: int
if sys.... | 1,468 | Python | .py | 83 | 15.698795 | 71 | 0.728127 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,117 | _csv.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/_csv.pyi | import sys
from typing import Any, Iterable, Iterator, List, Optional, Protocol, Sequence, Text, Type, Union
QUOTE_ALL: int
QUOTE_MINIMAL: int
QUOTE_NONE: int
QUOTE_NONNUMERIC: int
class Error(Exception): ...
class Dialect:
delimiter: str
quotechar: Optional[str]
escapechar: Optional[str]
doublequote... | 1,574 | Python | .py | 42 | 33.5 | 98 | 0.640184 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,118 | parser.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/parser.pyi | from _typeshed import AnyPath
from types import CodeType
from typing import Any, List, Sequence, Text, Tuple
def expr(source: Text) -> STType: ...
def suite(source: Text) -> STType: ...
def sequence2st(sequence: Sequence[Any]) -> STType: ...
def tuple2st(sequence: Sequence[Any]) -> STType: ...
def st2list(st: STType, ... | 966 | Python | .py | 19 | 48.631579 | 88 | 0.625 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,119 | mailbox.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/mailbox.pyi | import email.message
import sys
from _typeshed import AnyPath
from types import TracebackType
from typing import (
IO,
Any,
AnyStr,
Callable,
Dict,
Generic,
Iterable,
Iterator,
List,
Mapping,
Optional,
Protocol,
Sequence,
Text,
Tuple,
Type,
TypeVar,
... | 8,071 | Python | .py | 182 | 39.824176 | 130 | 0.607197 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,120 | cmath.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/cmath.pyi | import sys
from typing import SupportsComplex, SupportsFloat, Tuple, Union
e: float
pi: float
if sys.version_info >= (3, 6):
inf: float
infj: complex
nan: float
nanj: complex
tau: float
_C = Union[SupportsFloat, SupportsComplex]
def acos(__z: _C) -> complex: ...
def acosh(__z: _C) -> complex: ...... | 1,217 | Python | .py | 36 | 31.861111 | 105 | 0.542979 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,121 | pickle.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/pickle.pyi | import sys
from typing import IO, Any, Callable, Iterable, Iterator, Mapping, Optional, Tuple, Type, Union
HIGHEST_PROTOCOL: int
if sys.version_info >= (3, 0):
DEFAULT_PROTOCOL: int
bytes_types: Tuple[Type[Any], ...] # undocumented
if sys.version_info >= (3, 8):
# TODO: holistic design for buffer interface ... | 5,322 | Python | .py | 170 | 26.682353 | 129 | 0.589953 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,122 | array.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/array.pyi | import sys
from typing import Any, BinaryIO, Generic, Iterable, List, MutableSequence, Text, Tuple, TypeVar, Union, overload
from typing_extensions import Literal
_IntTypeCode = Literal["b", "B", "h", "H", "i", "I", "l", "L", "q", "Q"]
_FloatTypeCode = Literal["f", "d"]
_UnicodeTypeCode = Literal["u"]
_TypeCode = Unio... | 3,489 | Python | .py | 72 | 43.5 | 125 | 0.55129 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,123 | asynchat.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/asynchat.pyi | import asyncore
import socket
import sys
from abc import abstractmethod
from typing import Optional, Sequence, Tuple, Union
class simple_producer:
def __init__(self, data: bytes, buffer_size: int = ...) -> None: ...
def more(self) -> bytes: ...
class async_chat(asyncore.dispatcher):
ac_in_buffer_size: int... | 1,555 | Python | .py | 36 | 38.333333 | 112 | 0.608839 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,124 | cgitb.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/cgitb.pyi | from _typeshed import AnyPath
from types import FrameType, TracebackType
from typing import IO, Any, Callable, Dict, List, Optional, Tuple, Type
_ExcInfo = Tuple[Optional[Type[BaseException]], Optional[BaseException], Optional[TracebackType]]
def reset() -> str: ... # undocumented
def small(text: str) -> str: ... #... | 1,447 | Python | .py | 29 | 46 | 115 | 0.620934 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,125 | grp.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/grp.pyi | from typing import List, NamedTuple, Optional
class struct_group(NamedTuple):
gr_name: str
gr_passwd: Optional[str]
gr_gid: int
gr_mem: List[str]
def getgrall() -> List[struct_group]: ...
def getgrgid(gid: int) -> struct_group: ...
def getgrnam(name: str) -> struct_group: ...
| 295 | Python | .py | 9 | 29.777778 | 45 | 0.68662 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,126 | mimetypes.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/mimetypes.pyi | import sys
from typing import IO, Dict, List, Optional, Sequence, Text, Tuple, Union
if sys.version_info >= (3, 8):
from os import PathLike
def guess_type(url: Union[Text, PathLike[str]], strict: bool = ...) -> Tuple[Optional[str], Optional[str]]: ...
else:
def guess_type(url: Text, strict: bool = ...) ->... | 1,641 | Python | .py | 31 | 49.709677 | 115 | 0.623053 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,127 | modulefinder.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/modulefinder.pyi | import sys
from types import CodeType
from typing import IO, Any, Container, Dict, Iterable, Iterator, List, Optional, Sequence, Tuple
LOAD_CONST: int # undocumented
IMPORT_NAME: int # undocumented
STORE_NAME: int # undocumented
STORE_GLOBAL: int # undocumented
STORE_OPS: Tuple[int, int] # undocumented
EXTENDED_A... | 3,674 | Python | .py | 67 | 48.985075 | 130 | 0.619511 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,128 | code.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/code.pyi | import sys
from types import CodeType
from typing import Any, Callable, Mapping, Optional
class InteractiveInterpreter:
def __init__(self, locals: Optional[Mapping[str, Any]] = ...) -> None: ...
def runsource(self, source: str, filename: str = ..., symbol: str = ...) -> bool: ...
def runcode(self, code: Co... | 1,522 | Python | .py | 31 | 44.064516 | 125 | 0.587483 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,129 | plistlib.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/plistlib.pyi | import sys
from typing import IO, Any, Dict as DictT, Mapping, MutableMapping, Optional, Text, Type, Union
if sys.version_info >= (3,):
from enum import Enum
class PlistFormat(Enum):
FMT_XML: int
FMT_BINARY: int
FMT_XML = PlistFormat.FMT_XML
FMT_BINARY = PlistFormat.FMT_BINARY
_Path = ... | 2,742 | Python | .py | 61 | 39.114754 | 125 | 0.570412 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,130 | codeop.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/codeop.pyi | from types import CodeType
from typing import Optional
def compile_command(source: str, filename: str = ..., symbol: str = ...) -> Optional[CodeType]: ...
class Compile:
flags: int
def __init__(self) -> None: ...
def __call__(self, source: str, filename: str, symbol: str) -> CodeType: ...
class CommandCo... | 489 | Python | .py | 11 | 41 | 102 | 0.627368 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,131 | colorsys.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/colorsys.pyi | from typing import Tuple
def rgb_to_yiq(r: float, g: float, b: float) -> Tuple[float, float, float]: ...
def yiq_to_rgb(y: float, i: float, q: float) -> Tuple[float, float, float]: ...
def rgb_to_hls(r: float, g: float, b: float) -> Tuple[float, float, float]: ...
def hls_to_rgb(h: float, l: float, s: float) -> Tuple[... | 578 | Python | .py | 11 | 51.363636 | 79 | 0.654867 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,132 | csv.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/csv.pyi | import sys
from _csv import (
QUOTE_ALL as QUOTE_ALL,
QUOTE_MINIMAL as QUOTE_MINIMAL,
QUOTE_NONE as QUOTE_NONE,
QUOTE_NONNUMERIC as QUOTE_NONNUMERIC,
Dialect as Dialect,
Error as Error,
_DialectLike,
_reader,
_writer,
field_size_limit as field_size_limit,
get_dialect as get_d... | 2,751 | Python | .py | 93 | 24.021505 | 95 | 0.619245 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,133 | _heapq.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/_heapq.pyi | import sys
from typing import Any, Callable, Iterable, List, Optional, TypeVar
_T = TypeVar("_T")
def heapify(__heap: List[_T]) -> None: ...
def heappop(__heap: List[_T]) -> _T: ...
def heappush(__heap: List[_T], __item: _T) -> None: ...
def heappushpop(__heap: List[_T], __item: _T) -> _T: ...
def heapreplace(__heap:... | 612 | Python | .py | 11 | 53.636364 | 114 | 0.568562 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,134 | asyncore.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/asyncore.pyi | import sys
from _typeshed import FileDescriptorLike
from socket import SocketType
from typing import Any, Dict, Optional, Tuple, Union, overload
# cyclic dependence with asynchat
_maptype = Dict[int, Any]
socket_map: _maptype = ... # Undocumented
class ExitNow(Exception): ...
def read(obj: Any) -> None: ...
def wr... | 5,534 | Python | .py | 108 | 45.324074 | 124 | 0.581717 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,135 | socket.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/socket.pyi | import sys
from typing import Any, BinaryIO, Iterable, List, Optional, Text, TextIO, Tuple, TypeVar, Union, overload
from typing_extensions import Literal
# ----- Constants -----
# Some socket families are listed in the "Socket families" section of the docs,
# but not the "Constants" section. These are listed at the e... | 22,711 | Python | .py | 736 | 26.733696 | 130 | 0.65314 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,136 | timeit.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/timeit.pyi | import sys
from typing import IO, Any, Callable, Dict, List, Optional, Sequence, Text, Tuple, Union
_str = Union[str, Text]
_Timer = Callable[[], float]
_stmt = Union[_str, Callable[[], Any]]
default_timer: _Timer
class Timer:
if sys.version_info >= (3, 5):
def __init__(
self, stmt: _stmt = .... | 1,623 | Python | .py | 36 | 39.472222 | 126 | 0.510436 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,137 | warnings.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/warnings.pyi | import sys
from types import ModuleType, TracebackType
from typing import Any, List, Optional, TextIO, Type, Union, overload
from typing_extensions import Literal
from _warnings import warn as warn, warn_explicit as warn_explicit
def showwarning(
message: Union[Warning, str],
category: Type[Warning],
file... | 2,583 | Python | .py | 66 | 32.939394 | 129 | 0.598008 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,138 | mmap.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/mmap.pyi | import sys
from _typeshed import ReadableBuffer
from typing import AnyStr, ContextManager, Generic, Iterable, Iterator, Optional, Sequence, Sized, Union, overload
ACCESS_DEFAULT: int
ACCESS_READ: int
ACCESS_WRITE: int
ACCESS_COPY: int
ALLOCATIONGRANULARITY: int
if sys.platform != "win32":
MAP_ANON: int
MAP_A... | 4,006 | Python | .py | 99 | 34.171717 | 115 | 0.570403 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,139 | pdb.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/pdb.pyi | import signal
import sys
from bdb import Bdb
from cmd import Cmd
from inspect import _SourceObjectType
from types import CodeType, FrameType, TracebackType
from typing import IO, Any, Callable, ClassVar, Dict, Iterable, List, Mapping, Optional, Sequence, Tuple, TypeVar, Union
_T = TypeVar("_T")
line_prefix: str # un... | 10,325 | Python | .py | 232 | 37.616379 | 124 | 0.569032 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,140 | binhex.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/binhex.pyi | from typing import IO, Any, Tuple, Union
class Error(Exception): ...
REASONABLY_LARGE: int
LINELEN: int
RUNCHAR: bytes
class FInfo:
def __init__(self) -> None: ...
Type: str
Creator: str
Flags: int
_FileInfoTuple = Tuple[str, FInfo, int, int]
_FileHandleUnion = Union[str, IO[bytes]]
def getfileinfo... | 1,147 | Python | .py | 32 | 32.28125 | 96 | 0.60724 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,141 | doctest.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/doctest.pyi | import sys
import types
import unittest
from typing import Any, Callable, Dict, List, NamedTuple, Optional, Tuple, Type, Union
class TestResults(NamedTuple):
failed: int
attempted: int
OPTIONFLAGS_BY_NAME: Dict[str, int]
def register_optionflag(name: str) -> int: ...
DONT_ACCEPT_TRUE_FOR_1: int
DONT_ACCEPT_... | 7,083 | Python | .py | 197 | 31.365482 | 130 | 0.610876 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,142 | calendar.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/calendar.pyi | import datetime
import sys
from time import struct_time
from typing import Any, Iterable, List, Optional, Sequence, Tuple, Union
_LocaleType = Tuple[Optional[str], Optional[str]]
class IllegalMonthError(ValueError):
def __init__(self, month: int) -> None: ...
def __str__(self) -> str: ...
class IllegalWeekda... | 5,773 | Python | .py | 106 | 50.471698 | 129 | 0.609381 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,143 | optparse.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/optparse.pyi | import sys
from typing import IO, Any, AnyStr, Callable, Dict, Iterable, List, Mapping, Optional, Sequence, Tuple, Type, Union, overload
# See https://groups.google.com/forum/#!topic/python-ideas/gA1gdj3RZ5g
if sys.version_info >= (3,):
_Text = str
else:
_Text = Union[str, unicode]
NO_DEFAULT: Tuple[_Text, ..... | 10,096 | Python | .py | 214 | 42.317757 | 125 | 0.618208 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,144 | dis.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/dis.pyi | import sys
import types
from opcode import (
EXTENDED_ARG as EXTENDED_ARG,
HAVE_ARGUMENT as HAVE_ARGUMENT,
cmp_op as cmp_op,
hascompare as hascompare,
hasconst as hasconst,
hasfree as hasfree,
hasjabs as hasjabs,
hasjrel as hasjrel,
haslocal as haslocal,
hasname as hasname,
o... | 3,089 | Python | .py | 71 | 38.338028 | 127 | 0.606786 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,145 | tty.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/tty.pyi | from typing import IO, Union
_FD = Union[int, IO[str]]
# XXX: Undocumented integer constants
IFLAG: int
OFLAG: int
CFLAG: int
LFLAG: int
ISPEED: int
OSPEED: int
CC: int
def setraw(fd: _FD, when: int = ...) -> None: ...
def setcbreak(fd: _FD, when: int = ...) -> None: ...
| 275 | Python | .py | 12 | 21.666667 | 52 | 0.673077 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,146 | opcode.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/opcode.pyi | import sys
from typing import Dict, List, Optional, Sequence
cmp_op: Sequence[str]
hasconst: List[int]
hasname: List[int]
hasjrel: List[int]
hasjabs: List[int]
haslocal: List[int]
hascompare: List[int]
hasfree: List[int]
opname: List[str]
opmap: Dict[str, int]
HAVE_ARGUMENT: int
EXTENDED_ARG: int
if sys.version_info... | 609 | Python | .py | 20 | 28.6 | 108 | 0.678082 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,147 | tarfile.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/tarfile.pyi | import sys
from _typeshed import AnyPath, StrPath
from types import TracebackType
from typing import IO, Callable, Dict, Iterable, Iterator, List, Mapping, Optional, Set, Tuple, Type, Union
# tar constants
NUL: bytes
BLOCKSIZE: int
RECORDSIZE: int
GNU_MAGIC: bytes
POSIX_MAGIC: bytes
LENGTH_NAME: int
LENGTH_LINK: int
... | 8,182 | Python | .py | 227 | 30.255507 | 120 | 0.584803 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,148 | copy.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/copy.pyi | from typing import Any, Dict, Optional, TypeVar
_T = TypeVar("_T")
# None in CPython but non-None in Jython
PyStringMap: Any
# Note: memo and _nil are internal kwargs.
def deepcopy(x: _T, memo: Optional[Dict[int, Any]] = ..., _nil: Any = ...) -> _T: ...
def copy(x: _T) -> _T: ...
class Error(Exception): ...
error ... | 328 | Python | .py | 9 | 34.888889 | 85 | 0.649682 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,149 | sre_compile.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/sre_compile.pyi | import sys
from sre_constants import (
SRE_FLAG_DEBUG as SRE_FLAG_DEBUG,
SRE_FLAG_DOTALL as SRE_FLAG_DOTALL,
SRE_FLAG_IGNORECASE as SRE_FLAG_IGNORECASE,
SRE_FLAG_LOCALE as SRE_FLAG_LOCALE,
SRE_FLAG_MULTILINE as SRE_FLAG_MULTILINE,
SRE_FLAG_TEMPLATE as SRE_FLAG_TEMPLATE,
SRE_FLAG_UNICODE as S... | 1,073 | Python | .py | 28 | 34.785714 | 84 | 0.71977 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,150 | zipfile.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/zipfile.pyi | import io
import sys
from _typeshed import StrPath
from types import TracebackType
from typing import (
IO,
Any,
Callable,
Dict,
Iterable,
Iterator,
List,
Optional,
Pattern,
Protocol,
Sequence,
Text,
Tuple,
Type,
Union,
)
_SZI = Union[Text, ZipInfo]
_DT = Tup... | 7,249 | Python | .py | 205 | 28.141463 | 129 | 0.536634 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,151 | _weakref.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/_weakref.pyi | import sys
from typing import Any, Callable, Generic, Optional, TypeVar, overload
if sys.version_info >= (3, 9):
from types import GenericAlias
_C = TypeVar("_C", bound=Callable[..., Any])
_T = TypeVar("_T")
class CallableProxyType(object): # "weakcallableproxy"
def __getattr__(self, attr: str) -> Any: ...
... | 1,200 | Python | .py | 26 | 43 | 104 | 0.638079 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,152 | readline.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/readline.pyi | import sys
from typing import Callable, Optional, Sequence
_CompleterT = Optional[Callable[[str, int], Optional[str]]]
_CompDispT = Optional[Callable[[str, Sequence[str], int], None]]
def parse_and_bind(string: str) -> None: ...
def read_init_file(filename: str = ...) -> None: ...
def get_line_buffer() -> str: ...
de... | 1,585 | Python | .py | 33 | 46.606061 | 81 | 0.640362 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,153 | uu.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/uu.pyi | import sys
from typing import BinaryIO, Optional, Text, Union
_File = Union[Text, BinaryIO]
class Error(Exception): ...
if sys.version_info >= (3, 7):
def encode(
in_file: _File, out_file: _File, name: Optional[str] = ..., mode: Optional[int] = ..., *, backtick: bool = ...
) -> None: ...
else:
d... | 549 | Python | .py | 11 | 46.636364 | 118 | 0.594747 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,154 | cProfile.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/cProfile.pyi | import sys
from _typeshed import AnyPath
from typing import Any, Callable, Dict, Optional, TypeVar, Union
def run(statement: str, filename: Optional[str] = ..., sort: Union[str, int] = ...) -> None: ...
def runctx(
statement: str, globals: Dict[str, Any], locals: Dict[str, Any], filename: Optional[str] = ..., sort... | 1,239 | Python | .py | 25 | 45.4 | 127 | 0.57308 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,155 | marshal.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/marshal.pyi | from typing import IO, Any
version: int
def dump(__value: Any, __file: IO[Any], __version: int = ...) -> None: ...
def load(__file: IO[Any]) -> Any: ...
def dumps(__value: Any, __version: int = ...) -> bytes: ...
def loads(__bytes: bytes) -> Any: ...
| 253 | Python | .py | 6 | 40.833333 | 74 | 0.571429 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,156 | zlib.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/zlib.pyi | import sys
from array import array
from typing import Any, Union
DEFLATED: int
DEF_MEM_LEVEL: int
MAX_WBITS: int
ZLIB_VERSION: str
Z_BEST_COMPRESSION: int
Z_BEST_SPEED: int
Z_DEFAULT_COMPRESSION: int
Z_DEFAULT_STRATEGY: int
Z_FILTERED: int
Z_FINISH: int
Z_FULL_FLUSH: int
Z_HUFFMAN_ONLY: int
Z_NO_FLUSH: int
Z_SYNC_FLUS... | 1,692 | Python | .py | 49 | 31.44898 | 123 | 0.603184 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,157 | uuid.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/uuid.pyi | import sys
from typing import Any, Optional, Text, Tuple
# Because UUID has properties called int and bytes we need to rename these temporarily.
_Int = int
_Bytes = bytes
_FieldsType = Tuple[int, int, int, int, int, int]
if sys.version_info >= (3, 7):
from enum import Enum
class SafeUUID(Enum):
safe: ... | 3,448 | Python | .py | 106 | 25.933962 | 87 | 0.51843 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,158 | cmd.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/cmd.pyi | from typing import IO, Any, Callable, List, Optional, Tuple
class Cmd:
prompt: str
identchars: str
ruler: str
lastcmd: str
intro: Optional[Any]
doc_leader: str
doc_header: str
misc_header: str
undoc_header: str
nohelp: str
use_rawinput: bool
stdin: IO[str]
stdout: IO... | 1,658 | Python | .py | 38 | 38.815789 | 124 | 0.614577 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,159 | binascii.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/binascii.pyi | import sys
from typing import Text, Union
if sys.version_info < (3,):
# Python 2 accepts unicode ascii pretty much everywhere.
_Bytes = Text
_Ascii = Text
else:
# But since Python 3.3 ASCII-only unicode strings are accepted by the
# a2b_* functions.
_Bytes = bytes
_Ascii = Union[bytes, str]... | 1,552 | Python | .py | 38 | 38.157895 | 101 | 0.590546 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,160 | symtable.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/symtable.pyi | import sys
from typing import List, Sequence, Text, Tuple
def symtable(code: Text, filename: Text, compile_type: Text) -> SymbolTable: ...
class SymbolTable(object):
def get_type(self) -> str: ...
def get_id(self) -> int: ...
def get_name(self) -> str: ...
def get_lineno(self) -> int: ...
def is_o... | 1,645 | Python | .py | 40 | 36.5 | 80 | 0.585625 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,161 | sysconfig.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/sysconfig.pyi | from typing import IO, Any, Dict, List, Optional, Tuple, overload
def get_config_var(name: str) -> Optional[str]: ...
@overload
def get_config_vars() -> Dict[str, Any]: ...
@overload
def get_config_vars(arg: str, *args: str) -> List[Any]: ...
def get_scheme_names() -> Tuple[str, ...]: ...
def get_path_names() -> Tuple... | 843 | Python | .py | 16 | 51.625 | 122 | 0.607748 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,162 | webbrowser.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/webbrowser.pyi | import sys
from typing import Callable, List, Optional, Sequence, Text, Union
class Error(Exception): ...
if sys.version_info >= (3, 7):
def register(
name: Text, klass: Optional[Callable[[], BaseBrowser]], instance: Optional[BaseBrowser] = ..., *, preferred: bool = ...
) -> None: ...
else:
def r... | 3,295 | Python | .py | 88 | 32.886364 | 129 | 0.627273 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,163 | pprint.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/pprint.pyi | import sys
from typing import IO, Any, Dict, Optional, Tuple
if sys.version_info >= (3, 8):
def pformat(
object: object,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
*,
compact: bool = ...,
sort_dicts: bool = ...,
) -> str: ...
elif s... | 2,893 | Python | .py | 88 | 25.181818 | 120 | 0.466738 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,164 | locale.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/locale.pyi | import sys
from decimal import Decimal
from typing import Any, Callable, Dict, Iterable, List, Mapping, Optional, Sequence, Tuple, Union
# workaround for mypy#2010
if sys.version_info < (3,):
from __builtin__ import str as _str
else:
from builtins import str as _str
CODESET: int
D_T_FMT: int
D_FMT: int
T_FMT:... | 2,555 | Python | .py | 94 | 25.787234 | 130 | 0.667349 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,165 | audioop.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/audioop.pyi | from typing import Optional, Tuple
AdpcmState = Tuple[int, int]
RatecvState = Tuple[int, Tuple[Tuple[int, int], ...]]
class error(Exception): ...
def add(__fragment1: bytes, __fragment2: bytes, __width: int) -> bytes: ...
def adpcm2lin(__fragment: bytes, __width: int, __state: Optional[AdpcmState]) -> Tuple[bytes, A... | 2,119 | Python | .py | 39 | 52.435897 | 110 | 0.626384 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,166 | trace.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/trace.pyi | import types
from _typeshed import StrPath
from typing import Any, Callable, Mapping, Optional, Sequence, Tuple, TypeVar, Union
_T = TypeVar("_T")
_localtrace = Callable[[types.FrameType, str, Any], Callable[..., Any]]
class CoverageResults:
def update(self, other: CoverageResults) -> None: ...
def write_resu... | 2,037 | Python | .py | 40 | 45.05 | 123 | 0.609328 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,167 | traceback.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/traceback.pyi | import sys
from _typeshed import SupportsWrite
from types import FrameType, TracebackType
from typing import IO, Any, Dict, Generator, Iterable, Iterator, List, Mapping, Optional, Tuple, Type
_PT = Tuple[str, int, str, Optional[str]]
def print_tb(tb: Optional[TracebackType], limit: Optional[int] = ..., file: Optional... | 5,545 | Python | .py | 125 | 36.744 | 120 | 0.570768 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,168 | quopri.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/quopri.pyi | from typing import BinaryIO
def encode(input: BinaryIO, output: BinaryIO, quotetabs: int, header: int = ...) -> None: ...
def encodestring(s: bytes, quotetabs: int = ..., header: int = ...) -> bytes: ...
def decode(input: BinaryIO, output: BinaryIO, header: int = ...) -> None: ...
def decodestring(s: bytes, header: in... | 343 | Python | .py | 5 | 67.4 | 93 | 0.64095 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,169 | keyword.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/keyword.pyi | import sys
from typing import Sequence, Text
def iskeyword(s: Text) -> bool: ...
kwlist: Sequence[str]
if sys.version_info >= (3, 9):
def issoftkeyword(s: str) -> bool: ...
softkwlist: Sequence[str]
| 210 | Python | .py | 7 | 27.428571 | 42 | 0.69 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,170 | termios.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/termios.pyi | from _typeshed import FileDescriptorLike
from typing import Any, List, Union
_Attr = List[Union[int, List[Union[bytes, int]]]]
# TODO constants not really documented
B0: int
B1000000: int
B110: int
B115200: int
B1152000: int
B1200: int
B134: int
B150: int
B1500000: int
B1800: int
B19200: int
B200: int
B2000000: int
B... | 3,504 | Python | .py | 242 | 13.46281 | 80 | 0.804788 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,171 | rlcompleter.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/rlcompleter.pyi | import sys
from typing import Any, Dict, Optional, Union
if sys.version_info >= (3,):
_Text = str
else:
_Text = Union[str, unicode]
class Completer:
def __init__(self, namespace: Optional[Dict[str, Any]] = ...) -> None: ...
def complete(self, text: _Text, state: int) -> Optional[str]: ...
| 308 | Python | .py | 9 | 31.222222 | 78 | 0.639731 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,172 | site.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/site.pyi | import sys
from typing import Iterable, List, Optional
PREFIXES: List[str]
ENABLE_USER_SITE: Optional[bool]
USER_SITE: Optional[str]
USER_BASE: Optional[str]
if sys.version_info < (3,):
def main() -> None: ...
def addsitedir(sitedir: str, known_paths: Optional[Iterable[str]] = ...) -> None: ...
def getsitepackag... | 450 | Python | .py | 12 | 35.916667 | 85 | 0.694253 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,173 | chunk.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/chunk.pyi | from typing import IO
class Chunk:
closed: bool
align: bool
file: IO[bytes]
chunkname: bytes
chunksize: int
size_read: int
offset: int
seekable: bool
def __init__(self, file: IO[bytes], align: bool = ..., bigendian: bool = ..., inclheader: bool = ...) -> None: ...
def getname(se... | 613 | Python | .py | 19 | 27.631579 | 118 | 0.554806 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,174 | threading.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/threading.pyi | import sys
from types import FrameType, TracebackType
from typing import Any, Callable, Iterable, List, Mapping, Optional, Text, Type, TypeVar, Union
# TODO recursive type
_TF = Callable[[FrameType, str, Any], Optional[Callable[..., Any]]]
_PF = Callable[[FrameType, str, Any], None]
_T = TypeVar("_T")
__all__: List[... | 6,309 | Python | .py | 160 | 33.2625 | 129 | 0.548024 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,175 | argparse.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/argparse.pyi | import sys
from typing import (
IO,
Any,
Callable,
Dict,
Generator,
Iterable,
List,
NoReturn,
Optional,
Pattern,
Protocol,
Sequence,
Text,
Tuple,
Type,
TypeVar,
Union,
overload,
)
_T = TypeVar("_T")
_ActionT = TypeVar("_ActionT", bound=Action)
_N ... | 18,335 | Python | .py | 453 | 33.571744 | 127 | 0.578328 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,176 | stringprep.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/stringprep.pyi | from typing import Text
def in_table_a1(code: Text) -> bool: ...
def in_table_b1(code: Text) -> bool: ...
def map_table_b3(code: Text) -> Text: ...
def map_table_b2(a: Text) -> Text: ...
def in_table_c11(code: Text) -> bool: ...
def in_table_c12(code: Text) -> bool: ...
def in_table_c11_c12(code: Text) -> bool: ...
de... | 817 | Python | .py | 20 | 39.8 | 45 | 0.611809 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,177 | xdrlib.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/xdrlib.pyi | from typing import Callable, List, Sequence, TypeVar
_T = TypeVar("_T")
class Error(Exception):
msg: str
def __init__(self, msg: str) -> None: ...
class ConversionError(Error): ...
class Packer:
def __init__(self) -> None: ...
def reset(self) -> None: ...
def get_buffer(self) -> bytes: ...
d... | 2,315 | Python | .py | 50 | 41.68 | 99 | 0.570354 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,178 | poplib.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/poplib.pyi | import socket
import ssl
import sys
from typing import Any, BinaryIO, Dict, List, Optional, Pattern, Text, Tuple, overload
_LongResp = Tuple[bytes, List[bytes], int]
class error_proto(Exception): ...
POP3_PORT: int
POP3_SSL_PORT: int
CR: bytes
LF: bytes
CRLF: bytes
class POP3:
if sys.version_info >= (3, 0):
... | 2,500 | Python | .py | 66 | 31.863636 | 137 | 0.559951 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,179 | difflib.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/difflib.pyi | import sys
from typing import (
Any,
AnyStr,
Callable,
Generic,
Iterable,
Iterator,
List,
NamedTuple,
Optional,
Sequence,
Text,
Tuple,
TypeVar,
Union,
overload,
)
if sys.version_info >= (3, 9):
from types import GenericAlias
_T = TypeVar("_T")
if sys.ve... | 4,936 | Python | .py | 141 | 28.929078 | 130 | 0.553418 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,180 | _curses.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/_curses.pyi | import sys
from typing import IO, Any, BinaryIO, NamedTuple, Optional, Tuple, Union, overload
_chtype = Union[str, bytes, int]
ALL_MOUSE_EVENTS: int
A_ALTCHARSET: int
A_ATTRIBUTES: int
A_BLINK: int
A_BOLD: int
A_CHARTEXT: int
A_COLOR: int
A_DIM: int
A_HORIZONTAL: int
A_INVIS: int
if sys.version_info >= (3, 7):
A_... | 13,596 | Python | .py | 480 | 25.595833 | 120 | 0.603846 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,181 | py_compile.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/py_compile.pyi | import enum
import sys
from typing import AnyStr, List, Optional, Text, Type, Union
_EitherStr = Union[bytes, Text]
class PyCompileError(Exception):
exc_type_name: str
exc_value: BaseException
file: str
msg: str
def __init__(self, exc_type: Type[BaseException], exc_value: BaseException, file: str,... | 1,642 | Python | .py | 44 | 31.5 | 124 | 0.583648 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,182 | __init__.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/pyexpat/__init__.pyi | import pyexpat.errors as errors
import pyexpat.model as model
from _typeshed import SupportsRead
from typing import Any, Callable, Dict, List, Optional, Text, Tuple, Union
EXPAT_VERSION: str # undocumented
version_info: Tuple[int, int, int] # undocumented
native_encoding: str # undocumented
features: List[Tuple[str... | 3,404 | Python | .py | 71 | 43.450704 | 124 | 0.706767 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,183 | errors.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/pyexpat/errors.pyi | import sys
from typing import Dict
if sys.version_info >= (3, 2):
codes: Dict[str, int]
messages: Dict[int, str]
XML_ERROR_ABORTED: str
XML_ERROR_ASYNC_ENTITY: str
XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF: str
XML_ERROR_BAD_CHAR_REF: str
XML_ERROR_BINARY_ENTITY_REF: str
XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSI... | 1,275 | Python | .py | 42 | 29.119048 | 47 | 0.809911 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,184 | model.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/pyexpat/model.pyi | XML_CTYPE_ANY: int
XML_CTYPE_CHOICE: int
XML_CTYPE_EMPTY: int
XML_CTYPE_MIXED: int
XML_CTYPE_NAME: int
XML_CTYPE_SEQ: int
XML_CQUANT_NONE: int
XML_CQUANT_OPT: int
XML_CQUANT_PLUS: int
XML_CQUANT_REP: int
| 205 | Python | .py | 10 | 19.4 | 21 | 0.793814 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,185 | config.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/logging/config.pyi | import sys
from _typeshed import AnyPath, StrPath
from threading import Thread
from typing import IO, Any, Callable, Dict, Optional, Union
if sys.version_info >= (3,):
from configparser import RawConfigParser
else:
from ConfigParser import RawConfigParser
if sys.version_info >= (3, 7):
_Path = AnyPath
els... | 967 | Python | .py | 26 | 33.192308 | 114 | 0.641711 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,186 | __init__.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/logging/__init__.pyi | import sys
import threading
from _typeshed import StrPath
from string import Template
from time import struct_time
from types import FrameType, TracebackType
from typing import (
IO,
Any,
Callable,
Dict,
Iterable,
List,
Mapping,
MutableMapping,
Optional,
Sequence,
Text,
T... | 28,358 | Python | .py | 879 | 23.176337 | 124 | 0.472923 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,187 | handlers.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/logging/handlers.pyi | import datetime
import ssl
import sys
from _typeshed import StrPath
from logging import FileHandler, Handler, LogRecord
from socket import SocketKind, SocketType
from typing import Any, Callable, ClassVar, Dict, List, Optional, Tuple, Union
if sys.version_info >= (3, 7):
from queue import Queue, SimpleQueue
elif s... | 8,847 | Python | .py | 238 | 28.978992 | 122 | 0.544417 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,188 | pytree.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pytree.pyi | import sys
from lib2to3.pgen2.grammar import Grammar
from typing import Any, Callable, Dict, Iterator, List, Optional, Text, Tuple, TypeVar, Union
_P = TypeVar("_P")
_NL = Union[Node, Leaf]
_Context = Tuple[Text, int, int]
_Results = Dict[Text, _NL]
_RawNode = Tuple[int, Text, _Context, Optional[List[_NL]]]
_Convert =... | 3,322 | Python | .py | 84 | 34.72619 | 126 | 0.595039 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,189 | pygram.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pygram.pyi | from lib2to3.pgen2.grammar import Grammar
class Symbols:
def __init__(self, grammar: Grammar) -> None: ...
class python_symbols(Symbols):
and_expr: int
and_test: int
annassign: int
arglist: int
argument: int
arith_expr: int
assert_stmt: int
async_funcdef: int
async_stmt: int
... | 2,208 | Python | .py | 109 | 15.477064 | 53 | 0.655847 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,190 | driver.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/driver.pyi | from _typeshed import StrPath
from lib2to3.pgen2.grammar import Grammar
from lib2to3.pytree import _NL, _Convert
from logging import Logger
from typing import IO, Any, Iterable, Optional, Text
class Driver:
grammar: Grammar
logger: Logger
convert: _Convert
def __init__(self, grammar: Grammar, convert: ... | 956 | Python | .py | 18 | 49.777778 | 120 | 0.627137 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,191 | token.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/token.pyi | import sys
from typing import Dict, Text
ENDMARKER: int
NAME: int
NUMBER: int
STRING: int
NEWLINE: int
INDENT: int
DEDENT: int
LPAR: int
RPAR: int
LSQB: int
RSQB: int
COLON: int
COMMA: int
SEMI: int
PLUS: int
MINUS: int
STAR: int
SLASH: int
VBAR: int
AMPER: int
LESS: int
GREATER: int
EQUAL: int
DOT: int
PERCENT: int
B... | 1,065 | Python | .py | 69 | 14.115942 | 38 | 0.77666 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,192 | tokenize.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/tokenize.pyi | from lib2to3.pgen2.token import * # noqa
from typing import Callable, Iterable, Iterator, List, Text, Tuple
_Coord = Tuple[int, int]
_TokenEater = Callable[[int, Text, _Coord, _Coord, Text], None]
_TokenInfo = Tuple[int, Text, _Coord, _Coord, Text]
class TokenError(Exception): ...
class StopTokenizing(Exception): ..... | 883 | Python | .py | 18 | 46.222222 | 90 | 0.680233 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,193 | grammar.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/grammar.pyi | from _typeshed import StrPath
from typing import Dict, List, Optional, Text, Tuple, TypeVar
_P = TypeVar("_P")
_Label = Tuple[int, Optional[Text]]
_DFA = List[List[Tuple[int, int]]]
_DFAS = Tuple[_DFA, Dict[int, int]]
class Grammar:
symbol2number: Dict[Text, int]
number2symbol: Dict[int, Text]
states: Lis... | 733 | Python | .py | 23 | 28.304348 | 61 | 0.64215 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,194 | literals.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/literals.pyi | from typing import Dict, Match, Text
simple_escapes: Dict[Text, Text]
def escape(m: Match[str]) -> Text: ...
def evalString(s: Text) -> Text: ...
def test() -> None: ...
| 172 | Python | .py | 5 | 33 | 38 | 0.660606 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,195 | pgen.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/pgen.pyi | from _typeshed import StrPath
from lib2to3.pgen2 import grammar
from lib2to3.pgen2.tokenize import _TokenInfo
from typing import IO, Any, Dict, Iterable, Iterator, List, NoReturn, Optional, Text, Tuple
class PgenGrammar(grammar.Grammar): ...
class ParserGenerator:
filename: StrPath
stream: IO[Text]
genera... | 2,140 | Python | .py | 41 | 47.95122 | 92 | 0.646132 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,196 | parse.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/parse.pyi | from lib2to3.pgen2.grammar import _DFAS, Grammar
from lib2to3.pytree import _NL, _Convert, _RawNode
from typing import Any, List, Optional, Sequence, Set, Text, Tuple
_Context = Sequence[Any]
class ParseError(Exception):
msg: Text
type: int
value: Optional[Text]
context: _Context
def __init__(self... | 1,107 | Python | .py | 23 | 44.043478 | 100 | 0.656799 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,197 | xml.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/_typeshed/xml.pyi | # Stub-only types. This module does not exist at runtime.
from typing import Any, Optional
from typing_extensions import Protocol
# As defined https://docs.python.org/3/library/xml.dom.html#domimplementation-objects
class DOMImplementation(Protocol):
def hasFeature(self, feature: str, version: Optional[str]) -> b... | 528 | Python | .py | 8 | 63.25 | 103 | 0.756757 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,198 | wsgi.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/_typeshed/wsgi.pyi | # Types to support PEP 3333 (WSGI)
#
# This module doesn't exist at runtime and neither do the types defined in this
# file. They are provided for type checking purposes.
from sys import _OptExcInfo
from typing import Any, Callable, Dict, Iterable, List, Optional, Protocol, Text, Tuple
class StartResponse(Protocol):
... | 1,293 | Python | .py | 28 | 43.071429 | 96 | 0.671701 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |
29,199 | __init__.pyi | DamnWidget_anaconda/anaconda_lib/jedi/third_party/typeshed/stdlib/2and3/_typeshed/__init__.pyi | # Utility types for typeshed
# This module contains various common types to be used by typeshed. The
# module and its types do not exist at runtime. You can use this module
# outside of typeshed, but no API stability guarantees are made. To use
# it in implementation (.py) files, the following construct must be used:
... | 4,615 | Python | .py | 162 | 24.567901 | 95 | 0.609883 | DamnWidget/anaconda | 2,213 | 260 | 184 | GPL-3.0 | 9/5/2024, 5:14:06 PM (Europe/Amsterdam) |