testgres 1.10.1__tar.gz → 1.10.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {testgres-1.10.1/testgres.egg-info → testgres-1.10.2}/PKG-INFO +6 -4
- {testgres-1.10.1 → testgres-1.10.2}/setup.py +1 -1
- {testgres-1.10.1 → testgres-1.10.2}/testgres/config.py +6 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/connection.py +2 -1
- {testgres-1.10.1 → testgres-1.10.2}/testgres/node.py +72 -54
- {testgres-1.10.1 → testgres-1.10.2}/testgres/operations/local_ops.py +37 -14
- {testgres-1.10.1 → testgres-1.10.2}/testgres/operations/os_ops.py +16 -5
- {testgres-1.10.1 → testgres-1.10.2}/testgres/operations/remote_ops.py +39 -66
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/bin/activate_this.py +32 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/_distutils_hack/__init__.py +132 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/_distutils_hack/override.py +1 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/_virtualenv.py +130 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/backports/__init__.py +1 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/backports/tarfile/__init__.py +2937 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/backports/tarfile/__main__.py +5 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/backports/tarfile/compat/py38.py +24 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/certifi/__init__.py +4 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/certifi/__main__.py +12 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/certifi/core.py +114 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/__init__.py +14 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/_imp_emulation.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/_shimmed_dist_utils.py +41 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/api.py +965 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/backend_ctypes.py +1121 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/cffi_opcode.py +187 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/commontypes.py +80 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/cparser.py +1006 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/error.py +31 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/ffiplatform.py +113 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/lock.py +30 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/model.py +618 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/pkgconfig.py +121 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/recompiler.py +1581 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/setuptools_ext.py +216 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/vengine_cpy.py +1077 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/vengine_gen.py +675 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/verifier.py +306 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/__init__.py +46 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/__main__.py +4 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/api.py +626 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/cd.py +395 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/cli/__init__.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/cli/__main__.py +296 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/constant.py +1995 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/legacy.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/md.py +615 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/models.py +340 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/utils.py +421 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/version.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/__about__.py +17 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/__init__.py +13 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/exceptions.py +52 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/fernet.py +215 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/__init__.py +13 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/_oid.py +296 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/__init__.py +13 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/__init__.py +9 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/aead.py +272 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/backend.py +898 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ciphers.py +282 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/decode_asn1.py +32 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/__init__.py +3 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/__init__.py +3 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py +226 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/binding.py +144 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/__init__.py +3 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/_asymmetric.py +19 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py +44 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/_serialization.py +169 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py +3 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py +135 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py +154 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py +383 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py +116 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py +118 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py +113 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py +239 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/types.py +111 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py +24 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py +109 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py +112 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py +27 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/aead.py +174 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py +226 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/base.py +272 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/modes.py +273 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/cmac.py +10 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/constant_time.py +14 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/hashes.py +242 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/hmac.py +13 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/__init__.py +23 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/concatkdf.py +124 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/hkdf.py +101 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/kbkdf.py +299 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/pbkdf2.py +64 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py +80 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/x963kdf.py +61 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/keywrap.py +177 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/padding.py +225 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/poly1305.py +11 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__init__.py +63 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/base.py +14 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py +229 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py +233 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/ssh.py +1507 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/__init__.py +9 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/hotp.py +92 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/totp.py +50 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/utils.py +131 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/__init__.py +257 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/base.py +1221 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/certificate_transparency.py +97 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/extensions.py +2175 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/general_name.py +281 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/name.py +456 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/ocsp.py +615 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/oid.py +33 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/verification.py +24 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/__init__.py +291 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/__main__.py +96 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/core.py +780 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/examples.py +99 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/frontend.py +1065 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/io.py +637 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/__init__.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/af.py +58 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/ar.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/ca.py +65 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/cs.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/da.py +61 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/de.py +58 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/en.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/eo.py +61 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/es.py +58 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/fa.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/fi.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/fr.py +58 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/gl.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/he.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/it.py +58 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/ja.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/ka.py +58 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/ko.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/lt.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/lv.py +59 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/nl.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/pl.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/pt_br.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/ru.py +58 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/sk.py +58 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/sv.py +59 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/uk.py +58 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/zh_cn.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/languages/zh_tw.py +61 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/nodes.py +2301 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/__init__.py +92 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/commonmark_wrapper.py +56 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/null.py +20 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/recommonmark_wrapper.py +147 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/__init__.py +413 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/directives/__init__.py +466 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/directives/admonitions.py +101 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/directives/body.py +305 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/directives/html.py +21 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/directives/images.py +173 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/directives/misc.py +642 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/directives/parts.py +126 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/directives/references.py +29 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/directives/tables.py +538 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/__init__.py +40 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/af.py +108 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/ar.py +99 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/ca.py +130 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/cs.py +110 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/da.py +114 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/de.py +107 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/en.py +114 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/eo.py +119 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/es.py +123 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/fa.py +102 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/fi.py +98 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/fr.py +108 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/gl.py +106 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/he.py +110 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/it.py +99 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/ja.py +119 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/ka.py +90 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/ko.py +111 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/lt.py +109 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/lv.py +108 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/nl.py +114 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/pl.py +101 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/pt_br.py +110 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/ru.py +90 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/sk.py +96 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/sv.py +96 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/uk.py +91 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/zh_cn.py +104 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/languages/zh_tw.py +109 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/roles.py +439 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/states.py +3145 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/parsers/rst/tableparser.py +539 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/readers/__init__.py +113 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/readers/doctree.py +46 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/readers/pep.py +48 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/readers/standalone.py +65 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/statemachine.py +1525 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/transforms/__init__.py +185 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/transforms/components.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/transforms/frontmatter.py +540 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/transforms/misc.py +144 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/transforms/parts.py +176 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/transforms/peps.py +308 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/transforms/references.py +924 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/transforms/universal.py +335 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/transforms/writer_aux.py +99 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/__init__.py +861 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/code_analyzer.py +136 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/error_reporting.py +222 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/math/__init__.py +73 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/math/latex2mathml.py +1252 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/math/math2html.py +3165 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/math/mathalphabet2unichar.py +892 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/math/mathml_elements.py +478 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/math/tex2mathml_extern.py +261 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/math/tex2unichar.py +730 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/math/unichar2tex.py +808 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/punctuation_chars.py +123 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/roman.py +154 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/smartquotes.py +1004 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/utils/urischemes.py +138 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/__init__.py +159 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/_html_base.py +1887 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/docutils_xml.py +187 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/html4css1/__init__.py +955 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/html5_polyglot/__init__.py +393 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/latex2e/__init__.py +3323 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/manpage.py +1214 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/null.py +25 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/odf_odt/__init__.py +3461 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/odf_odt/prepstyles.py +78 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/odf_odt/pygmentsformatter.py +109 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/pep_html/__init__.py +101 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/pseudoxml.py +40 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/s5_html/__init__.py +353 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/docutils/writers/xetex/__init__.py +147 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/__init__.py +44 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/codec.py +118 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/compat.py +13 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/core.py +395 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/idnadata.py +4245 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/intranges.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/package_data.py +2 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/uts46data.py +8598 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/__init__.py +1104 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/_adapters.py +90 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/_collections.py +30 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/_compat.py +57 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/_functools.py +104 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/_itertools.py +73 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/_meta.py +67 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/_text.py +99 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/compat/py311.py +22 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/compat/py39.py +36 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/diagnose.py +21 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jaraco/classes/ancestry.py +76 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jaraco/classes/meta.py +85 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jaraco/classes/properties.py +241 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jaraco/context.py +361 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jaraco/functools/__init__.py +633 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/__init__.py +13 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/auth.py +136 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/bindgen.py +126 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/bus.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/bus_messages.py +235 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/fds.py +158 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/__init__.py +1 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/asyncio.py +233 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/blocking.py +350 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/common.py +88 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/tests/conftest.py +81 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/tests/test_asyncio.py +91 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/tests/test_blocking.py +88 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/tests/test_threading.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/tests/test_trio.py +114 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/tests/utils.py +3 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/threading.py +273 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/trio.py +420 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/low_level.py +585 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/routing.py +76 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/tests/test_auth.py +24 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/tests/test_bindgen.py +28 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/tests/test_bus.py +24 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/tests/test_bus_messages.py +109 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/tests/test_fds.py +80 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/tests/test_low_level.py +87 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/tests/test_routing.py +32 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/wrappers.py +216 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/__init__.py +17 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/__main__.py +4 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backend.py +265 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/SecretService.py +120 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/Windows.py +170 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/chainer.py +71 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/fail.py +30 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/kwallet.py +164 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/libsecret.py +155 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/macOS/__init__.py +85 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/macOS/api.py +184 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/null.py +20 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/cli.py +216 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/compat/__init__.py +7 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/compat/properties.py +169 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/compat/py312.py +9 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/compat/py38.py +9 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/completion.py +56 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/core.py +193 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/credentials.py +70 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/devpi_client.py +29 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/errors.py +67 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/http.py +39 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/testing/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/testing/backend.py +177 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/testing/util.py +68 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/util/__init__.py +11 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/util/platform_.py +40 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/__init__.py +5 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/_compat.py +11 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/_punycode.py +67 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/cli/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/cli/parse.py +109 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/common/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/common/entities.py +4 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/common/html_blocks.py +68 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/common/html_re.py +40 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/common/normalize_url.py +81 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/common/utils.py +318 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/helpers/__init__.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/helpers/parse_link_destination.py +86 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/helpers/parse_link_label.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/helpers/parse_link_title.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/main.py +355 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/parser_block.py +111 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/parser_core.py +45 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/parser_inline.py +147 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/presets/__init__.py +28 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/presets/commonmark.py +74 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/presets/default.py +35 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/presets/zero.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/renderer.py +336 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/ruler.py +276 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/__init__.py +27 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/blockquote.py +299 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/code.py +35 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/fence.py +101 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/heading.py +68 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/hr.py +55 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/html_block.py +90 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/lheading.py +86 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/list.py +345 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/paragraph.py +65 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/reference.py +215 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/state_block.py +261 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_block/table.py +236 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_core/__init__.py +19 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_core/block.py +13 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_core/inline.py +10 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_core/linkify.py +149 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_core/normalize.py +18 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_core/replacements.py +126 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_core/smartquotes.py +202 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_core/state_core.py +25 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_core/text_join.py +34 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/__init__.py +31 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/autolink.py +77 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/backticks.py +72 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/balance_pairs.py +137 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/emphasis.py +102 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/entity.py +53 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/escape.py +92 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/fragments_join.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/html_inline.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/image.py +148 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/link.py +151 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/linkify.py +61 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/newline.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/state_inline.py +166 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/strikethrough.py +127 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/rules_inline/text.py +53 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/token.py +180 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/tree.py +345 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/utils.py +176 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/mdurl/__init__.py +18 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/mdurl/_decode.py +104 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/mdurl/_encode.py +85 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/mdurl/_format.py +27 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/mdurl/_parse.py +304 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/mdurl/_url.py +14 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/more_itertools/__init__.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/more_itertools/more.py +4806 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/more_itertools/recipes.py +1046 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/nh3/__init__.py +5 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/__init__.py +13 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/__main__.py +31 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/__init__.py +19 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/build_env.py +296 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cache.py +264 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/__init__.py +4 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py +171 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/base_command.py +220 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py +1018 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/command_context.py +27 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/main.py +70 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py +87 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/parser.py +292 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py +321 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/req_command.py +506 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/spinners.py +157 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/__init__.py +127 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/cache.py +223 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/check.py +53 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/completion.py +96 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/configuration.py +266 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/debug.py +202 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/download.py +140 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/freeze.py +97 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/hash.py +59 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/help.py +41 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/index.py +139 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/install.py +771 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/list.py +363 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/search.py +174 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/show.py +178 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py +105 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/wheel.py +178 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/configuration.py +366 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py +21 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/distributions/base.py +36 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/distributions/installed.py +20 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py +127 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py +31 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/exceptions.py +658 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/index/__init__.py +2 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/index/collector.py +648 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/index/package_finder.py +1004 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/index/sources.py +224 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/locations/__init__.py +520 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py +169 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py +219 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/locations/base.py +52 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/main.py +12 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/metadata/base.py +546 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py +256 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/__init__.py +2 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/candidate.py +34 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/direct_url.py +220 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/format_control.py +80 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/index.py +28 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/link.py +288 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/scheme.py +31 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/search_scope.py +129 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py +51 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/target_python.py +110 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/wheel.py +89 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/__init__.py +2 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/auth.py +323 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/cache.py +69 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/download.py +185 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/session.py +454 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/utils.py +96 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py +39 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py +74 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py +37 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py +102 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/check.py +149 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/freeze.py +254 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py +2 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py +47 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py +120 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py +738 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/prepare.py +642 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/pyproject.py +168 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/__init__.py +94 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/constructors.py +490 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/req_file.py +536 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/req_install.py +858 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/req_set.py +189 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py +124 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py +633 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/base.py +20 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py +467 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py +141 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py +547 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py +739 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +155 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py +248 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py +68 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py +166 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py +292 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py +189 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/_log.py +38 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py +52 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/compat.py +63 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py +165 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/datetime.py +11 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py +120 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py +75 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/encoding.py +36 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py +27 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py +182 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py +27 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/glibc.py +88 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/hashes.py +144 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py +35 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/logging.py +343 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/misc.py +653 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/models.py +39 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/packaging.py +57 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py +195 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py +260 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py +246 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py +258 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/urls.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py +104 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/wheel.py +136 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py +15 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py +101 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/vcs/git.py +526 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py +163 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py +324 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py +705 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/wheel_builder.py +377 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/__init__.py +111 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py +18 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py +61 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py +137 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +150 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +37 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py +32 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py +415 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py +111 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py +139 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py +186 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py +33 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py +3 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/certifi/core.py +76 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py +386 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py +47 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py +233 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py +107 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py +145 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py +1 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/chardetect.py +84 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/codingstatemachine.py +88 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/compat.py +36 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/cp949prober.py +49 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/enums.py +76 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/escprober.py +101 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/escsm.py +246 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/eucjpprober.py +92 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py +195 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrprober.py +47 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py +387 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py +46 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py +283 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py +46 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py +292 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py +325 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py +233 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +4650 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py +4398 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py +4383 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py +4650 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py +5718 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py +4383 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py +4383 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py +145 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py +91 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py +572 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py +310 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py +145 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py +92 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py +286 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/utf8prober.py +82 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/version.py +9 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py +102 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py +258 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py +80 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py +152 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py +169 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py +23 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py +1116 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/database.py +1345 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/index.py +509 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py +1300 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py +393 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/markers.py +152 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py +1058 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py +358 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py +429 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/util.py +1932 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/version.py +739 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py +1053 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distro.py +1386 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__init__.py +35 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_ihatexml.py +289 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_inputstream.py +918 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_tokenizer.py +1735 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py +5 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/_base.py +40 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/py.py +67 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py +159 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/constants.py +2946 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py +29 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/base.py +12 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py +73 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/lint.py +93 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/optionaltags.py +207 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/sanitizer.py +916 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/whitespace.py +38 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/html5parser.py +2795 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/serializer.py +409 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py +30 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/sax.py +50 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py +88 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/base.py +417 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/dom.py +239 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree.py +343 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py +392 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py +154 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/base.py +252 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/dom.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree.py +131 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py +215 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py +69 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py +44 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/codec.py +112 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/compat.py +13 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/core.py +397 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py +2137 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py +2 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py +8512 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/msgpack/_version.py +1 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py +193 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py +1012 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/packaging/__about__.py +26 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py +25 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py +301 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py +136 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py +61 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/packaging/markers.py +304 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py +146 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py +802 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py +487 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py +136 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/packaging/version.py +504 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/__init__.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/build.py +127 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/check.py +207 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/colorlog.py +115 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/compat.py +51 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/dirtools.py +44 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/envbuild.py +171 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__init__.py +17 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py +363 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/meta.py +92 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/wrappers.py +375 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py +3296 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/py31compat.py +23 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__init__.py +331 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__main__.py +46 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/android.py +119 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py +156 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/macos.py +64 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.py +181 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py +4 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/windows.py +182 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/progress/__init__.py +189 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/progress/bar.py +93 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/progress/colors.py +79 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/progress/counter.py +47 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/progress/spinner.py +45 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/__init__.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/cmdline.py +663 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/console.py +70 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/filter.py +71 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__init__.py +937 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatter.py +94 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__init__.py +153 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/_mapping.py +84 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/groff.py +168 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/html.py +983 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/img.py +641 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/irc.py +179 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/latex.py +511 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/other.py +161 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/rtf.py +146 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/svg.py +188 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py +879 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__init__.py +341 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/_mapping.py +580 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/python.py +1188 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py +69 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/sphinxext.py +155 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/style.py +197 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__init__.py +93 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/token.py +212 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/util.py +308 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__init__.py +328 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/actions.py +207 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/common.py +424 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/core.py +5789 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/diagram/__init__.py +593 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/exceptions.py +267 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/helpers.py +1069 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/results.py +760 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/testing.py +331 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/unicode.py +332 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/util.py +235 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/__init__.py +154 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/__version__.py +14 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/adapters.py +538 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/api.py +159 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/auth.py +305 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/certs.py +18 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/compat.py +77 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py +549 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py +133 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/help.py +132 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py +34 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/models.py +973 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/packages.py +16 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/sessions.py +771 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py +123 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/structures.py +105 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/utils.py +1060 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py +482 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py +165 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py +172 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py +280 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py +451 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py +10 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py +210 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_lru_cache.py +34 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py +17 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py +160 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py +848 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py +16 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py +19 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py +72 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py +55 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/abc.py +33 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/align.py +312 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py +228 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/bar.py +94 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/box.py +483 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/cells.py +147 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/color.py +581 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/columns.py +187 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/console.py +2211 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py +37 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/containers.py +167 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/control.py +175 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py +183 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py +96 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/errors.py +34 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py +89 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py +147 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/json.py +140 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py +92 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/layout.py +444 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/live.py +365 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/live_render.py +113 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/logging.py +268 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/markup.py +244 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/measure.py +149 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/padding.py +141 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/pager.py +34 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/palette.py +100 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/panel.py +250 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py +903 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/progress.py +1036 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/progress_bar.py +216 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/prompt.py +376 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/protocol.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/region.py +10 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/repr.py +151 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/rule.py +115 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/scope.py +86 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/screen.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/segment.py +720 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/spinner.py +134 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/status.py +132 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/style.py +785 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/styled.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/syntax.py +735 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/table.py +968 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/tabulate.py +51 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/terminal_theme.py +55 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/text.py +1282 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/theme.py +112 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/themes.py +5 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/traceback.py +678 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/tree.py +249 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/six.py +998 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__init__.py +517 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_asyncio.py +92 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_utils.py +68 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/after.py +46 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before.py +41 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before_sleep.py +58 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/nap.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/retry.py +213 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/stop.py +96 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/tornadoweb.py +59 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/wait.py +191 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py +703 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/typing_extensions.py +2296 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py +85 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py +569 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py +1113 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +511 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +922 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/six.py +1077 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py +539 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/request.py +170 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py +821 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py +143 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py +620 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py +495 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +161 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py +268 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py +432 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py +153 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/webencodings/__init__.py +342 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/webencodings/labels.py +231 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/webencodings/mklabels.py +59 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/webencodings/tests.py +153 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/webencodings/x_user_defined.py +325 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/__init__.py +3303 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py +608 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py +26 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py +25 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +301 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +136 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_structures.py +67 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/markers.py +304 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/requirements.py +146 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/specifiers.py +828 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/tags.py +484 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/utils.py +136 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/version.py +504 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing.py +5742 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/extern/__init__.py +73 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/__init__.py +9 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/bdist.py +39 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/commandline.py +229 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/develop.py +46 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/distribution.py +213 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/index.py +15 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/installed.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/sdist.py +110 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/__init__.py +33 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/conftest.py +37 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_bdist.py +59 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_commandline.py +292 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_develop.py +25 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_distribution.py +644 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_index.py +84 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_installed.py +181 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_sdist.py +136 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_utils.py +163 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_wheel.py +104 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/utils.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/wheel.py +55 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/__init__.py +93 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/_ast_gen.py +336 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/_build_tables.py +40 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/ast_transforms.py +164 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/c_ast.py +1125 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/c_generator.py +502 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/c_lexer.py +555 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/c_parser.py +1950 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/lextab.py +10 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/ply/__init__.py +5 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/ply/cpp.py +905 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/ply/ctokens.py +133 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/ply/lex.py +1099 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/ply/yacc.py +3494 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/ply/ygen.py +74 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/plyparser.py +133 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pycparser/yacctab.py +369 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/__init__.py +82 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/__main__.py +17 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/cmdline.py +668 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/console.py +70 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/filter.py +70 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/filters/__init__.py +940 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatter.py +129 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/__init__.py +157 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/_mapping.py +23 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/bbcode.py +108 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/groff.py +170 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/html.py +987 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/img.py +685 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/irc.py +154 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/latex.py +518 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/other.py +160 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/pangomarkup.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/rtf.py +349 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/svg.py +185 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/terminal.py +127 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/formatters/terminal256.py +338 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexer.py +961 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/__init__.py +362 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_ada_builtins.py +103 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_asy_builtins.py +1644 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_cl_builtins.py +231 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_cocoa_builtins.py +75 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_csound_builtins.py +1780 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_css_builtins.py +558 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_julia_builtins.py +411 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_lasso_builtins.py +5326 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_lilypond_builtins.py +4932 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_lua_builtins.py +285 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_luau_builtins.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_mapping.py +589 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_mql_builtins.py +1171 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_mysql_builtins.py +1335 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_openedge_builtins.py +2600 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_php_builtins.py +3325 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_postgres_builtins.py +739 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_qlik_builtins.py +666 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_scheme_builtins.py +1609 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_scilab_builtins.py +3093 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_sourcemod_builtins.py +1151 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_stan_builtins.py +648 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_stata_builtins.py +457 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_tsql_builtins.py +1003 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_usd_builtins.py +112 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_vbscript_builtins.py +279 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/_vim_builtins.py +1938 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/actionscript.py +243 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ada.py +144 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/agile.py +25 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/algebra.py +298 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ambient.py +75 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/amdgpu.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ampl.py +87 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/apdlexer.py +593 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/apl.py +103 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/archetype.py +315 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/arrow.py +116 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/arturo.py +249 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/asc.py +55 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/asm.py +1050 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/asn1.py +178 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/automation.py +379 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/bare.py +101 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/basic.py +656 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/bdd.py +57 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/berry.py +99 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/bibtex.py +159 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/blueprint.py +173 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/boa.py +97 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/bqn.py +109 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/business.py +625 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/c_cpp.py +414 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/c_like.py +738 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/capnproto.py +74 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/carbon.py +95 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/cddl.py +172 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/chapel.py +139 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/clean.py +180 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/comal.py +81 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/compiled.py +35 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/configs.py +1424 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/console.py +114 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/cplint.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/crystal.py +364 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/csound.py +466 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/css.py +602 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/d.py +259 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/dalvik.py +126 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/data.py +763 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/dax.py +135 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/devicetree.py +108 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/diff.py +169 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/dns.py +109 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/dotnet.py +846 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/dsls.py +970 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/dylan.py +279 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ecl.py +144 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/eiffel.py +68 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/elm.py +123 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/elpi.py +172 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/email.py +132 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/erlang.py +526 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/esoteric.py +300 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ezhil.py +76 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/factor.py +363 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/fantom.py +251 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/felix.py +275 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/fift.py +68 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/floscript.py +81 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/forth.py +178 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/fortran.py +212 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/foxpro.py +427 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/freefem.py +893 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/func.py +110 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/functional.py +21 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/futhark.py +105 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/gcodelexer.py +35 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/gdscript.py +189 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/go.py +97 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/grammar_notation.py +262 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/graph.py +108 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/graphics.py +794 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/graphql.py +176 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/graphviz.py +58 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/gsql.py +103 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/haskell.py +866 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/haxe.py +935 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/hdl.py +466 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/hexdump.py +102 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/html.py +626 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/idl.py +284 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/igor.py +435 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/inferno.py +95 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/installers.py +325 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/int_fiction.py +1370 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/iolang.py +61 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/j.py +151 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/javascript.py +1587 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/jmespath.py +69 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/jslt.py +94 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/jsonnet.py +169 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/jsx.py +75 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/julia.py +293 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/jvm.py +1802 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/kuin.py +332 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/kusto.py +93 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ldap.py +155 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/lean.py +241 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/lilypond.py +225 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/lisp.py +3146 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/macaulay2.py +1788 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/make.py +212 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/markup.py +1654 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/math.py +21 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/matlab.py +3306 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/maxima.py +84 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/meson.py +139 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/mime.py +210 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/minecraft.py +391 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/mips.py +130 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ml.py +958 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/modeling.py +366 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/modula2.py +1579 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/mojo.py +704 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/monte.py +203 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/mosel.py +447 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ncl.py +894 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/nimrod.py +199 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/nit.py +63 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/nix.py +144 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/oberon.py +120 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/objective.py +513 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ooc.py +84 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/openscad.py +96 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/other.py +41 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/parasail.py +78 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/parsers.py +798 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/pascal.py +644 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/pawn.py +202 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/perl.py +733 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/phix.py +363 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/php.py +334 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/pointless.py +70 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/pony.py +93 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/praat.py +303 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/procfile.py +41 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/prolog.py +318 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/promql.py +176 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/prql.py +251 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ptx.py +119 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/python.py +1198 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/q.py +187 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/qlik.py +117 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/qvt.py +153 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/r.py +192 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/rdf.py +468 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/rebol.py +419 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/resource.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ride.py +138 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/rita.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/rnc.py +66 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/roboconf.py +81 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/robotframework.py +551 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ruby.py +518 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/rust.py +222 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/sas.py +227 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/savi.py +171 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/scdoc.py +85 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/scripting.py +1598 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/sgf.py +59 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/shell.py +898 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/sieve.py +78 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/slash.py +183 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/smalltalk.py +194 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/smithy.py +77 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/smv.py +78 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/snobol.py +82 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/solidity.py +87 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/soong.py +78 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/sophia.py +102 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/special.py +121 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/spice.py +70 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/sql.py +1033 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/srcinfo.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/stata.py +170 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/supercollider.py +94 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/tact.py +303 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/tal.py +77 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/tcl.py +148 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/teal.py +88 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/templates.py +2355 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/teraterm.py +325 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/testing.py +209 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/text.py +27 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/textedit.py +205 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/textfmts.py +436 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/theorem.py +410 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/thingsdb.py +140 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/tlb.py +59 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/tls.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/tnt.py +270 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/trafficscript.py +51 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/typoscript.py +216 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/typst.py +104 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/ul4.py +309 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/unicon.py +413 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/urbi.py +145 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/usd.py +85 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/varnish.py +189 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/verification.py +113 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/verifpal.py +65 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/vip.py +150 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/vyper.py +140 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/web.py +24 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/webassembly.py +119 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/webidl.py +298 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/webmisc.py +1006 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/wgsl.py +406 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/whiley.py +115 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/wowtoc.py +120 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/wren.py +98 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/x10.py +66 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/xorg.py +38 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/yang.py +103 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/yara.py +69 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/lexers/zig.py +125 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/modeline.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/plugin.py +72 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/regexopt.py +91 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/scanner.py +104 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/sphinxext.py +247 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/style.py +203 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/__init__.py +61 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/_mapping.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/abap.py +32 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/algol.py +65 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/algol_nu.py +65 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/arduino.py +100 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/autumn.py +67 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/borland.py +53 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/bw.py +52 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/coffee.py +80 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/colorful.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/default.py +76 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/dracula.py +90 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/emacs.py +75 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/friendly.py +76 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/friendly_grayscale.py +80 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/fruity.py +47 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/gh_dark.py +113 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/gruvbox.py +118 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/igor.py +32 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/inkpot.py +72 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/lightbulb.py +110 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/lilypond.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/lovelace.py +100 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/manni.py +79 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/material.py +124 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/monokai.py +112 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/murphy.py +82 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/native.py +70 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/nord.py +156 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/onedark.py +63 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/paraiso_dark.py +124 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/paraiso_light.py +124 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/pastie.py +78 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/perldoc.py +73 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/rainbow_dash.py +95 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/rrt.py +39 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/sas.py +46 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/solarized.py +144 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/staroffice.py +31 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/stata_dark.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/stata_light.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/tango.py +143 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/trac.py +66 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/vim.py +67 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/vs.py +41 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/xcode.py +53 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/styles/zenburn.py +83 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/token.py +214 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/unistring.py +153 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pygments/util.py +324 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/readme_renderer/__init__.py +13 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/readme_renderer/__main__.py +62 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/readme_renderer/clean.py +89 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/readme_renderer/markdown.py +123 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/readme_renderer/rst.py +135 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/readme_renderer/txt.py +24 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/__init__.py +184 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/__version__.py +14 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/_internal_utils.py +50 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/adapters.py +719 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/api.py +157 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/auth.py +314 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/certs.py +17 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/compat.py +94 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/cookies.py +561 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/exceptions.py +151 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/help.py +134 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/hooks.py +33 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/models.py +1037 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/packages.py +23 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/sessions.py +831 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/status_codes.py +128 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/structures.py +99 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests/utils.py +1096 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/__init__.py +34 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/_compat.py +302 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/adapters/__init__.py +15 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/adapters/appengine.py +206 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/adapters/fingerprint.py +48 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/adapters/host_header_ssl.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/adapters/socket_options.py +129 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/adapters/source.py +67 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/adapters/ssl.py +66 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/adapters/x509.py +196 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/auth/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/auth/_digest_auth_compat.py +29 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/auth/guess.py +146 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/auth/handler.py +142 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/auth/http_proxy_digest.py +103 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/cookies/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/cookies/forgetful.py +7 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/downloadutils/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/downloadutils/stream.py +176 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/downloadutils/tee.py +123 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/exceptions.py +25 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/multipart/__init__.py +31 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/multipart/decoder.py +156 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/multipart/encoder.py +655 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/sessions.py +89 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/streaming_iterator.py +116 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/threaded/__init__.py +97 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/threaded/pool.py +211 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/threaded/thread.py +53 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/utils/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/utils/deprecated.py +91 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/utils/dump.py +198 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/utils/formdata.py +108 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/utils/user_agent.py +143 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/__init__.py +53 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/_mixin.py +373 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/abnf_regexp.py +275 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/api.py +104 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/builder.py +388 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/compat.py +59 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/exceptions.py +120 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/iri.py +161 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/misc.py +131 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/normalizers.py +171 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/parseresult.py +474 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/uri.py +160 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rfc3986/validators.py +440 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/__init__.py +177 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/__main__.py +273 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_cell_widths.py +454 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_emoji_codes.py +3610 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_emoji_replace.py +32 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_export_format.py +76 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_extension.py +10 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_fileno.py +24 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_inspect.py +270 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_log_render.py +94 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_loop.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_null_file.py +69 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_palettes.py +309 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_pick.py +17 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_ratio.py +159 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_spinners.py +482 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_stack.py +16 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_timer.py +19 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_win32_console.py +662 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_windows.py +71 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_windows_renderer.py +56 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_wrap.py +93 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/abc.py +33 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/align.py +311 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/ansi.py +240 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/bar.py +93 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/box.py +480 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/cells.py +167 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/color.py +621 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/color_triplet.py +38 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/columns.py +187 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/console.py +2633 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/constrain.py +37 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/containers.py +167 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/control.py +225 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/default_styles.py +190 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/diagnose.py +37 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/emoji.py +96 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/errors.py +34 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/file_proxy.py +57 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/filesize.py +89 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/highlighter.py +232 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/json.py +139 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/jupyter.py +101 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/layout.py +442 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/live.py +375 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/live_render.py +112 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/logging.py +289 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/markdown.py +800 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/markup.py +251 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/measure.py +151 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/padding.py +141 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/pager.py +34 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/palette.py +100 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/panel.py +312 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/pretty.py +995 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/progress.py +1699 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/progress_bar.py +223 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/prompt.py +375 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/protocol.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/region.py +10 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/repr.py +149 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/rule.py +130 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/scope.py +86 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/screen.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/segment.py +738 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/spinner.py +137 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/status.py +131 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/style.py +796 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/styled.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/syntax.py +958 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/table.py +1000 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/terminal_theme.py +153 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/text.py +1357 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/theme.py +115 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/themes.py +5 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/traceback.py +753 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/tree.py +249 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/secretstorage/__init__.py +93 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/secretstorage/collection.py +224 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/secretstorage/defines.py +20 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/secretstorage/dhcrypto.py +59 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/secretstorage/exceptions.py +50 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/secretstorage/item.py +145 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/secretstorage/util.py +179 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/__init__.py +242 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_deprecation_warning.py +7 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/__init__.py +24 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py +561 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/archive_util.py +256 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/bcppcompiler.py +393 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py +1123 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py +403 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py +31 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py +143 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py +123 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_msi.py +749 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py +579 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_wininst.py +377 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/build.py +157 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py +209 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py +755 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py +392 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py +152 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/check.py +148 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/clean.py +76 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/config.py +344 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install.py +721 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py +79 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py +84 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py +47 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py +217 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py +60 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/py37compat.py +30 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/register.py +304 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py +494 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/upload.py +214 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/config.py +130 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/core.py +249 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py +425 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/debug.py +5 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py +92 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py +210 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/dist.py +1257 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/errors.py +97 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/extension.py +240 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py +457 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/file_util.py +238 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/filelist.py +355 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/log.py +77 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/msvc9compiler.py +788 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/msvccompiler.py +643 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/py35compat.py +19 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/py38compat.py +7 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/spawn.py +106 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py +601 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/text_file.py +286 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py +325 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/util.py +548 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/version.py +363 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py +169 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_imp.py +82 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py +4 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py +3825 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py +620 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/ordered_set.py +488 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__about__.py +26 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py +25 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_manylinux.py +301 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_musllinux.py +136 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py +67 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py +304 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py +146 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py +828 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py +484 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py +136 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py +504 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py +5742 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/archive_util.py +205 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/build_meta.py +290 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/__init__.py +8 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/alias.py +78 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/bdist_egg.py +456 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py +40 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/build_clib.py +101 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/build_ext.py +328 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/build_py.py +242 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/develop.py +193 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/dist_info.py +36 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/easy_install.py +2354 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/egg_info.py +755 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/install.py +132 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/install_egg_info.py +82 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/install_lib.py +148 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/install_scripts.py +69 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/py36compat.py +134 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/register.py +18 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/rotate.py +64 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/saveopts.py +22 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/sdist.py +196 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/setopt.py +149 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/test.py +252 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/upload.py +17 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/upload_docs.py +202 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/config.py +751 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/dep_util.py +25 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/depends.py +176 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/dist.py +1156 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/errors.py +40 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/extension.py +55 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/extern/__init__.py +73 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/glob.py +167 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/installer.py +104 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/launch.py +36 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/monkey.py +177 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/msvc.py +1805 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/namespaces.py +107 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/package_index.py +1127 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/py34compat.py +13 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/sandbox.py +530 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/unicode_utils.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/version.py +6 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/wheel.py +213 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/windows_support.py +29 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/__init__.py +44 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/__main__.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/auth.py +117 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/cli.py +123 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/commands/__init__.py +54 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/commands/check.py +194 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/commands/register.py +87 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/commands/upload.py +298 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/exceptions.py +125 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/package.py +332 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/repository.py +250 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/settings.py +341 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/utils.py +352 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/wheel.py +99 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/wininst.py +59 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/__init__.py +211 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/_base_connection.py +172 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/_collections.py +483 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/_request_methods.py +279 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/_version.py +4 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/connection.py +929 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/connectionpool.py +1182 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/contrib/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/__init__.py +16 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/connection.py +254 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/fetch.py +418 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/request.py +22 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/contrib/emscripten/response.py +285 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/contrib/pyopenssl.py +548 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/contrib/socks.py +228 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/exceptions.py +321 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/fields.py +341 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/filepost.py +89 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/http2.py +230 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/poolmanager.py +637 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/response.py +1265 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/__init__.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/connection.py +137 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/proxy.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/request.py +256 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/response.py +101 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/retry.py +533 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/ssl_.py +509 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/ssl_match_hostname.py +159 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/ssltransport.py +279 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/timeout.py +275 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/url.py +471 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/util.py +42 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/wait.py +124 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/__init__.py +1 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/__main__.py +19 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/bdist_wheel.py +492 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/cli/__init__.py +88 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/cli/convert.py +269 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/cli/pack.py +82 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/cli/unpack.py +25 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/macosx_libfile.py +428 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/metadata.py +133 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/pkginfo.py +43 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/util.py +46 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/vendored/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/vendored/packaging/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/vendored/packaging/_typing.py +48 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/vendored/packaging/tags.py +866 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/wheelfile.py +181 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/zipp/__init__.py +501 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/zipp/compat/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/zipp/compat/py310.py +11 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/zipp/glob.py +106 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/storage/__init__.py +0 -0
- testgres-1.10.2/testgres/plugins/pg_probackup2/pg_probackup2/__init__.py +0 -0
- {testgres-1.10.1/testgres/plugins/pg_probackup2/build/lib → testgres-1.10.2/testgres/plugins/pg_probackup2}/pg_probackup2/app.py +47 -19
- {testgres-1.10.1/testgres/plugins/pg_probackup2/build/lib → testgres-1.10.2/testgres/plugins/pg_probackup2}/pg_probackup2/init_helpers.py +11 -4
- testgres-1.10.2/testgres/plugins/pg_probackup2/pg_probackup2/storage/__init__.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/plugins/pg_probackup2/pg_probackup2/tests/basic_test.py +2 -1
- {testgres-1.10.1 → testgres-1.10.2}/testgres/utils.py +0 -1
- {testgres-1.10.1 → testgres-1.10.2/testgres.egg-info}/PKG-INFO +6 -4
- testgres-1.10.2/testgres.egg-info/SOURCES.txt +1689 -0
- testgres-1.10.1/testgres.egg-info/SOURCES.txt +0 -51
- {testgres-1.10.1 → testgres-1.10.2}/LICENSE +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/MANIFEST.in +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/README.md +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/setup.cfg +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/__init__.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/api.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/backup.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/cache.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/consts.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/decorators.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/defaults.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/enums.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/exceptions.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/helpers/__init__.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/helpers/port_manager.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/logger.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/operations/__init__.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/plugins/__init__.py +0 -0
- {testgres-1.10.1/testgres/plugins/pg_probackup2 → testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/backports/tarfile/compat}/__init__.py +0 -0
- {testgres-1.10.1/testgres/plugins/pg_probackup2/build/lib/pg_probackup2 → testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/compat}/__init__.py +0 -0
- {testgres-1.10.1/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/storage → testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jaraco/classes}/__init__.py +0 -0
- {testgres-1.10.1/testgres/plugins/pg_probackup2/pg_probackup2 → testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io/tests}/__init__.py +0 -0
- {testgres-1.10.1/testgres/plugins/pg_probackup2/pg_probackup2/storage → testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/tests}/__init__.py +0 -0
- {testgres-1.10.1/testgres/plugins/pg_probackup2 → testgres-1.10.2/testgres/plugins/pg_probackup2/build/lib}/pg_probackup2/app.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/gdb.py +0 -0
- {testgres-1.10.1/testgres/plugins/pg_probackup2 → testgres-1.10.2/testgres/plugins/pg_probackup2/build/lib}/pg_probackup2/init_helpers.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/storage/fs_backup.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/plugins/pg_probackup2/pg_probackup2/gdb.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/plugins/pg_probackup2/pg_probackup2/storage/fs_backup.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/plugins/pg_probackup2/setup.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/pubsub.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres/standby.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres.egg-info/dependency_links.txt +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/testgres.egg-info/requires.txt +2 -2
- {testgres-1.10.1 → testgres-1.10.2}/testgres.egg-info/top_level.txt +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/tests/test_remote.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/tests/test_simple.py +0 -0
- {testgres-1.10.1 → testgres-1.10.2}/tests/test_simple_remote.py +0 -0
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: testgres
|
|
3
|
-
Version: 1.10.
|
|
3
|
+
Version: 1.10.2
|
|
4
4
|
Summary: Testing utility for PostgreSQL and its extensions
|
|
5
5
|
Home-page: https://github.com/postgrespro/testgres
|
|
6
6
|
Author: Postgres Professional
|
|
7
7
|
Author-email: testgres@postgrespro.ru
|
|
8
8
|
License: PostgreSQL
|
|
9
9
|
Keywords: test,testing,postgresql
|
|
10
|
-
Platform: UNKNOWN
|
|
11
10
|
Description-Content-Type: text/markdown
|
|
12
11
|
License-File: LICENSE
|
|
12
|
+
Requires-Dist: pg8000
|
|
13
|
+
Requires-Dist: port-for>=0.4
|
|
14
|
+
Requires-Dist: six>=1.9.0
|
|
15
|
+
Requires-Dist: psutil
|
|
16
|
+
Requires-Dist: packaging
|
|
13
17
|
|
|
14
18
|
[](https://app.travis-ci.com/github/postgrespro/testgres/branches)
|
|
15
19
|
[](https://codecov.io/gh/postgrespro/testgres)
|
|
@@ -220,5 +224,3 @@ def test_basic_query(self):
|
|
|
220
224
|
[Dmitry Ivanov](https://github.com/funbringer)
|
|
221
225
|
[Ildus Kurbangaliev](https://github.com/ildus)
|
|
222
226
|
[Yury Zhuravlev](https://github.com/stalkerg)
|
|
223
|
-
|
|
224
|
-
|
|
@@ -27,7 +27,7 @@ with open('README.md', 'r') as f:
|
|
|
27
27
|
readme = f.read()
|
|
28
28
|
|
|
29
29
|
setup(
|
|
30
|
-
version='1.10.
|
|
30
|
+
version='1.10.2',
|
|
31
31
|
name='testgres',
|
|
32
32
|
packages=['testgres', 'testgres.operations', 'testgres.helpers'],
|
|
33
33
|
description='Testing utility for PostgreSQL and its extensions',
|
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
import atexit
|
|
4
4
|
import copy
|
|
5
|
+
import logging
|
|
6
|
+
import os
|
|
5
7
|
import tempfile
|
|
6
8
|
|
|
7
9
|
from contextlib import contextmanager
|
|
@@ -10,6 +12,10 @@ from .consts import TMP_CACHE
|
|
|
10
12
|
from .operations.os_ops import OsOperations
|
|
11
13
|
from .operations.local_ops import LocalOperations
|
|
12
14
|
|
|
15
|
+
log_level = os.getenv('LOGGING_LEVEL', 'WARNING').upper()
|
|
16
|
+
log_format = os.getenv('LOGGING_FORMAT', '%(asctime)s - %(levelname)s - %(message)s')
|
|
17
|
+
logging.basicConfig(level=log_level, format=log_format)
|
|
18
|
+
|
|
13
19
|
|
|
14
20
|
class GlobalConfig(object):
|
|
15
21
|
"""
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
|
+
import logging
|
|
2
3
|
|
|
3
4
|
# we support both pg8000 and psycopg2
|
|
4
5
|
try:
|
|
@@ -110,7 +111,7 @@ class NodeConnection(object):
|
|
|
110
111
|
except ProgrammingError:
|
|
111
112
|
return None
|
|
112
113
|
except Exception as e:
|
|
113
|
-
|
|
114
|
+
logging.error("Error executing query: {}\n {}".format(repr(e), query))
|
|
114
115
|
return None
|
|
115
116
|
|
|
116
117
|
def close(self):
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
|
-
|
|
2
|
+
import logging
|
|
3
3
|
import os
|
|
4
4
|
import random
|
|
5
5
|
import signal
|
|
@@ -63,7 +63,6 @@ from .decorators import \
|
|
|
63
63
|
|
|
64
64
|
from .defaults import \
|
|
65
65
|
default_dbname, \
|
|
66
|
-
default_username, \
|
|
67
66
|
generate_app_name
|
|
68
67
|
|
|
69
68
|
from .exceptions import \
|
|
@@ -127,7 +126,7 @@ class ProcessProxy(object):
|
|
|
127
126
|
|
|
128
127
|
|
|
129
128
|
class PostgresNode(object):
|
|
130
|
-
def __init__(self, name=None,
|
|
129
|
+
def __init__(self, name=None, base_dir=None, port=None, conn_params: ConnectionParams = ConnectionParams(), bin_dir=None, prefix=None):
|
|
131
130
|
"""
|
|
132
131
|
PostgresNode constructor.
|
|
133
132
|
|
|
@@ -156,9 +155,9 @@ class PostgresNode(object):
|
|
|
156
155
|
else:
|
|
157
156
|
self.os_ops = LocalOperations(conn_params)
|
|
158
157
|
|
|
158
|
+
self.host = self.os_ops.host
|
|
159
159
|
self.port = port or reserve_port()
|
|
160
160
|
|
|
161
|
-
self.host = self.os_ops.host
|
|
162
161
|
self.ssh_key = self.os_ops.ssh_key
|
|
163
162
|
|
|
164
163
|
# defaults for __exit__()
|
|
@@ -331,22 +330,42 @@ class PostgresNode(object):
|
|
|
331
330
|
"""
|
|
332
331
|
return self._pg_version
|
|
333
332
|
|
|
334
|
-
def _try_shutdown(self, max_attempts):
|
|
333
|
+
def _try_shutdown(self, max_attempts, with_force=False):
|
|
335
334
|
attempts = 0
|
|
335
|
+
node_pid = self.pid
|
|
336
336
|
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
337
|
+
if node_pid > 0:
|
|
338
|
+
# try stopping server N times
|
|
339
|
+
while attempts < max_attempts:
|
|
340
|
+
try:
|
|
341
|
+
self.stop()
|
|
342
|
+
break # OK
|
|
343
|
+
except ExecUtilException:
|
|
344
|
+
pass # one more time
|
|
345
|
+
except Exception:
|
|
346
|
+
eprint('cannot stop node {}'.format(self.name))
|
|
347
|
+
break
|
|
348
|
+
|
|
349
|
+
attempts += 1
|
|
350
|
+
|
|
351
|
+
# If force stopping is enabled and PID is valid
|
|
352
|
+
if with_force and node_pid != 0:
|
|
353
|
+
# If we couldn't stop the node
|
|
354
|
+
p_status_output = self.os_ops.exec_command(cmd=f'ps -o pid= -p {node_pid}', shell=True, ignore_errors=True).decode('utf-8')
|
|
355
|
+
if self.status() != NodeStatus.Stopped and p_status_output and str(node_pid) in p_status_output:
|
|
356
|
+
try:
|
|
357
|
+
eprint(f'Force stopping node {self.name} with PID {node_pid}')
|
|
358
|
+
self.os_ops.kill(node_pid, signal.SIGKILL, expect_error=False)
|
|
359
|
+
except Exception:
|
|
360
|
+
# The node has already stopped
|
|
361
|
+
pass
|
|
362
|
+
|
|
363
|
+
# Check that node stopped - print only column pid without headers
|
|
364
|
+
p_status_output = self.os_ops.exec_command(f'ps -o pid= -p {node_pid}', shell=True, ignore_errors=True).decode('utf-8')
|
|
365
|
+
if p_status_output and str(node_pid) in p_status_output:
|
|
366
|
+
eprint(f'Failed to stop node {self.name}.')
|
|
367
|
+
else:
|
|
368
|
+
eprint(f'Node {self.name} has been stopped successfully.')
|
|
350
369
|
|
|
351
370
|
def _assign_master(self, master):
|
|
352
371
|
"""NOTE: this is a private method!"""
|
|
@@ -529,7 +548,9 @@ class PostgresNode(object):
|
|
|
529
548
|
u"host\treplication\tall\t127.0.0.1/32\t{}\n".format(auth_host),
|
|
530
549
|
u"host\treplication\tall\t::1/128\t\t{}\n".format(auth_host),
|
|
531
550
|
u"host\treplication\tall\t{}/24\t\t{}\n".format(subnet_base, auth_host),
|
|
532
|
-
u"host\tall\tall\t{}/24\t\t{}\n".format(subnet_base, auth_host)
|
|
551
|
+
u"host\tall\tall\t{}/24\t\t{}\n".format(subnet_base, auth_host),
|
|
552
|
+
u"host\tall\tall\tall\t{}\n".format(auth_host),
|
|
553
|
+
u"host\treplication\tall\tall\t{}\n".format(auth_host)
|
|
533
554
|
] # yapf: disable
|
|
534
555
|
|
|
535
556
|
# write missing lines
|
|
@@ -683,8 +704,6 @@ class PostgresNode(object):
|
|
|
683
704
|
If False, waits for the instance to be in primary mode. Default is False.
|
|
684
705
|
max_attempts:
|
|
685
706
|
"""
|
|
686
|
-
if not username:
|
|
687
|
-
username = default_username()
|
|
688
707
|
self.start()
|
|
689
708
|
|
|
690
709
|
if replica:
|
|
@@ -694,7 +713,7 @@ class PostgresNode(object):
|
|
|
694
713
|
# Call poll_query_until until the expected value is returned
|
|
695
714
|
self.poll_query_until(query=query,
|
|
696
715
|
dbname=dbname,
|
|
697
|
-
username=username,
|
|
716
|
+
username=username or self.os_ops.username,
|
|
698
717
|
suppress={InternalError,
|
|
699
718
|
QueryException,
|
|
700
719
|
ProgrammingError,
|
|
@@ -737,11 +756,10 @@ class PostgresNode(object):
|
|
|
737
756
|
if any(len(file) > 1 and 'Is another postmaster already '
|
|
738
757
|
'running on port' in file[1].decode() for
|
|
739
758
|
file in files):
|
|
740
|
-
|
|
741
|
-
|
|
759
|
+
logging.warning("Detected an issue with connecting to port {0}. "
|
|
760
|
+
"Trying another port after a 5-second sleep...".format(self.port))
|
|
742
761
|
self.port = reserve_port()
|
|
743
|
-
options = {}
|
|
744
|
-
options['port'] = str(self.port)
|
|
762
|
+
options = {'port': str(self.port)}
|
|
745
763
|
self.set_auto_conf(options)
|
|
746
764
|
startup_retries -= 1
|
|
747
765
|
time.sleep(5)
|
|
@@ -915,13 +933,14 @@ class PostgresNode(object):
|
|
|
915
933
|
self._should_free_port = False
|
|
916
934
|
release_port(self.port)
|
|
917
935
|
|
|
918
|
-
def cleanup(self, max_attempts=3):
|
|
936
|
+
def cleanup(self, max_attempts=3, full=False):
|
|
919
937
|
"""
|
|
920
938
|
Stop node if needed and remove its data/logs directory.
|
|
921
939
|
NOTE: take a look at TestgresConfig.node_cleanup_full.
|
|
922
940
|
|
|
923
941
|
Args:
|
|
924
942
|
max_attempts: how many times should we try to stop()?
|
|
943
|
+
full: clean full base dir
|
|
925
944
|
|
|
926
945
|
Returns:
|
|
927
946
|
This instance of :class:`.PostgresNode`.
|
|
@@ -930,12 +949,12 @@ class PostgresNode(object):
|
|
|
930
949
|
self._try_shutdown(max_attempts)
|
|
931
950
|
|
|
932
951
|
# choose directory to be removed
|
|
933
|
-
if testgres_config.node_cleanup_full:
|
|
952
|
+
if testgres_config.node_cleanup_full or full:
|
|
934
953
|
rm_dir = self.base_dir # everything
|
|
935
954
|
else:
|
|
936
955
|
rm_dir = self.data_dir # just data, save logs
|
|
937
956
|
|
|
938
|
-
self.os_ops.rmdirs(rm_dir, ignore_errors=
|
|
957
|
+
self.os_ops.rmdirs(rm_dir, ignore_errors=False)
|
|
939
958
|
|
|
940
959
|
return self
|
|
941
960
|
|
|
@@ -967,15 +986,13 @@ class PostgresNode(object):
|
|
|
967
986
|
>>> psql(query='select 3', ON_ERROR_STOP=1)
|
|
968
987
|
"""
|
|
969
988
|
|
|
970
|
-
# Set default arguments
|
|
971
989
|
dbname = dbname or default_dbname()
|
|
972
|
-
username = username or default_username()
|
|
973
990
|
|
|
974
991
|
psql_params = [
|
|
975
992
|
self._get_bin_path("psql"),
|
|
976
993
|
"-p", str(self.port),
|
|
977
994
|
"-h", self.host,
|
|
978
|
-
"-U", username,
|
|
995
|
+
"-U", username or self.os_ops.username,
|
|
979
996
|
"-X", # no .psqlrc
|
|
980
997
|
"-A", # unaligned output
|
|
981
998
|
"-t", # print rows only
|
|
@@ -1087,9 +1104,6 @@ class PostgresNode(object):
|
|
|
1087
1104
|
fname = self.os_ops.mkstemp(prefix=TMP_DUMP)
|
|
1088
1105
|
return fname
|
|
1089
1106
|
|
|
1090
|
-
# Set default arguments
|
|
1091
|
-
dbname = dbname or default_dbname()
|
|
1092
|
-
username = username or default_username()
|
|
1093
1107
|
filename = filename or tmpfile()
|
|
1094
1108
|
|
|
1095
1109
|
_params = [
|
|
@@ -1097,8 +1111,8 @@ class PostgresNode(object):
|
|
|
1097
1111
|
"-p", str(self.port),
|
|
1098
1112
|
"-h", self.host,
|
|
1099
1113
|
"-f", filename,
|
|
1100
|
-
"-U", username,
|
|
1101
|
-
"-d", dbname,
|
|
1114
|
+
"-U", username or self.os_ops.username,
|
|
1115
|
+
"-d", dbname or default_dbname(),
|
|
1102
1116
|
"-F", format.value
|
|
1103
1117
|
] # yapf: disable
|
|
1104
1118
|
|
|
@@ -1118,7 +1132,7 @@ class PostgresNode(object):
|
|
|
1118
1132
|
|
|
1119
1133
|
# Set default arguments
|
|
1120
1134
|
dbname = dbname or default_dbname()
|
|
1121
|
-
username = username or
|
|
1135
|
+
username = username or self.os_ops.username
|
|
1122
1136
|
|
|
1123
1137
|
_params = [
|
|
1124
1138
|
self._get_bin_path("pg_restore"),
|
|
@@ -1171,7 +1185,6 @@ class PostgresNode(object):
|
|
|
1171
1185
|
assert sleep_time > 0
|
|
1172
1186
|
attempts = 0
|
|
1173
1187
|
while max_attempts == 0 or attempts < max_attempts:
|
|
1174
|
-
print(f"Pooling {attempts}")
|
|
1175
1188
|
try:
|
|
1176
1189
|
res = self.execute(dbname=dbname,
|
|
1177
1190
|
query=query,
|
|
@@ -1195,6 +1208,7 @@ class PostgresNode(object):
|
|
|
1195
1208
|
return # done
|
|
1196
1209
|
|
|
1197
1210
|
except tuple(suppress or []):
|
|
1211
|
+
logging.info(f"Trying execute, attempt {attempts + 1}.\nQuery: {query}")
|
|
1198
1212
|
pass # we're suppressing them
|
|
1199
1213
|
|
|
1200
1214
|
time.sleep(sleep_time)
|
|
@@ -1388,15 +1402,13 @@ class PostgresNode(object):
|
|
|
1388
1402
|
if options is None:
|
|
1389
1403
|
options = []
|
|
1390
1404
|
|
|
1391
|
-
# Set default arguments
|
|
1392
1405
|
dbname = dbname or default_dbname()
|
|
1393
|
-
username = username or default_username()
|
|
1394
1406
|
|
|
1395
1407
|
_params = [
|
|
1396
1408
|
self._get_bin_path("pgbench"),
|
|
1397
1409
|
"-p", str(self.port),
|
|
1398
1410
|
"-h", self.host,
|
|
1399
|
-
"-U", username
|
|
1411
|
+
"-U", username or self.os_ops.username
|
|
1400
1412
|
] + options # yapf: disable
|
|
1401
1413
|
|
|
1402
1414
|
# should be the last one
|
|
@@ -1463,15 +1475,13 @@ class PostgresNode(object):
|
|
|
1463
1475
|
>>> pgbench_run(time=10)
|
|
1464
1476
|
"""
|
|
1465
1477
|
|
|
1466
|
-
# Set default arguments
|
|
1467
1478
|
dbname = dbname or default_dbname()
|
|
1468
|
-
username = username or default_username()
|
|
1469
1479
|
|
|
1470
1480
|
_params = [
|
|
1471
1481
|
self._get_bin_path("pgbench"),
|
|
1472
1482
|
"-p", str(self.port),
|
|
1473
1483
|
"-h", self.host,
|
|
1474
|
-
"-U", username
|
|
1484
|
+
"-U", username or self.os_ops.username
|
|
1475
1485
|
] + options # yapf: disable
|
|
1476
1486
|
|
|
1477
1487
|
for key, value in iteritems(kwargs):
|
|
@@ -1639,7 +1649,7 @@ class PostgresNode(object):
|
|
|
1639
1649
|
|
|
1640
1650
|
self.os_ops.write(path, auto_conf, truncate=True)
|
|
1641
1651
|
|
|
1642
|
-
def upgrade_from(self, old_node, options=None):
|
|
1652
|
+
def upgrade_from(self, old_node, options=None, expect_error=False):
|
|
1643
1653
|
"""
|
|
1644
1654
|
Upgrade this node from an old node using pg_upgrade.
|
|
1645
1655
|
|
|
@@ -1667,11 +1677,11 @@ class PostgresNode(object):
|
|
|
1667
1677
|
"--old-datadir", old_node.data_dir,
|
|
1668
1678
|
"--new-datadir", self.data_dir,
|
|
1669
1679
|
"--old-port", str(old_node.port),
|
|
1670
|
-
"--new-port", str(self.port)
|
|
1680
|
+
"--new-port", str(self.port)
|
|
1671
1681
|
]
|
|
1672
1682
|
upgrade_command += options
|
|
1673
1683
|
|
|
1674
|
-
return self.os_ops.exec_command(upgrade_command)
|
|
1684
|
+
return self.os_ops.exec_command(upgrade_command, expect_error=expect_error)
|
|
1675
1685
|
|
|
1676
1686
|
def _get_bin_path(self, filename):
|
|
1677
1687
|
if self.bin_dir:
|
|
@@ -1683,19 +1693,26 @@ class PostgresNode(object):
|
|
|
1683
1693
|
|
|
1684
1694
|
class NodeApp:
|
|
1685
1695
|
|
|
1686
|
-
def __init__(self, test_path, nodes_to_cleanup, os_ops=LocalOperations()):
|
|
1687
|
-
|
|
1688
|
-
|
|
1696
|
+
def __init__(self, test_path=None, nodes_to_cleanup=None, os_ops=LocalOperations()):
|
|
1697
|
+
if test_path:
|
|
1698
|
+
if os.path.isabs(test_path):
|
|
1699
|
+
self.test_path = test_path
|
|
1700
|
+
else:
|
|
1701
|
+
self.test_path = os.path.join(os_ops.cwd(), test_path)
|
|
1702
|
+
else:
|
|
1703
|
+
self.test_path = os_ops.cwd()
|
|
1704
|
+
self.nodes_to_cleanup = nodes_to_cleanup if nodes_to_cleanup else []
|
|
1689
1705
|
self.os_ops = os_ops
|
|
1690
1706
|
|
|
1691
1707
|
def make_empty(
|
|
1692
1708
|
self,
|
|
1693
|
-
base_dir=None
|
|
1709
|
+
base_dir=None,
|
|
1710
|
+
port=None):
|
|
1694
1711
|
real_base_dir = os.path.join(self.test_path, base_dir)
|
|
1695
1712
|
self.os_ops.rmdirs(real_base_dir, ignore_errors=True)
|
|
1696
1713
|
self.os_ops.makedirs(real_base_dir)
|
|
1697
1714
|
|
|
1698
|
-
node = PostgresNode(base_dir=real_base_dir)
|
|
1715
|
+
node = PostgresNode(base_dir=real_base_dir, port=port)
|
|
1699
1716
|
node.should_rm_dirs = True
|
|
1700
1717
|
self.nodes_to_cleanup.append(node)
|
|
1701
1718
|
|
|
@@ -1704,6 +1721,7 @@ class NodeApp:
|
|
|
1704
1721
|
def make_simple(
|
|
1705
1722
|
self,
|
|
1706
1723
|
base_dir=None,
|
|
1724
|
+
port=None,
|
|
1707
1725
|
set_replication=False,
|
|
1708
1726
|
ptrack_enable=False,
|
|
1709
1727
|
initdb_params=[],
|
|
@@ -1711,7 +1729,7 @@ class NodeApp:
|
|
|
1711
1729
|
checksum=True):
|
|
1712
1730
|
if checksum and '--data-checksums' not in initdb_params:
|
|
1713
1731
|
initdb_params.append('--data-checksums')
|
|
1714
|
-
node = self.make_empty(base_dir)
|
|
1732
|
+
node = self.make_empty(base_dir, port)
|
|
1715
1733
|
node.init(
|
|
1716
1734
|
initdb_params=initdb_params, allow_streaming=set_replication)
|
|
1717
1735
|
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import getpass
|
|
2
|
+
import logging
|
|
2
3
|
import os
|
|
3
4
|
import shutil
|
|
4
5
|
import stat
|
|
5
6
|
import subprocess
|
|
6
7
|
import tempfile
|
|
8
|
+
import time
|
|
7
9
|
|
|
8
10
|
import psutil
|
|
9
11
|
|
|
@@ -19,13 +21,18 @@ except ImportError:
|
|
|
19
21
|
|
|
20
22
|
CMD_TIMEOUT_SEC = 60
|
|
21
23
|
error_markers = [b'error', b'Permission denied', b'fatal']
|
|
24
|
+
err_out_markers = [b'Failure']
|
|
22
25
|
|
|
23
26
|
|
|
24
|
-
def has_errors(output):
|
|
27
|
+
def has_errors(output=None, error=None):
|
|
25
28
|
if output:
|
|
26
29
|
if isinstance(output, str):
|
|
27
30
|
output = output.encode(get_default_encoding())
|
|
28
|
-
return any(marker in output for marker in
|
|
31
|
+
return any(marker in output for marker in err_out_markers)
|
|
32
|
+
if error:
|
|
33
|
+
if isinstance(error, str):
|
|
34
|
+
error = error.encode(get_default_encoding())
|
|
35
|
+
return any(marker in error for marker in error_markers)
|
|
29
36
|
return False
|
|
30
37
|
|
|
31
38
|
|
|
@@ -38,7 +45,7 @@ class LocalOperations(OsOperations):
|
|
|
38
45
|
self.host = conn_params.host
|
|
39
46
|
self.ssh_key = None
|
|
40
47
|
self.remote = False
|
|
41
|
-
self.username = conn_params.username or
|
|
48
|
+
self.username = conn_params.username or getpass.getuser()
|
|
42
49
|
|
|
43
50
|
@staticmethod
|
|
44
51
|
def _raise_exec_exception(message, command, exit_code, output):
|
|
@@ -100,15 +107,16 @@ class LocalOperations(OsOperations):
|
|
|
100
107
|
raise ExecUtilException("Command timed out after {} seconds.".format(timeout))
|
|
101
108
|
|
|
102
109
|
def exec_command(self, cmd, wait_exit=False, verbose=False, expect_error=False, encoding=None, shell=False,
|
|
103
|
-
text=False, input=None, stdin=None, stdout=None, stderr=None, get_process=False, timeout=None
|
|
110
|
+
text=False, input=None, stdin=None, stdout=None, stderr=None, get_process=False, timeout=None,
|
|
111
|
+
ignore_errors=False):
|
|
104
112
|
"""
|
|
105
113
|
Execute a command in a subprocess and handle the output based on the provided parameters.
|
|
106
114
|
"""
|
|
107
115
|
process, output, error = self._run_command(cmd, shell, input, stdin, stdout, stderr, get_process, timeout, encoding)
|
|
108
116
|
if get_process:
|
|
109
117
|
return process
|
|
110
|
-
if process.returncode != 0 or
|
|
111
|
-
self._raise_exec_exception('Utility exited with non-zero code. Error `{}`', cmd, process.returncode, error)
|
|
118
|
+
if not ignore_errors and ((process.returncode != 0 or has_errors(output=output, error=error)) and not expect_error):
|
|
119
|
+
self._raise_exec_exception('Utility exited with non-zero code. Error `{}`', cmd, process.returncode, error or output)
|
|
112
120
|
|
|
113
121
|
if verbose:
|
|
114
122
|
return process.returncode, output, error
|
|
@@ -130,10 +138,6 @@ class LocalOperations(OsOperations):
|
|
|
130
138
|
# Check if the directory is already in PATH
|
|
131
139
|
os.environ[var_name] = var_val
|
|
132
140
|
|
|
133
|
-
# Get environment variables
|
|
134
|
-
def get_user(self):
|
|
135
|
-
return self.username or getpass.getuser()
|
|
136
|
-
|
|
137
141
|
def get_name(self):
|
|
138
142
|
return os.name
|
|
139
143
|
|
|
@@ -146,8 +150,27 @@ class LocalOperations(OsOperations):
|
|
|
146
150
|
except FileExistsError:
|
|
147
151
|
pass
|
|
148
152
|
|
|
149
|
-
def rmdirs(self, path, ignore_errors=True):
|
|
150
|
-
|
|
153
|
+
def rmdirs(self, path, ignore_errors=True, retries=3, delay=1):
|
|
154
|
+
"""
|
|
155
|
+
Removes a directory and its contents, retrying on failure.
|
|
156
|
+
|
|
157
|
+
:param path: Path to the directory.
|
|
158
|
+
:param ignore_errors: If True, ignore errors.
|
|
159
|
+
:param retries: Number of attempts to remove the directory.
|
|
160
|
+
:param delay: Delay between attempts in seconds.
|
|
161
|
+
"""
|
|
162
|
+
for attempt in range(retries):
|
|
163
|
+
try:
|
|
164
|
+
rmtree(path, ignore_errors=ignore_errors)
|
|
165
|
+
if not os.path.exists(path):
|
|
166
|
+
return True
|
|
167
|
+
except FileNotFoundError:
|
|
168
|
+
return True
|
|
169
|
+
except Exception as e:
|
|
170
|
+
logging.error(f"Error: Failed to remove directory {path} on attempt {attempt + 1}: {e}")
|
|
171
|
+
time.sleep(delay)
|
|
172
|
+
logging.error(f"Error: Failed to remove directory {path} after {retries} attempts.")
|
|
173
|
+
return False
|
|
151
174
|
|
|
152
175
|
def listdir(self, path):
|
|
153
176
|
return os.listdir(path)
|
|
@@ -271,10 +294,10 @@ class LocalOperations(OsOperations):
|
|
|
271
294
|
return os.remove(filename)
|
|
272
295
|
|
|
273
296
|
# Processes control
|
|
274
|
-
def kill(self, pid, signal):
|
|
297
|
+
def kill(self, pid, signal, expect_error=False):
|
|
275
298
|
# Kill the process
|
|
276
299
|
cmd = "kill -{} {}".format(signal, pid)
|
|
277
|
-
return self.exec_command(cmd)
|
|
300
|
+
return self.exec_command(cmd, expect_error=expect_error)
|
|
278
301
|
|
|
279
302
|
def get_pid(self):
|
|
280
303
|
# Get current process id
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import getpass
|
|
1
2
|
import locale
|
|
3
|
+
import sys
|
|
2
4
|
|
|
3
5
|
try:
|
|
4
6
|
import psycopg2 as pglib # noqa: F401
|
|
@@ -10,20 +12,23 @@ except ImportError:
|
|
|
10
12
|
|
|
11
13
|
|
|
12
14
|
class ConnectionParams:
|
|
13
|
-
def __init__(self, host='127.0.0.1', ssh_key=None, username=None):
|
|
15
|
+
def __init__(self, host='127.0.0.1', port=None, ssh_key=None, username=None):
|
|
14
16
|
self.host = host
|
|
17
|
+
self.port = port
|
|
15
18
|
self.ssh_key = ssh_key
|
|
16
19
|
self.username = username
|
|
17
20
|
|
|
18
21
|
|
|
19
22
|
def get_default_encoding():
|
|
20
|
-
|
|
23
|
+
if not hasattr(locale, 'getencoding'):
|
|
24
|
+
locale.getencoding = locale.getpreferredencoding
|
|
25
|
+
return locale.getencoding() or 'UTF-8'
|
|
21
26
|
|
|
22
27
|
|
|
23
28
|
class OsOperations:
|
|
24
29
|
def __init__(self, username=None):
|
|
25
30
|
self.ssh_key = None
|
|
26
|
-
self.username = username
|
|
31
|
+
self.username = username or getpass.getuser()
|
|
27
32
|
|
|
28
33
|
# Command execution
|
|
29
34
|
def exec_command(self, cmd, **kwargs):
|
|
@@ -33,6 +38,13 @@ class OsOperations:
|
|
|
33
38
|
def environ(self, var_name):
|
|
34
39
|
raise NotImplementedError()
|
|
35
40
|
|
|
41
|
+
def cwd(self):
|
|
42
|
+
if sys.platform == 'linux':
|
|
43
|
+
cmd = 'pwd'
|
|
44
|
+
elif sys.platform == 'win32':
|
|
45
|
+
cmd = 'cd'
|
|
46
|
+
return self.exec_command(cmd).decode().rstrip()
|
|
47
|
+
|
|
36
48
|
def find_executable(self, executable):
|
|
37
49
|
raise NotImplementedError()
|
|
38
50
|
|
|
@@ -44,9 +56,8 @@ class OsOperations:
|
|
|
44
56
|
# Check if the directory is already in PATH
|
|
45
57
|
raise NotImplementedError()
|
|
46
58
|
|
|
47
|
-
# Get environment variables
|
|
48
59
|
def get_user(self):
|
|
49
|
-
|
|
60
|
+
return self.username
|
|
50
61
|
|
|
51
62
|
def get_name(self):
|
|
52
63
|
raise NotImplementedError()
|