file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/aiodns-2.0.0.dist-info/top_level.txt
aiodns
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/setuptools-68.0.0.dist-info/top_level.txt
_distutils_hack pkg_resources setuptools
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/setuptools-68.0.0.dist-info/entry_points.txt
[distutils.commands] alias = setuptools.command.alias:alias bdist_egg = setuptools.command.bdist_egg:bdist_egg bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm build = setuptools.command.build:build build_clib = setuptools.command.build_clib:build_clib build_ext = setuptools.command.build_ext:build_ext build_py = set...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser-2.21.dist-info/top_level.txt
pycparser
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/filepost.py
from __future__ import absolute_import import binascii import codecs import os from io import BytesIO from .fields import RequestField from .packages import six from .packages.six import b writer = codecs.lookup("utf-8")[3] def choose_boundary(): """ Our embarrassingly-simple replacement for mimetools.choo...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/_version.py
# This file is protected via CODEOWNERS __version__ = "1.26.16"
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/connection.py
from __future__ import absolute_import import datetime import logging import os import re import socket import warnings from socket import error as SocketError from socket import timeout as SocketTimeout from .packages import six from .packages.six.moves.http_client import HTTPConnection as _HTTPConnection from .pack...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/response.py
from __future__ import absolute_import import io import logging import sys import warnings import zlib from contextlib import contextmanager from socket import error as SocketError from socket import timeout as SocketTimeout try: try: import brotlicffi as brotli except ImportError: import brot...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/exceptions.py
from __future__ import absolute_import from .packages.six.moves.http_client import IncompleteRead as httplib_IncompleteRead # Base Exceptions class HTTPError(Exception): """Base exception used by this module.""" pass class HTTPWarning(Warning): """Base warning used by this module.""" pass clas...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/poolmanager.py
from __future__ import absolute_import import collections import functools import logging from ._collections import RecentlyUsedContainer from .connectionpool import HTTPConnectionPool, HTTPSConnectionPool, port_by_scheme from .exceptions import ( LocationValueError, MaxRetryError, ProxySchemeUnknown, ...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/fields.py
from __future__ import absolute_import import email.utils import mimetypes import re from .packages import six def guess_content_type(filename, default="application/octet-stream"): """ Guess the "Content-Type" of a file. :param filename: The filename to guess the "Content-Type" of using :mod:`m...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/_collections.py
from __future__ import absolute_import try: from collections.abc import Mapping, MutableMapping except ImportError: from collections import Mapping, MutableMapping try: from threading import RLock except ImportError: # Platform-specific: No threads available class RLock: def __enter__(self): ...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/request.py
from __future__ import absolute_import from .filepost import encode_multipart_formdata from .packages.six.moves.urllib.parse import urlencode __all__ = ["RequestMethods"] class RequestMethods(object): """ Convenience mixin for classes who implement a :meth:`urlopen` method, such as :class:`urllib3.HTTPC...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/__init__.py
""" Python HTTP library with thread-safe connection pooling, file post support, user friendly, and more """ from __future__ import absolute_import # Set default logging handler to avoid "No handler found" warnings. import logging import warnings from logging import NullHandler from . import exceptions from ._version ...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/connectionpool.py
from __future__ import absolute_import import errno import logging import re import socket import sys import warnings from socket import error as SocketError from socket import timeout as SocketTimeout from .connection import ( BaseSSLError, BrokenPipeError, DummyConnection, HTTPConnection, HTTPEx...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/contrib/appengine.py
""" This module provides a pool manager that uses Google App Engine's `URLFetch Service <https://cloud.google.com/appengine/docs/python/urlfetch>`_. Example usage:: from urllib3 import PoolManager from urllib3.contrib.appengine import AppEngineManager, is_appengine_sandbox if is_appengine_sandbox(): ...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/contrib/socks.py
# -*- coding: utf-8 -*- """ This module contains provisional support for SOCKS proxies from within urllib3. This module supports SOCKS4, SOCKS4A (an extension of SOCKS4), and SOCKS5. To enable its functionality, either install PySocks or install this module with the ``socks`` extra. The SOCKS implementation supports t...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/contrib/pyopenssl.py
""" TLS with SNI_-support for Python 2. Follow these instructions if you would like to verify TLS certificates in Python 2. Note, the default libraries do *not* do certificate checking; you need to do additional work to validate certificates yourself. This needs the following packages installed: * `pyOpenSSL`_ (teste...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/contrib/securetransport.py
""" SecureTranport support for urllib3 via ctypes. This makes platform-native TLS available to urllib3 users on macOS without the use of a compiler. This is an important feature because the Python Package Index is moving to become a TLSv1.2-or-higher server, and the default OpenSSL that ships with macOS is not capable...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/contrib/__init__.py
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/contrib/_appengine_environ.py
""" This module provides means to detect the App Engine environment. """ import os def is_appengine(): return is_local_appengine() or is_prod_appengine() def is_appengine_sandbox(): """Reports if the app is running in the first generation sandbox. The second generation runtimes are technically still i...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/contrib/ntlmpool.py
""" NTLM authenticating pool, contributed by erikcederstran Issue #10, see: http://code.google.com/p/urllib3/issues/detail?id=10 """ from __future__ import absolute_import import warnings from logging import getLogger from ntlm import ntlm from .. import HTTPSConnectionPool from ..packages.six.moves.http_client imp...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/contrib/_securetransport/__init__.py
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/contrib/_securetransport/low_level.py
""" Low-level helpers for the SecureTransport bindings. These are Python functions that are not directly related to the high-level APIs but are necessary to get them to work. They include a whole bunch of low-level CoreFoundation messing about and memory management. The concerns in this module are almost entirely abou...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/contrib/_securetransport/bindings.py
""" This module uses ctypes to bind a whole bunch of functions and constants from SecureTransport. The goal here is to provide the low-level API to SecureTransport. These are essentially the C-level functions and constants, and they're pretty gross to work with. This code is a bastardised version of the code found in ...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/packages/__init__.py
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/packages/six.py
# Copyright (c) 2010-2020 Benjamin Peterson # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publi...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/packages/backports/makefile.py
# -*- coding: utf-8 -*- """ backports.makefile ~~~~~~~~~~~~~~~~~~ Backports the Python 3 ``socket.makefile`` method for use with anything that wants to create a "fake" socket object. """ import io from socket import SocketIO def backport_makefile( self, mode="r", buffering=None, encoding=None, errors=None, newli...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/packages/backports/__init__.py
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/urllib3/packages/backports/weakref_finalize.py
# -*- coding: utf-8 -*- """ backports.weakref_finalize ~~~~~~~~~~~~~~~~~~ Backports the Python 3 ``weakref.finalize`` method. """ from __future__ import absolute_import import itertools import sys from weakref import ref __all__ = ["weakref_finalize"] class weakref_finalize(object): """Class for finalization o...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/typing_extensions-3.10.0.2.dist-info/top_level.txt
typing_extensions
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/psutil-5.7.2-py3.10.egg-info/SOURCES.txt
.cirrus.yml .coveragerc .flake8 .gitignore CREDITS HISTORY.rst INSTALL.rst LICENSE MANIFEST.in Makefile README.rst make.bat setup.cfg setup.py tox.ini docs/DEVGUIDE.rst docs/DEVNOTES docs/Makefile docs/README docs/conf.py docs/index.rst docs/make.bat docs/_static/copybutton.js docs/_static/favicon.ico docs/_static/side...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/psutil-5.7.2-py3.10.egg-info/top_level.txt
psutil
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/psutil-5.7.2-py3.10.egg-info/requires.txt
[test] [test:python_version < "3.0"] ipaddress mock unittest2 [test:python_version <= "3.4"] enum34 [test:sys_platform == "win32"] pywin32 wmi
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/psutil-5.7.2-py3.10.egg-info/installed-files.txt
..\psutil\__init__.py ..\psutil\__pycache__\__init__.cpython-310.pyc ..\psutil\__pycache__\_common.cpython-310.pyc ..\psutil\__pycache__\_compat.cpython-310.pyc ..\psutil\__pycache__\_psaix.cpython-310.pyc ..\psutil\__pycache__\_psbsd.cpython-310.pyc ..\psutil\__pycache__\_pslinux.cpython-310.pyc ..\psutil\__pycache__\...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/psutil-5.7.2-py3.10.egg-info/dependency_links.txt
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/frozenlist/__init__.py
import os import sys import types from collections.abc import MutableSequence from functools import total_ordering from typing import Tuple, Type __version__ = "1.3.3" __all__ = ("FrozenList", "PyFrozenList") # type: Tuple[str, ...] NO_EXTENSIONS = bool(os.environ.get("FROZENLIST_NO_EXTENSIONS")) # type: bool @...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/frozenlist/__init__.pyi
from typing import ( Generic, Iterable, Iterator, List, MutableSequence, Optional, TypeVar, Union, overload, ) _T = TypeVar("_T") _Arg = Union[List[_T], Iterable[_T]] class FrozenList(MutableSequence[_T], Generic[_T]): def __init__(self, items: Optional[_Arg[_T]] = None) -> Non...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/cchardet-2.1.6-py3.10.egg-info/SOURCES.txt
CHANGES.rst COPYING MANIFEST.in README.rst requirements-dev.txt setup.cfg setup.py bin/cchardetect src/cchardet/_cchardet.cpp src/ext/uchardet/src/CharDistribution.cpp src/ext/uchardet/src/JpCntx.cpp src/ext/uchardet/src/nsBig5Prober.cpp src/ext/uchardet/src/nsCharSetProber.cpp src/ext/uchardet/src/nsEUCJPProber.cpp sr...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/cchardet-2.1.6-py3.10.egg-info/top_level.txt
cchardet
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/cchardet-2.1.6-py3.10.egg-info/installed-files.txt
..\..\..\bin\cchardetect ..\cchardet\__init__.py ..\cchardet\__pycache__\__init__.cpython-310.pyc ..\cchardet\__pycache__\version.cpython-310.pyc ..\cchardet\_cchardet.cp310-win_amd64.pyd ..\cchardet\version.py PKG-INFO SOURCES.txt dependency_links.txt top_level.txt
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/cchardet-2.1.6-py3.10.egg-info/dependency_links.txt
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/httptools/_version.py
# This file MUST NOT contain anything but the __version__ assignment. # # When making a release, change the value of __version__ # to an appropriate value, and open a pull request against # the correct branch (master if making a new feature release). # The commit message MUST contain a properly formatted release # log,...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/httptools/__init__.py
from . import parser from .parser import * # NOQA from ._version import __version__ # NOQA __all__ = parser.__all__ + ('__version__',) # NOQA
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/httptools/parser/url_parser.c
/* Generated by Cython 0.29.28 */ /* BEGIN: Cython Metadata { "distutils": { "depends": [], "extra_compile_args": [ "-O2" ], "name": "httptools.parser.url_parser", "sources": [ "httptools/parser/url_parser.pyx" ] }, "module_name": "htt...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/httptools/parser/__init__.py
from .parser import * # NoQA from .errors import * # NoQA from .url_parser import * # NoQA __all__ = parser.__all__ + errors.__all__ + url_parser.__all__ # NoQA
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/httptools/parser/errors.py
__all__ = ('HttpParserError', 'HttpParserCallbackError', 'HttpParserInvalidStatusError', 'HttpParserInvalidMethodError', 'HttpParserInvalidURLError', 'HttpParserUpgrade') class HttpParserError(Exception): pass class HttpParserCallbackError(HttpParserError):...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/httptools/parser/parser.c
/* Generated by Cython 0.29.28 */ /* BEGIN: Cython Metadata { "distutils": { "depends": [], "extra_compile_args": [ "-O2" ], "name": "httptools.parser.parser", "sources": [ "httptools/parser/parser.pyx" ] }, "module_name": "httptools.p...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pathtools-0.1.2-py3.10.egg-info/SOURCES.txt
AUTHORS LICENSE MANIFEST.in README setup.cfg setup.py docs/Makefile docs/make.bat docs/source/api.rst docs/source/conf.py docs/source/global.rst.inc docs/source/index.rst pathtools/__init__.py pathtools/path.py pathtools/patterns.py pathtools/version.py pathtools.egg-info/PKG-INFO pathtools.egg-info/SOURCES.txt pathtoo...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pathtools-0.1.2-py3.10.egg-info/top_level.txt
pathtools
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pathtools-0.1.2-py3.10.egg-info/installed-files.txt
..\pathtools\__init__.py ..\pathtools\__pycache__\__init__.cpython-310.pyc ..\pathtools\__pycache__\path.cpython-310.pyc ..\pathtools\__pycache__\patterns.cpython-310.pyc ..\pathtools\__pycache__\version.cpython-310.pyc ..\pathtools\path.py ..\pathtools\patterns.py ..\pathtools\version.py PKG-INFO SOURCES.txt dependenc...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pathtools-0.1.2-py3.10.egg-info/dependency_links.txt
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/_build_tables.py
#----------------------------------------------------------------- # pycparser: _build_tables.py # # A dummy for generating the lexing/parsing tables and and # compiling them into .pyc for faster execution in optimized mode. # Also generates AST code from the configuration file. # Should be called from the pycparser di...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/_ast_gen.py
#----------------------------------------------------------------- # _ast_gen.py # # Generates the AST Node classes from a specification given in # a configuration file # # The design of this module was inspired by astgen.py from the # Python 2.5 code-base. # # Eli Bendersky [https://eli.thegreenplace.net/] # License: ...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/c_ast.py
#----------------------------------------------------------------- # ** ATTENTION ** # This code was automatically generated from the file: # _c_ast.cfg # # Do not modify it directly. Modify the configuration file and # run the generator again. # ** ** *** ** ** # # pycparser: c_ast.py # # AST Node classes. # # Eli Ben...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/__init__.py
#----------------------------------------------------------------- # pycparser: __init__.py # # This package file exports some convenience functions for # interacting with pycparser # # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #----------------------------------------------------------------- __all...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/c_lexer.py
#------------------------------------------------------------------------------ # pycparser: c_lexer.py # # CLexer class: lexer for the C language # # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #------------------------------------------------------------------------------ import re from .ply import...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/c_parser.py
#------------------------------------------------------------------------------ # pycparser: c_parser.py # # CParser class: Parser and AST builder for the C language # # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #------------------------------------------------------------------------------ from .pl...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/c_generator.py
#------------------------------------------------------------------------------ # pycparser: c_generator.py # # C code generator from pycparser AST nodes. # # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #------------------------------------------------------------------------------ from . import c_ast...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/lextab.py
# lextab.py. This file automatically created by PLY (version 3.10). Don't edit! _tabversion = '3.10' _lextokens = set(('INT_CONST_CHAR', 'VOID', 'LBRACKET', 'WCHAR_CONST', 'FLOAT_CONST', 'MINUS', 'RPAREN', 'STRUCT', 'LONG', 'PLUS', 'ELLIPSIS', 'U32STRING_LITERAL', 'GT', 'GOTO', 'ENUM', 'PERIOD', 'GE', 'INT_CONST_D...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/plyparser.py
#----------------------------------------------------------------- # plyparser.py # # PLYParser class and other utilities for simplifying programming # parsers with PLY # # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #----------------------------------------------------------------- import warnings ...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/ast_transforms.py
#------------------------------------------------------------------------------ # pycparser: ast_transforms.py # # Some utilities used by the parser to create a friendlier AST. # # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #----------------------------------------------------------------------------...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/yacctab.py
# yacctab.py # This file is automatically generated. Do not edit. _tabversion = '3.10' _lr_method = 'LALR' _lr_signature = 'translation_unit_or_emptyleftLORleftLANDleftORleftXORleftANDleftEQNEleftGTGELTLEleftRSHIFTLSHIFTleftPLUSMINUSleftTIMESDIVIDEMODAUTO BREAK CASE CHAR CONST CONTINUE DEFAULT DO DOUBLE ELSE ENUM EX...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/ply/cpp.py
# ----------------------------------------------------------------------------- # cpp.py # # Author: David Beazley (http://www.dabeaz.com) # Copyright (C) 2017 # All rights reserved # # This module implements an ANSI-C style lexical preprocessor for PLY. # --------------------------------------------------------------...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/ply/yacc.py
# ----------------------------------------------------------------------------- # ply: yacc.py # # Copyright (C) 2001-2017 # David M. Beazley (Dabeaz LLC) # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions ar...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/ply/__init__.py
# PLY package # Author: David Beazley (dave@dabeaz.com) __version__ = '3.9' __all__ = ['lex','yacc']
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/ply/ctokens.py
# ---------------------------------------------------------------------- # ctokens.py # # Token specifications for symbols in ANSI C and C++. This file is # meant to be used as a library in other tokenizers. # ---------------------------------------------------------------------- # Reserved words tokens = [ # Li...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/ply/ygen.py
# ply: ygen.py # # This is a support program that auto-generates different versions of the YACC parsing # function with different features removed for the purposes of performance. # # Users should edit the method LParser.parsedebug() in yacc.py. The source code # for that method is then used to create the other meth...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pycparser/ply/lex.py
# ----------------------------------------------------------------------------- # ply: lex.py # # Copyright (C) 2001-2017 # David M. Beazley (Dabeaz LLC) # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/async_timeout-4.0.2.dist-info/top_level.txt
async_timeout
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/idna_ssl-1.1.0-py3.10.egg-info/SOURCES.txt
LICENSE MANIFEST.in README.rst idna_ssl.py setup.cfg setup.py idna_ssl.egg-info/PKG-INFO idna_ssl.egg-info/SOURCES.txt idna_ssl.egg-info/dependency_links.txt idna_ssl.egg-info/not-zip-safe idna_ssl.egg-info/requires.txt idna_ssl.egg-info/top_level.txt
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/idna_ssl-1.1.0-py3.10.egg-info/top_level.txt
idna_ssl
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/idna_ssl-1.1.0-py3.10.egg-info/requires.txt
idna>=2.0
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/idna_ssl-1.1.0-py3.10.egg-info/installed-files.txt
..\__pycache__\idna_ssl.cpython-310.pyc ..\idna_ssl.py PKG-INFO SOURCES.txt dependency_links.txt not-zip-safe requires.txt top_level.txt
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/idna_ssl-1.1.0-py3.10.egg-info/dependency_links.txt
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/sniffio/_version.py
# This file is imported from __init__.py and exec'd from setup.py __version__ = "1.3.0"
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/sniffio/_impl.py
from contextvars import ContextVar from typing import Optional import sys import threading current_async_library_cvar = ContextVar( "current_async_library_cvar", default=None ) # type: ContextVar[Optional[str]] class _ThreadLocal(threading.local): # Since threading.local provides no explicit mechanism is fo...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/sniffio/__init__.py
"""Top-level package for sniffio.""" __all__ = [ "current_async_library", "AsyncLibraryNotFoundError", "current_async_library_cvar" ] from ._version import __version__ from ._impl import ( current_async_library, AsyncLibraryNotFoundError, current_async_library_cvar, thread_local, )
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/sniffio/_tests/__init__.py
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/sniffio/_tests/test_sniffio.py
import os import sys import pytest from .. import ( current_async_library, AsyncLibraryNotFoundError, current_async_library_cvar, thread_local ) def test_basics_cvar(): with pytest.raises(AsyncLibraryNotFoundError): current_async_library() token = current_async_library_cvar.set("generic-lib...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/botocore-1.20.49.dist-info/top_level.txt
botocore
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/botocore-1.20.49.dist-info/LICENSE.txt
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, ...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_pclass.py
from pyrsistent._checked_types import (InvariantException, CheckedType, _restore_pickle, store_invariants) from pyrsistent._field_common import ( set_fields, check_type, is_field_ignore_extra_complaint, PFIELD_NO_INITIAL, serialize, check_global_invariants ) from pyrsistent._transformations import transform def _...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_immutable.py
import sys def immutable(members='', name='Immutable', verbose=False): """ Produces a class that either can be used standalone or as a base class for persistent classes. This is a thin wrapper around a named tuple. Constructing a type and using it to instantiate objects: >>> Point = immutable('...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_pmap.py
from collections.abc import Mapping, Hashable from itertools import chain from pyrsistent._pvector import pvector from pyrsistent._transformations import transform class PMapView: """View type for the persistent map/dict type `PMap`. Provides an equivalent of Python's built-in `dict_values` and `dict_items` ...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_pbag.py
from collections.abc import Container, Iterable, Sized, Hashable from functools import reduce from pyrsistent._pmap import pmap def _add_to_counters(counters, element): return counters.set(element, counters.get(element, 0) + 1) class PBag(object): """ A persistent bag/multiset type. Requires elemen...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_checked_types.py
from enum import Enum from abc import abstractmethod, ABCMeta from collections.abc import Iterable from pyrsistent._pmap import PMap, pmap from pyrsistent._pset import PSet, pset from pyrsistent._pvector import PythonPVector, python_pvector class CheckedType(object): """ Marker class to enable creation and ...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_plist.py
from collections.abc import Sequence, Hashable from numbers import Integral from functools import reduce class _PListBuilder(object): """ Helper class to allow construction of a list without having to reverse it in the end. """ __slots__ = ('_head', '_tail') def __init__(self): self._...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_helpers.py
from functools import wraps from pyrsistent._pmap import PMap, pmap from pyrsistent._pset import PSet, pset from pyrsistent._pvector import PVector, pvector def freeze(o, strict=True): """ Recursively convert simple Python containers into pyrsistent versions of those containers. - list is converted to...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/__init__.py
# -*- coding: utf-8 -*- from pyrsistent._pmap import pmap, m, PMap from pyrsistent._pvector import pvector, v, PVector from pyrsistent._pset import pset, s, PSet from pyrsistent._pbag import pbag, b, PBag from pyrsistent._plist import plist, l, PList from pyrsistent._pdeque import pdeque, dq, PDeque from pyrsist...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_toolz.py
""" Functionality copied from the toolz package to avoid having to add toolz as a dependency. See https://github.com/pytoolz/toolz/. toolz is released under BSD licence. Below is the licence text from toolz as it appeared when copying the code. -------------------------------------------------------------- Copyrigh...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_pvector.py
from abc import abstractmethod, ABCMeta from collections.abc import Sequence, Hashable from numbers import Integral import operator from pyrsistent._transformations import transform def _bitcount(val): return bin(val).count("1") BRANCH_FACTOR = 32 BIT_MASK = BRANCH_FACTOR - 1 SHIFT = _bitcount(BIT_MASK) def co...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_pset.py
from collections.abc import Set, Hashable import sys from pyrsistent._pmap import pmap class PSet(object): """ Persistent set implementation. Built on top of the persistent map. The set supports all operations in the Set protocol and is Hashable. Do not instantiate directly, instead use the factory f...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/typing.pyi
# flake8: noqa: E704 # from https://gist.github.com/WuTheFWasThat/091a17d4b5cab597dfd5d4c2d96faf09 # Stubs for pyrsistent (Python 3.6) # from typing import Any from typing import Callable from typing import Dict from typing import Generic from typing import Hashable from typing import Iterator from typing import Iterab...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_transformations.py
import re try: from inspect import Parameter, signature except ImportError: signature = None from inspect import getfullargspec _EMPTY_SENTINEL = object() def inc(x): """ Add one to the current value """ return x + 1 def dec(x): """ Subtract one from the current value """ return x - 1 ...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/__init__.pyi
# flake8: noqa: E704 # from https://gist.github.com/WuTheFWasThat/091a17d4b5cab597dfd5d4c2d96faf09 # Stubs for pyrsistent (Python 3.6) from typing import Any from typing import AnyStr from typing import Callable from typing import Iterable from typing import Iterator from typing import List from typing import Optional...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/typing.py
"""Helpers for use with type annotation. Use the empty classes in this module when annotating the types of Pyrsistent objects, instead of using the actual collection class. For example, from pyrsistent import pvector from pyrsistent.typing import PVector myvector: PVector[str] = pvector(['a', 'b', 'c'])...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_precord.py
from pyrsistent._checked_types import CheckedType, _restore_pickle, InvariantException, store_invariants from pyrsistent._field_common import ( set_fields, check_type, is_field_ignore_extra_complaint, PFIELD_NO_INITIAL, serialize, check_global_invariants ) from pyrsistent._pmap import PMap, pmap class _PRecordMet...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_pdeque.py
from collections.abc import Sequence, Hashable from itertools import islice, chain from numbers import Integral from pyrsistent._plist import plist class PDeque(object): """ Persistent double ended queue (deque). Allows quick appends and pops in both ends. Implemented using two persistent lists. A ma...
omniverse-code/kit/exts/omni.kit.pip_archive/pip_prebundle/pyrsistent/_field_common.py
from pyrsistent._checked_types import ( CheckedPMap, CheckedPSet, CheckedPVector, CheckedType, InvariantException, _restore_pickle, get_type, maybe_parse_user_type, maybe_parse_many_user_types, ) from pyrsistent._checked_types import optional as optional_type from pyrsistent._checked...