testgres 1.10.2__tar.gz → 1.10.3__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.
Files changed (2557) hide show
  1. testgres-1.10.3/PKG-INFO +226 -0
  2. testgres-1.10.3/README.md +209 -0
  3. testgres-1.10.3/setup.py +43 -0
  4. testgres-1.10.3/testgres/node.py +1784 -0
  5. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/bin/activate_this.py +36 -0
  6. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/_distutils_hack/__init__.py +239 -0
  7. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/_virtualenv.py +102 -0
  8. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/certifi/__init__.py +4 -0
  9. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/__init__.py +14 -0
  10. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/_shimmed_dist_utils.py +45 -0
  11. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/api.py +967 -0
  12. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/cffi_opcode.py +187 -0
  13. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/commontypes.py +82 -0
  14. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/cparser.py +1015 -0
  15. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/model.py +618 -0
  16. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/recompiler.py +1598 -0
  17. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/vengine_cpy.py +1084 -0
  18. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/vengine_gen.py +679 -0
  19. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/api.py +668 -0
  20. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/cli/__main__.py +320 -0
  21. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/constant.py +1997 -0
  22. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/legacy.py +65 -0
  23. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/md.py +628 -0
  24. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/models.py +359 -0
  25. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/version.py +6 -0
  26. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/__about__.py +17 -0
  27. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/__init__.py +26 -0
  28. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/fernet.py +223 -0
  29. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/_oid.py +315 -0
  30. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/backends/openssl/backend.py +285 -0
  31. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py +183 -0
  32. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/bindings/openssl/binding.py +121 -0
  33. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/decrepit/__init__.py +5 -0
  34. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/decrepit/ciphers/__init__.py +5 -0
  35. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/decrepit/ciphers/algorithms.py +107 -0
  36. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py +58 -0
  37. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py +403 -0
  38. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py +263 -0
  39. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py +27 -0
  40. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/aead.py +23 -0
  41. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py +183 -0
  42. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/base.py +145 -0
  43. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/modes.py +268 -0
  44. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/hashes.py +242 -0
  45. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/argon2.py +13 -0
  46. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/kbkdf.py +302 -0
  47. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/pbkdf2.py +62 -0
  48. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py +19 -0
  49. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/keywrap.py +177 -0
  50. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/padding.py +183 -0
  51. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/__init__.py +63 -0
  52. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py +156 -0
  53. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py +369 -0
  54. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/ssh.py +1569 -0
  55. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/twofactor/hotp.py +100 -0
  56. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/twofactor/totp.py +55 -0
  57. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/utils.py +127 -0
  58. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/__init__.py +267 -0
  59. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/base.py +815 -0
  60. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/certificate_transparency.py +35 -0
  61. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/extensions.py +2477 -0
  62. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/name.py +465 -0
  63. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/ocsp.py +344 -0
  64. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/oid.py +35 -0
  65. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/verification.py +28 -0
  66. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/__init__.py +45 -0
  67. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/codec.py +122 -0
  68. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/compat.py +15 -0
  69. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/core.py +437 -0
  70. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/idnadata.py +4243 -0
  71. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/intranges.py +57 -0
  72. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/package_data.py +1 -0
  73. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/uts46data.py +8681 -0
  74. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/importlib_metadata/__init__.py +1132 -0
  75. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/importlib_metadata/_adapters.py +83 -0
  76. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/importlib_metadata/_compat.py +56 -0
  77. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/importlib_metadata/_functools.py +104 -0
  78. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/importlib_metadata/_itertools.py +171 -0
  79. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/importlib_metadata/_meta.py +75 -0
  80. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jaraco/context/__init__.py +356 -0
  81. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jaraco/functools/__init__.py +685 -0
  82. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backend.py +300 -0
  83. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/Windows.py +168 -0
  84. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/fail.py +30 -0
  85. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/libsecret.py +155 -0
  86. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/null.py +20 -0
  87. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/cli.py +220 -0
  88. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/compat/py312.py +9 -0
  89. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/core.py +200 -0
  90. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/credentials.py +85 -0
  91. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/testing/backend.py +200 -0
  92. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/more_itertools/__init__.py +6 -0
  93. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/more_itertools/more.py +4980 -0
  94. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/more_itertools/recipes.py +1075 -0
  95. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/__init__.py +13 -0
  96. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/__main__.py +24 -0
  97. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
  98. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
  99. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/build_env.py +311 -0
  100. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cache.py +290 -0
  101. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +172 -0
  102. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +236 -0
  103. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1074 -0
  104. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +27 -0
  105. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py +79 -0
  106. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +134 -0
  107. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py +294 -0
  108. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +68 -0
  109. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +505 -0
  110. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +159 -0
  111. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +132 -0
  112. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py +225 -0
  113. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py +54 -0
  114. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py +130 -0
  115. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +280 -0
  116. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py +201 -0
  117. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py +147 -0
  118. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +109 -0
  119. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py +139 -0
  120. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
  121. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py +774 -0
  122. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py +370 -0
  123. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py +189 -0
  124. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
  125. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +183 -0
  126. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py +383 -0
  127. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py +51 -0
  128. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +29 -0
  129. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +156 -0
  130. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +40 -0
  131. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py +728 -0
  132. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py +507 -0
  133. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1027 -0
  134. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py +285 -0
  135. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +467 -0
  136. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +172 -0
  137. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +213 -0
  138. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py +81 -0
  139. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +128 -0
  140. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +84 -0
  141. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py +702 -0
  142. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  143. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +55 -0
  144. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +227 -0
  145. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +189 -0
  146. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +278 -0
  147. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py +30 -0
  148. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +235 -0
  149. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
  150. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +56 -0
  151. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py +579 -0
  152. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +132 -0
  153. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
  154. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py +92 -0
  155. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/auth.py +561 -0
  156. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py +106 -0
  157. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py +186 -0
  158. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
  159. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py +520 -0
  160. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py +96 -0
  161. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +62 -0
  162. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +139 -0
  163. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +39 -0
  164. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  165. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +37 -0
  166. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
  167. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py +187 -0
  168. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +255 -0
  169. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +46 -0
  170. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +734 -0
  171. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +730 -0
  172. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py +179 -0
  173. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py +92 -0
  174. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py +576 -0
  175. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py +554 -0
  176. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py +923 -0
  177. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py +119 -0
  178. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +649 -0
  179. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  180. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +141 -0
  181. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +597 -0
  182. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +812 -0
  183. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +255 -0
  184. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +80 -0
  185. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +166 -0
  186. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +317 -0
  187. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +248 -0
  188. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  189. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +80 -0
  190. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py +36 -0
  191. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +84 -0
  192. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +153 -0
  193. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +88 -0
  194. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +151 -0
  195. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py +348 -0
  196. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py +783 -0
  197. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +146 -0
  198. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +260 -0
  199. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +296 -0
  200. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +257 -0
  201. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +104 -0
  202. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +134 -0
  203. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +112 -0
  204. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py +526 -0
  205. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +163 -0
  206. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +324 -0
  207. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +705 -0
  208. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +354 -0
  209. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py +121 -0
  210. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +28 -0
  211. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  212. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +161 -0
  213. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +74 -0
  214. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  215. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +181 -0
  216. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  217. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +494 -0
  218. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +119 -0
  219. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +154 -0
  220. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +206 -0
  221. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  222. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  223. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +119 -0
  224. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py +115 -0
  225. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py +386 -0
  226. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py +47 -0
  227. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py +261 -0
  228. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py +106 -0
  229. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py +147 -0
  230. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py +112 -0
  231. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py +90 -0
  232. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py +19 -0
  233. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py +49 -0
  234. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py +85 -0
  235. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py +102 -0
  236. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py +261 -0
  237. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py +102 -0
  238. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py +196 -0
  239. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py +47 -0
  240. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py +388 -0
  241. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py +47 -0
  242. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py +284 -0
  243. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py +47 -0
  244. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py +316 -0
  245. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py +325 -0
  246. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py +2382 -0
  247. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py +47 -0
  248. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py +238 -0
  249. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +4649 -0
  250. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py +4397 -0
  251. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py +4380 -0
  252. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py +4649 -0
  253. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py +5725 -0
  254. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py +4380 -0
  255. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py +4380 -0
  256. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py +147 -0
  257. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py +162 -0
  258. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py +95 -0
  259. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +57 -0
  260. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py +661 -0
  261. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py +352 -0
  262. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py +16 -0
  263. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py +162 -0
  264. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +88 -0
  265. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py +105 -0
  266. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py +362 -0
  267. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py +225 -0
  268. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py +82 -0
  269. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py +9 -0
  270. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py +7 -0
  271. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py +277 -0
  272. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py +121 -0
  273. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py +1 -0
  274. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py +76 -0
  275. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py +294 -0
  276. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py +189 -0
  277. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py +57 -0
  278. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py +49 -0
  279. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py +131 -0
  280. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py +180 -0
  281. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py +195 -0
  282. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  283. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1138 -0
  284. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py +1359 -0
  285. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py +508 -0
  286. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py +1303 -0
  287. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py +384 -0
  288. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py +167 -0
  289. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py +1068 -0
  290. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +452 -0
  291. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +2025 -0
  292. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py +751 -0
  293. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py +1099 -0
  294. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
  295. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
  296. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1399 -0
  297. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py +400 -0
  298. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +2151 -0
  299. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +2 -0
  300. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8600 -0
  301. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +57 -0
  302. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +193 -0
  303. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +1010 -0
  304. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3361 -0
  305. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +566 -0
  306. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +53 -0
  307. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +210 -0
  308. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +223 -0
  309. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +91 -0
  310. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +223 -0
  311. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +4 -0
  312. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +255 -0
  313. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  314. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  315. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +668 -0
  316. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
  317. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +71 -0
  318. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  319. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +124 -0
  320. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +158 -0
  321. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/pygments/formatters/_mapping.py +0 -0
  322. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
  323. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +170 -0
  324. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +989 -0
  325. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +645 -0
  326. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +154 -0
  327. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +521 -0
  328. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +161 -0
  329. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
  330. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +146 -0
  331. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +188 -0
  332. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
  333. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
  334. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +943 -0
  335. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  336. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +559 -0
  337. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1198 -0
  338. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  339. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +88 -0
  340. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  341. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  342. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +217 -0
  343. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +197 -0
  344. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +103 -0
  345. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +213 -0
  346. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  347. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +330 -0
  348. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py +322 -0
  349. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py +217 -0
  350. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py +432 -0
  351. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py +6115 -0
  352. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py +656 -0
  353. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py +299 -0
  354. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py +1100 -0
  355. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py +796 -0
  356. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py +331 -0
  357. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py +361 -0
  358. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py +284 -0
  359. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +23 -0
  360. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py +8 -0
  361. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +330 -0
  362. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +18 -0
  363. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +353 -0
  364. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +182 -0
  365. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
  366. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +538 -0
  367. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
  368. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +315 -0
  369. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +24 -0
  370. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +67 -0
  371. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
  372. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +141 -0
  373. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py +131 -0
  374. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1034 -0
  375. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +833 -0
  376. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  377. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1094 -0
  378. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
  379. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
  380. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
  381. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +547 -0
  382. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +170 -0
  383. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
  384. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +274 -0
  385. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  386. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +662 -0
  387. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +72 -0
  388. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  389. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +56 -0
  390. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py +311 -0
  391. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py +517 -0
  392. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +154 -0
  393. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py +622 -0
  394. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2633 -0
  395. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py +225 -0
  396. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +190 -0
  397. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +37 -0
  398. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  399. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/json.py +140 -0
  400. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  401. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +443 -0
  402. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/live.py +375 -0
  403. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +289 -0
  404. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +246 -0
  405. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +308 -0
  406. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +994 -0
  407. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1702 -0
  408. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +224 -0
  409. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +376 -0
  410. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
  411. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
  412. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
  413. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
  414. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +739 -0
  415. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +948 -0
  416. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1002 -0
  417. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1307 -0
  418. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +756 -0
  419. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +251 -0
  420. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py +608 -0
  421. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py +94 -0
  422. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py +76 -0
  423. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py +51 -0
  424. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py +46 -0
  425. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py +71 -0
  426. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py +272 -0
  427. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py +103 -0
  428. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py +59 -0
  429. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py +228 -0
  430. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +11 -0
  431. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +691 -0
  432. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +107 -0
  433. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
  434. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +13 -0
  435. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +302 -0
  436. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +501 -0
  437. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +66 -0
  438. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  439. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +554 -0
  440. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py +3072 -0
  441. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
  442. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +337 -0
  443. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +2 -0
  444. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +572 -0
  445. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1132 -0
  446. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
  447. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
  448. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
  449. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +921 -0
  450. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
  451. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
  452. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +537 -0
  453. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +191 -0
  454. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +879 -0
  455. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
  456. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
  457. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  458. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
  459. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
  460. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
  461. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/__init__.py +3720 -0
  462. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +7 -0
  463. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_find_distributions.py +56 -0
  464. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_integration_zope_interface.py +54 -0
  465. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_markers.py +8 -0
  466. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_pkg_resources.py +427 -0
  467. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_resources.py +869 -0
  468. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_working_set.py +501 -0
  469. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/distribution.py +165 -0
  470. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/sdist.py +75 -0
  471. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/tests/__init__.py +37 -0
  472. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/tests/test_bdist.py +60 -0
  473. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/tests/test_commandline.py +345 -0
  474. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/tests/test_develop.py +27 -0
  475. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/tests/test_distribution.py +485 -0
  476. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/tests/test_index.py +76 -0
  477. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/tests/test_installed.py +141 -0
  478. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/tests/test_sdist.py +165 -0
  479. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/tests/test_utils.py +176 -0
  480. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkginfo/tests/test_wheel.py +117 -0
  481. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/_mapping.py +23 -0
  482. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/readme_renderer/__main__.py +66 -0
  483. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/readme_renderer/clean.py +89 -0
  484. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/_internal_utils.py +50 -0
  485. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/hooks.py +33 -0
  486. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/structures.py +99 -0
  487. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_fileno.py +24 -0
  488. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_inspect.py +268 -0
  489. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_null_file.py +69 -0
  490. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_spinners.py +482 -0
  491. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_win32_console.py +661 -0
  492. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/align.py +312 -0
  493. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/ansi.py +241 -0
  494. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/cells.py +174 -0
  495. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/color.py +621 -0
  496. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/console.py +2661 -0
  497. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/default_styles.py +191 -0
  498. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/file_proxy.py +57 -0
  499. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/filesize.py +88 -0
  500. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/highlighter.py +232 -0
  501. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/live.py +375 -0
  502. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/logging.py +297 -0
  503. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/markdown.py +784 -0
  504. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/measure.py +151 -0
  505. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/padding.py +141 -0
  506. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/pager.py +34 -0
  507. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/panel.py +318 -0
  508. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/pretty.py +1016 -0
  509. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/progress.py +1715 -0
  510. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/progress_bar.py +223 -0
  511. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/prompt.py +400 -0
  512. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/segment.py +752 -0
  513. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/spinner.py +138 -0
  514. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/style.py +796 -0
  515. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/syntax.py +966 -0
  516. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/table.py +1007 -0
  517. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/terminal_theme.py +153 -0
  518. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/text.py +1361 -0
  519. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/theme.py +115 -0
  520. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/traceback.py +797 -0
  521. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/tree.py +257 -0
  522. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/__init__.py +288 -0
  523. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_core_metadata.py +286 -0
  524. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/__init__.py +14 -0
  525. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/_log.py +3 -0
  526. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/_macos_compat.py +12 -0
  527. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/_modified.py +73 -0
  528. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py +604 -0
  529. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py +264 -0
  530. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py +1256 -0
  531. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/cmd.py +439 -0
  532. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/__init__.py +23 -0
  533. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/_framework_compat.py +54 -0
  534. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/bdist.py +155 -0
  535. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_dumb.py +140 -0
  536. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_rpm.py +597 -0
  537. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/build.py +156 -0
  538. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/build_clib.py +208 -0
  539. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/build_ext.py +796 -0
  540. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/build_py.py +406 -0
  541. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/build_scripts.py +170 -0
  542. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/check.py +154 -0
  543. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/clean.py +76 -0
  544. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/config.py +369 -0
  545. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install.py +811 -0
  546. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install_data.py +94 -0
  547. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install_egg_info.py +92 -0
  548. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install_headers.py +44 -0
  549. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install_lib.py +234 -0
  550. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install_scripts.py +61 -0
  551. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py +515 -0
  552. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py +15 -0
  553. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/compat/py38.py +34 -0
  554. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py +66 -0
  555. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/core.py +286 -0
  556. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/cygwinccompiler.py +339 -0
  557. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/dep_util.py +14 -0
  558. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/dir_util.py +244 -0
  559. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/dist.py +1288 -0
  560. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/errors.py +124 -0
  561. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/extension.py +247 -0
  562. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/fancy_getopt.py +469 -0
  563. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/file_util.py +236 -0
  564. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/filelist.py +369 -0
  565. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/log.py +56 -0
  566. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/spawn.py +117 -0
  567. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py +583 -0
  568. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/__init__.py +42 -0
  569. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/py38.py +50 -0
  570. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/support.py +134 -0
  571. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_archive_util.py +353 -0
  572. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist.py +47 -0
  573. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py +78 -0
  574. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py +128 -0
  575. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build.py +47 -0
  576. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_clib.py +134 -0
  577. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_ext.py +563 -0
  578. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_py.py +196 -0
  579. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_scripts.py +96 -0
  580. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_ccompiler.py +91 -0
  581. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_check.py +194 -0
  582. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_clean.py +45 -0
  583. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cmd.py +107 -0
  584. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config_cmd.py +87 -0
  585. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_core.py +130 -0
  586. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cygwinccompiler.py +81 -0
  587. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dir_util.py +134 -0
  588. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dist.py +545 -0
  589. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_extension.py +108 -0
  590. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_file_util.py +94 -0
  591. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_filelist.py +336 -0
  592. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install.py +245 -0
  593. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_data.py +74 -0
  594. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_headers.py +33 -0
  595. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_lib.py +110 -0
  596. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_scripts.py +52 -0
  597. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_log.py +12 -0
  598. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_mingwccompiler.py +56 -0
  599. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_modified.py +126 -0
  600. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_msvccompiler.py +137 -0
  601. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sdist.py +470 -0
  602. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_spawn.py +131 -0
  603. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sysconfig.py +319 -0
  604. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_text_file.py +127 -0
  605. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_unixccompiler.py +351 -0
  606. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_util.py +243 -0
  607. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_version.py +80 -0
  608. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/unix_compat.py +17 -0
  609. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/text_file.py +286 -0
  610. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py +402 -0
  611. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/util.py +505 -0
  612. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/version.py +349 -0
  613. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py +175 -0
  614. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/zosccompiler.py +229 -0
  615. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_entry_points.py +90 -0
  616. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_imp.py +87 -0
  617. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_importlib.py +9 -0
  618. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_itertools.py +23 -0
  619. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_normalization.py +144 -0
  620. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_path.py +84 -0
  621. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_reqs.py +42 -0
  622. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_shutil.py +53 -0
  623. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__init__.py +27 -0
  624. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoasync.py +142 -0
  625. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autocommand.py +70 -0
  626. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/automain.py +59 -0
  627. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoparse.py +333 -0
  628. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/errors.py +23 -0
  629. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +1083 -0
  630. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +83 -0
  631. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +30 -0
  632. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py +99 -0
  633. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py +22 -0
  634. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py +36 -0
  635. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py +21 -0
  636. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/inflect/__init__.py +3986 -0
  637. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/py38.py +7 -0
  638. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/collections/__init__.py +1091 -0
  639. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py +624 -0
  640. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/layouts.py +25 -0
  641. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py +33 -0
  642. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py +21 -0
  643. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py +6 -0
  644. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py +6 -0
  645. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/more_itertools/more.py +0 -0
  646. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py +15 -0
  647. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_elffile.py +110 -0
  648. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_manylinux.py +263 -0
  649. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_musllinux.py +85 -0
  650. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_parser.py +354 -0
  651. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_structures.py +61 -0
  652. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py +194 -0
  653. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__init__.py +145 -0
  654. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/_spdx.py +759 -0
  655. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py +331 -0
  656. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/metadata.py +863 -0
  657. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py +91 -0
  658. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py +1020 -0
  659. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py +617 -0
  660. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py +163 -0
  661. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py +582 -0
  662. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__init__.py +627 -0
  663. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__main__.py +55 -0
  664. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/android.py +249 -0
  665. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/api.py +292 -0
  666. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/macos.py +130 -0
  667. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/unix.py +275 -0
  668. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/version.py +16 -0
  669. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/windows.py +272 -0
  670. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py +11 -0
  671. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py +691 -0
  672. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py +107 -0
  673. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py +10 -0
  674. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__init__.py +48 -0
  675. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_checkers.py +993 -0
  676. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_config.py +108 -0
  677. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_decorators.py +235 -0
  678. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_exceptions.py +42 -0
  679. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_functions.py +308 -0
  680. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_importhook.py +213 -0
  681. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_memo.py +48 -0
  682. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_pytest_plugin.py +127 -0
  683. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_suppression.py +86 -0
  684. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_transformer.py +1229 -0
  685. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_union_transformer.py +55 -0
  686. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_utils.py +173 -0
  687. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions.py +3641 -0
  688. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/__init__.py +3 -0
  689. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/__main__.py +23 -0
  690. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +26 -0
  691. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +595 -0
  692. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__init__.py +155 -0
  693. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/convert.py +273 -0
  694. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/pack.py +85 -0
  695. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/tags.py +139 -0
  696. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/unpack.py +30 -0
  697. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +469 -0
  698. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/metadata.py +180 -0
  699. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/util.py +26 -0
  700. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_elffile.py +108 -0
  701. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_manylinux.py +260 -0
  702. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_musllinux.py +83 -0
  703. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_parser.py +356 -0
  704. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_structures.py +61 -0
  705. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_tokenizer.py +192 -0
  706. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/markers.py +253 -0
  707. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/requirements.py +90 -0
  708. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/specifiers.py +1011 -0
  709. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/tags.py +571 -0
  710. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/utils.py +172 -0
  711. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/version.py +561 -0
  712. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/wheelfile.py +196 -0
  713. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/archive_util.py +219 -0
  714. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/build_meta.py +560 -0
  715. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/__init__.py +21 -0
  716. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/_requirestxt.py +131 -0
  717. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/alias.py +77 -0
  718. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/bdist_egg.py +479 -0
  719. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/bdist_rpm.py +42 -0
  720. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py +612 -0
  721. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/build.py +135 -0
  722. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/build_clib.py +103 -0
  723. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/build_ext.py +469 -0
  724. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/build_py.py +400 -0
  725. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/develop.py +195 -0
  726. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/dist_info.py +103 -0
  727. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/easy_install.py +2365 -0
  728. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/editable_wheel.py +925 -0
  729. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/egg_info.py +721 -0
  730. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/install.py +183 -0
  731. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/install_egg_info.py +58 -0
  732. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/install_lib.py +137 -0
  733. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/install_scripts.py +73 -0
  734. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/rotate.py +65 -0
  735. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/saveopts.py +21 -0
  736. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/sdist.py +217 -0
  737. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/setopt.py +141 -0
  738. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/test.py +45 -0
  739. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/compat/py310.py +9 -0
  740. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/compat/py311.py +27 -0
  741. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/compat/py312.py +13 -0
  742. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/compat/py39.py +9 -0
  743. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/__init__.py +43 -0
  744. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py +462 -0
  745. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__init__.py +34 -0
  746. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +336 -0
  747. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +52 -0
  748. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +51 -0
  749. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +1319 -0
  750. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/formats.py +375 -0
  751. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/expand.py +449 -0
  752. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py +468 -0
  753. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/setupcfg.py +772 -0
  754. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/depends.py +185 -0
  755. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/discovery.py +614 -0
  756. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/dist.py +1000 -0
  757. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/errors.py +67 -0
  758. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/extension.py +177 -0
  759. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/glob.py +185 -0
  760. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/installer.py +150 -0
  761. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/launch.py +36 -0
  762. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/logging.py +40 -0
  763. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/modified.py +18 -0
  764. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/monkey.py +126 -0
  765. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/msvc.py +1526 -0
  766. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/namespaces.py +106 -0
  767. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/package_index.py +1147 -0
  768. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/sandbox.py +536 -0
  769. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/__init__.py +13 -0
  770. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/compat/py39.py +3 -0
  771. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/downloads/__init__.py +59 -0
  772. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/downloads/preload.py +18 -0
  773. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +512 -0
  774. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/test_expand.py +221 -0
  775. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml.py +396 -0
  776. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py +109 -0
  777. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/test_setupcfg.py +965 -0
  778. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/contexts.py +145 -0
  779. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/environment.py +95 -0
  780. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/fixtures.py +157 -0
  781. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/integration/__init__.py +0 -0
  782. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/integration/helpers.py +77 -0
  783. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +223 -0
  784. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/mod_with_constant.py +1 -0
  785. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/namespaces.py +90 -0
  786. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/script-with-bom.py +1 -0
  787. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/server.py +86 -0
  788. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_archive_util.py +36 -0
  789. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_bdist_deprecations.py +28 -0
  790. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_bdist_egg.py +73 -0
  791. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_bdist_wheel.py +623 -0
  792. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_build.py +33 -0
  793. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_build_clib.py +84 -0
  794. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_build_ext.py +291 -0
  795. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_build_meta.py +970 -0
  796. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_build_py.py +480 -0
  797. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_config_discovery.py +647 -0
  798. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_core_metadata.py +484 -0
  799. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_depends.py +15 -0
  800. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_develop.py +175 -0
  801. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_dist.py +278 -0
  802. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_dist_info.py +210 -0
  803. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_distutils_adoption.py +198 -0
  804. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_easy_install.py +1474 -0
  805. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_editable_install.py +1289 -0
  806. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_egg_info.py +1285 -0
  807. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_extern.py +15 -0
  808. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_find_packages.py +218 -0
  809. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_find_py_modules.py +73 -0
  810. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_glob.py +45 -0
  811. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_install_scripts.py +89 -0
  812. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_logging.py +76 -0
  813. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_manifest.py +625 -0
  814. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_namespaces.py +138 -0
  815. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_packageindex.py +267 -0
  816. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_sandbox.py +134 -0
  817. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_sdist.py +975 -0
  818. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_setopt.py +40 -0
  819. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_setuptools.py +290 -0
  820. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_shutil_wrapper.py +23 -0
  821. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_unicode_utils.py +10 -0
  822. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_virtualenv.py +113 -0
  823. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_warnings.py +106 -0
  824. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_wheel.py +716 -0
  825. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_windows_wrappers.py +259 -0
  826. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/text.py +4 -0
  827. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/textwrap.py +6 -0
  828. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/unicode_utils.py +102 -0
  829. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/version.py +6 -0
  830. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/warnings.py +110 -0
  831. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/wheel.py +236 -0
  832. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/windows_support.py +30 -0
  833. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/__init__.py +49 -0
  834. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/repository.py +250 -0
  835. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/utils.py +354 -0
  836. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/_request_methods.py +278 -0
  837. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/_version.py +16 -0
  838. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/connection.py +1033 -0
  839. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/contrib/__init__.py +0 -0
  840. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/contrib/pyopenssl.py +552 -0
  841. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/http2/__init__.py +53 -0
  842. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/http2/connection.py +356 -0
  843. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/http2/probe.py +87 -0
  844. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/connection.py +137 -0
  845. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/request.py +256 -0
  846. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/ssl_.py +513 -0
  847. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/ssltransport.py +276 -0
  848. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/zipp/__init__.py +455 -0
  849. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/zipp/_functools.py +20 -0
  850. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/zipp/compat/__init__.py +0 -0
  851. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/zipp/compat/overlay.py +37 -0
  852. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/zipp/compat/py310.py +13 -0
  853. testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/zipp/glob.py +113 -0
  854. testgres-1.10.3/testgres/plugins/pg_probackup2/__init__.py +0 -0
  855. testgres-1.10.3/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/__init__.py +0 -0
  856. testgres-1.10.3/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/app.py +815 -0
  857. testgres-1.10.3/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/gdb.py +349 -0
  858. testgres-1.10.3/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/init_helpers.py +219 -0
  859. testgres-1.10.3/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/storage/__init__.py +0 -0
  860. testgres-1.10.3/testgres/plugins/pg_probackup2/pg_probackup2/__init__.py +0 -0
  861. testgres-1.10.3/testgres/plugins/pg_probackup2/pg_probackup2/app.py +815 -0
  862. testgres-1.10.3/testgres/plugins/pg_probackup2/pg_probackup2/gdb.py +349 -0
  863. testgres-1.10.3/testgres/plugins/pg_probackup2/pg_probackup2/init_helpers.py +219 -0
  864. testgres-1.10.3/testgres/plugins/pg_probackup2/pg_probackup2/storage/__init__.py +0 -0
  865. testgres-1.10.3/testgres/plugins/pg_probackup2/setup.py +18 -0
  866. testgres-1.10.3/testgres.egg-info/PKG-INFO +226 -0
  867. testgres-1.10.3/testgres.egg-info/SOURCES.txt +1866 -0
  868. testgres-1.10.3/tests/test_simple.py +1083 -0
  869. testgres-1.10.3/tests/test_simple_remote.py +995 -0
  870. testgres-1.10.2/PKG-INFO +0 -226
  871. testgres-1.10.2/README.md +0 -209
  872. testgres-1.10.2/setup.py +0 -43
  873. testgres-1.10.2/testgres/node.py +0 -1781
  874. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/bin/activate_this.py +0 -32
  875. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/_distutils_hack/__init__.py +0 -132
  876. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/_virtualenv.py +0 -130
  877. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/certifi/__init__.py +0 -4
  878. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/__init__.py +0 -14
  879. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/_shimmed_dist_utils.py +0 -41
  880. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/api.py +0 -965
  881. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/cffi_opcode.py +0 -187
  882. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/commontypes.py +0 -80
  883. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/cparser.py +0 -1006
  884. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/model.py +0 -618
  885. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/recompiler.py +0 -1581
  886. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/vengine_cpy.py +0 -1077
  887. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cffi/vengine_gen.py +0 -675
  888. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/api.py +0 -626
  889. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/cli/__main__.py +0 -296
  890. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/constant.py +0 -1995
  891. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/legacy.py +0 -54
  892. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/md.py +0 -615
  893. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/models.py +0 -340
  894. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/charset_normalizer/version.py +0 -6
  895. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/__about__.py +0 -17
  896. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/__init__.py +0 -13
  897. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/fernet.py +0 -215
  898. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/_oid.py +0 -296
  899. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/aead.py +0 -272
  900. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/backend.py +0 -898
  901. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/ciphers.py +0 -282
  902. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/backends/openssl/decode_asn1.py +0 -32
  903. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py +0 -226
  904. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/bindings/openssl/binding.py +0 -144
  905. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py +0 -44
  906. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py +0 -383
  907. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py +0 -239
  908. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py +0 -27
  909. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/aead.py +0 -174
  910. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py +0 -226
  911. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/base.py +0 -272
  912. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/ciphers/modes.py +0 -273
  913. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/hashes.py +0 -242
  914. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/kbkdf.py +0 -299
  915. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/pbkdf2.py +0 -64
  916. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py +0 -80
  917. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/keywrap.py +0 -177
  918. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/padding.py +0 -225
  919. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/__init__.py +0 -63
  920. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py +0 -229
  921. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py +0 -233
  922. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/serialization/ssh.py +0 -1507
  923. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/hotp.py +0 -92
  924. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/hazmat/primitives/twofactor/totp.py +0 -50
  925. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/utils.py +0 -131
  926. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/__init__.py +0 -257
  927. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/base.py +0 -1221
  928. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/certificate_transparency.py +0 -97
  929. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/extensions.py +0 -2175
  930. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/name.py +0 -456
  931. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/ocsp.py +0 -615
  932. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/oid.py +0 -33
  933. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/cryptography/x509/verification.py +0 -24
  934. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/codec.py +0 -118
  935. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/core.py +0 -395
  936. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/idnadata.py +0 -4245
  937. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/package_data.py +0 -2
  938. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/idna/uts46data.py +0 -8598
  939. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/__init__.py +0 -1104
  940. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/_adapters.py +0 -90
  941. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backend.py +0 -265
  942. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/Windows.py +0 -170
  943. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/fail.py +0 -30
  944. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/libsecret.py +0 -155
  945. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends/null.py +0 -20
  946. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/cli.py +0 -216
  947. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/compat/py312.py +0 -9
  948. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/core.py +0 -193
  949. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/credentials.py +0 -70
  950. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/testing/backend.py +0 -177
  951. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/__init__.py +0 -13
  952. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/__main__.py +0 -31
  953. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/__init__.py +0 -19
  954. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/build_env.py +0 -296
  955. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cache.py +0 -264
  956. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py +0 -171
  957. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/base_command.py +0 -220
  958. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py +0 -1018
  959. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/command_context.py +0 -27
  960. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/main.py +0 -70
  961. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py +0 -87
  962. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/parser.py +0 -292
  963. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py +0 -321
  964. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/req_command.py +0 -506
  965. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/cli/spinners.py +0 -157
  966. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/__init__.py +0 -127
  967. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/cache.py +0 -223
  968. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/check.py +0 -53
  969. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/completion.py +0 -96
  970. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/configuration.py +0 -266
  971. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/debug.py +0 -202
  972. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/download.py +0 -140
  973. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/freeze.py +0 -97
  974. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/index.py +0 -139
  975. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/install.py +0 -771
  976. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/list.py +0 -363
  977. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/show.py +0 -178
  978. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py +0 -105
  979. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/commands/wheel.py +0 -178
  980. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/configuration.py +0 -366
  981. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/distributions/base.py +0 -36
  982. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/distributions/installed.py +0 -20
  983. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py +0 -127
  984. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py +0 -31
  985. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/exceptions.py +0 -658
  986. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/index/collector.py +0 -648
  987. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/index/package_finder.py +0 -1004
  988. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/index/sources.py +0 -224
  989. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/locations/__init__.py +0 -520
  990. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py +0 -169
  991. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py +0 -219
  992. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/locations/base.py +0 -52
  993. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py +0 -62
  994. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/metadata/base.py +0 -546
  995. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py +0 -256
  996. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/candidate.py +0 -34
  997. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/direct_url.py +0 -220
  998. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/format_control.py +0 -80
  999. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/link.py +0 -288
  1000. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/search_scope.py +0 -129
  1001. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/target_python.py +0 -110
  1002. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/models/wheel.py +0 -89
  1003. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/auth.py +0 -323
  1004. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/cache.py +0 -69
  1005. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/download.py +0 -185
  1006. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py +0 -210
  1007. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/session.py +0 -454
  1008. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/utils.py +0 -96
  1009. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py +0 -60
  1010. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py +0 -39
  1011. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -41
  1012. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py +0 -37
  1013. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -46
  1014. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/check.py +0 -149
  1015. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/freeze.py +0 -254
  1016. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -47
  1017. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py +0 -120
  1018. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py +0 -738
  1019. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/prepare.py +0 -642
  1020. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/pyproject.py +0 -168
  1021. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/__init__.py +0 -94
  1022. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/constructors.py +0 -490
  1023. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/req_file.py +0 -536
  1024. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/req_install.py +0 -858
  1025. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/req_set.py +0 -189
  1026. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py +0 -124
  1027. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py +0 -633
  1028. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -467
  1029. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -141
  1030. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -547
  1031. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -739
  1032. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -248
  1033. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -68
  1034. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -166
  1035. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -292
  1036. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py +0 -189
  1037. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py +0 -42
  1038. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py +0 -75
  1039. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/encoding.py +0 -36
  1040. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py +0 -27
  1041. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py +0 -182
  1042. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/glibc.py +0 -88
  1043. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/hashes.py +0 -144
  1044. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py +0 -35
  1045. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/logging.py +0 -343
  1046. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/misc.py +0 -653
  1047. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py +0 -195
  1048. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py +0 -260
  1049. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py +0 -246
  1050. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py +0 -258
  1051. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py +0 -104
  1052. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils/wheel.py +0 -136
  1053. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py +0 -101
  1054. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/vcs/git.py +0 -526
  1055. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py +0 -163
  1056. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py +0 -324
  1057. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py +0 -705
  1058. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/wheel_builder.py +0 -377
  1059. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/__init__.py +0 -111
  1060. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -18
  1061. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -61
  1062. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -137
  1063. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py +0 -43
  1064. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -6
  1065. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -150
  1066. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -37
  1067. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py +0 -32
  1068. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py +0 -415
  1069. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -111
  1070. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -139
  1071. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -186
  1072. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -33
  1073. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py +0 -3
  1074. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/certifi/core.py +0 -76
  1075. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py +0 -83
  1076. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py +0 -386
  1077. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py +0 -47
  1078. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py +0 -233
  1079. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py +0 -107
  1080. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py +0 -145
  1081. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py +0 -1
  1082. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/chardetect.py +0 -84
  1083. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/codingstatemachine.py +0 -88
  1084. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/compat.py +0 -36
  1085. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/cp949prober.py +0 -49
  1086. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/enums.py +0 -76
  1087. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/escprober.py +0 -101
  1088. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/escsm.py +0 -246
  1089. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/eucjpprober.py +0 -92
  1090. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py +0 -195
  1091. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrprober.py +0 -47
  1092. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py +0 -387
  1093. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py +0 -46
  1094. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py +0 -283
  1095. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py +0 -46
  1096. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py +0 -292
  1097. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py +0 -325
  1098. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py +0 -233
  1099. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +0 -4650
  1100. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py +0 -4398
  1101. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py +0 -4383
  1102. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py +0 -4650
  1103. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py +0 -5718
  1104. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py +0 -4383
  1105. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py +0 -4383
  1106. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py +0 -145
  1107. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py +0 -91
  1108. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +0 -54
  1109. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py +0 -572
  1110. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py +0 -310
  1111. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py +0 -145
  1112. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +0 -83
  1113. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py +0 -92
  1114. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py +0 -286
  1115. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/utf8prober.py +0 -82
  1116. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/chardet/version.py +0 -9
  1117. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py +0 -6
  1118. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py +0 -258
  1119. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py +0 -80
  1120. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py +0 -152
  1121. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py +0 -169
  1122. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py +0 -23
  1123. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py +0 -1116
  1124. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/database.py +0 -1345
  1125. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/index.py +0 -509
  1126. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py +0 -1300
  1127. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py +0 -393
  1128. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/markers.py +0 -152
  1129. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py +0 -1058
  1130. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py +0 -429
  1131. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/util.py +0 -1932
  1132. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/version.py +0 -739
  1133. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py +0 -1053
  1134. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/distro.py +0 -1386
  1135. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/__init__.py +0 -35
  1136. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_ihatexml.py +0 -289
  1137. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_inputstream.py +0 -918
  1138. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_tokenizer.py +0 -1735
  1139. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py +0 -5
  1140. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/_base.py +0 -40
  1141. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/py.py +0 -67
  1142. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py +0 -159
  1143. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/constants.py +0 -2946
  1144. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py +0 -29
  1145. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/base.py +0 -12
  1146. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py +0 -73
  1147. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/lint.py +0 -93
  1148. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/optionaltags.py +0 -207
  1149. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/sanitizer.py +0 -916
  1150. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/whitespace.py +0 -38
  1151. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/html5parser.py +0 -2795
  1152. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/serializer.py +0 -409
  1153. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py +0 -30
  1154. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py +0 -54
  1155. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/sax.py +0 -50
  1156. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py +0 -88
  1157. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/base.py +0 -417
  1158. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/dom.py +0 -239
  1159. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree.py +0 -343
  1160. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py +0 -392
  1161. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py +0 -154
  1162. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/base.py +0 -252
  1163. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/dom.py +0 -43
  1164. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree.py +0 -131
  1165. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py +0 -215
  1166. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py +0 -69
  1167. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py +0 -44
  1168. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/compat.py +0 -13
  1169. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/core.py +0 -397
  1170. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py +0 -2137
  1171. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py +0 -54
  1172. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py +0 -2
  1173. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py +0 -8512
  1174. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py +0 -54
  1175. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/msgpack/_version.py +0 -1
  1176. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py +0 -193
  1177. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py +0 -1012
  1178. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/__init__.py +0 -6
  1179. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/build.py +0 -127
  1180. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/check.py +0 -207
  1181. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/colorlog.py +0 -115
  1182. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/compat.py +0 -51
  1183. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/dirtools.py +0 -44
  1184. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/envbuild.py +0 -171
  1185. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__init__.py +0 -17
  1186. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py +0 -363
  1187. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/meta.py +0 -92
  1188. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pep517/wrappers.py +0 -375
  1189. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -3296
  1190. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/py31compat.py +0 -23
  1191. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__init__.py +0 -331
  1192. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__main__.py +0 -46
  1193. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/android.py +0 -119
  1194. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py +0 -156
  1195. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/macos.py +0 -64
  1196. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.py +0 -181
  1197. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py +0 -4
  1198. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/windows.py +0 -182
  1199. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/progress/__init__.py +0 -189
  1200. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/progress/bar.py +0 -93
  1201. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/progress/colors.py +0 -79
  1202. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/progress/counter.py +0 -47
  1203. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/progress/spinner.py +0 -45
  1204. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/__init__.py +0 -83
  1205. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/__main__.py +0 -17
  1206. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/cmdline.py +0 -663
  1207. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/console.py +0 -70
  1208. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/filter.py +0 -71
  1209. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -937
  1210. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatter.py +0 -94
  1211. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -153
  1212. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -84
  1213. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/bbcode.py +0 -108
  1214. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/groff.py +0 -168
  1215. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/html.py +0 -983
  1216. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/img.py +0 -641
  1217. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/irc.py +0 -179
  1218. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/latex.py +0 -511
  1219. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/other.py +0 -161
  1220. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +0 -83
  1221. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/rtf.py +0 -146
  1222. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/svg.py +0 -188
  1223. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal.py +0 -127
  1224. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal256.py +0 -338
  1225. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py +0 -879
  1226. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -341
  1227. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -580
  1228. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/python.py +0 -1188
  1229. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/modeline.py +0 -43
  1230. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py +0 -69
  1231. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/regexopt.py +0 -91
  1232. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py +0 -104
  1233. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/sphinxext.py +0 -155
  1234. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/style.py +0 -197
  1235. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -93
  1236. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/token.py +0 -212
  1237. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/unistring.py +0 -153
  1238. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pygments/util.py +0 -308
  1239. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/__init__.py +0 -328
  1240. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/actions.py +0 -207
  1241. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/common.py +0 -424
  1242. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/core.py +0 -5789
  1243. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/diagram/__init__.py +0 -593
  1244. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/exceptions.py +0 -267
  1245. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/helpers.py +0 -1069
  1246. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/results.py +0 -760
  1247. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/testing.py +0 -331
  1248. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/unicode.py +0 -332
  1249. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/util.py +0 -235
  1250. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/__init__.py +0 -154
  1251. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/__version__.py +0 -14
  1252. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py +0 -42
  1253. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/adapters.py +0 -538
  1254. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/api.py +0 -159
  1255. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/auth.py +0 -305
  1256. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/certs.py +0 -18
  1257. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/compat.py +0 -77
  1258. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py +0 -549
  1259. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py +0 -133
  1260. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/help.py +0 -132
  1261. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py +0 -34
  1262. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/models.py +0 -973
  1263. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/sessions.py +0 -771
  1264. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py +0 -123
  1265. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/structures.py +0 -105
  1266. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/requests/utils.py +0 -1060
  1267. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py +0 -26
  1268. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py +0 -133
  1269. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py +0 -43
  1270. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py +0 -482
  1271. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py +0 -165
  1272. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py +0 -172
  1273. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py +0 -280
  1274. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py +0 -210
  1275. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_lru_cache.py +0 -34
  1276. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py +0 -848
  1277. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py +0 -72
  1278. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py +0 -55
  1279. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/align.py +0 -312
  1280. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py +0 -228
  1281. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/box.py +0 -483
  1282. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/cells.py +0 -147
  1283. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/color.py +0 -581
  1284. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/console.py +0 -2211
  1285. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/control.py +0 -175
  1286. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py +0 -183
  1287. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py +0 -6
  1288. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py +0 -54
  1289. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py +0 -89
  1290. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py +0 -147
  1291. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/json.py +0 -140
  1292. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py +0 -92
  1293. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/layout.py +0 -444
  1294. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/live.py +0 -365
  1295. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/logging.py +0 -268
  1296. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/markup.py +0 -244
  1297. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/measure.py +0 -149
  1298. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/pager.py +0 -34
  1299. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/panel.py +0 -250
  1300. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py +0 -903
  1301. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/progress.py +0 -1036
  1302. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/progress_bar.py +0 -216
  1303. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/prompt.py +0 -376
  1304. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/protocol.py +0 -42
  1305. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/repr.py +0 -151
  1306. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/rule.py +0 -115
  1307. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/scope.py +0 -86
  1308. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/segment.py +0 -720
  1309. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/spinner.py +0 -134
  1310. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/style.py +0 -785
  1311. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/syntax.py +0 -735
  1312. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/table.py +0 -968
  1313. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/tabulate.py +0 -51
  1314. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/terminal_theme.py +0 -55
  1315. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/text.py +0 -1282
  1316. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/theme.py +0 -112
  1317. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/traceback.py +0 -678
  1318. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/rich/tree.py +0 -249
  1319. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/__init__.py +0 -517
  1320. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_asyncio.py +0 -92
  1321. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_utils.py +0 -68
  1322. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/after.py +0 -46
  1323. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before.py +0 -41
  1324. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before_sleep.py +0 -58
  1325. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/retry.py +0 -213
  1326. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/stop.py +0 -96
  1327. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/tornadoweb.py +0 -59
  1328. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tenacity/wait.py +0 -191
  1329. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py +0 -6
  1330. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py +0 -703
  1331. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py +0 -83
  1332. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/typing_extensions.py +0 -2296
  1333. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py +0 -85
  1334. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py +0 -355
  1335. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py +0 -2
  1336. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py +0 -569
  1337. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -1113
  1338. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -314
  1339. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -130
  1340. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -511
  1341. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -922
  1342. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/six.py +0 -1077
  1343. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -539
  1344. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/request.py +0 -170
  1345. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py +0 -821
  1346. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py +0 -143
  1347. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py +0 -620
  1348. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -161
  1349. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -268
  1350. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py +0 -432
  1351. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py +0 -153
  1352. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/__init__.py +0 -3303
  1353. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py +0 -608
  1354. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py +0 -26
  1355. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py +0 -25
  1356. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +0 -301
  1357. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +0 -136
  1358. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_structures.py +0 -67
  1359. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/markers.py +0 -304
  1360. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/requirements.py +0 -146
  1361. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/specifiers.py +0 -828
  1362. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/tags.py +0 -484
  1363. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/utils.py +0 -136
  1364. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/version.py +0 -504
  1365. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing.py +0 -5742
  1366. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/extern/__init__.py +0 -73
  1367. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +0 -6
  1368. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/distribution.py +0 -213
  1369. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/sdist.py +0 -110
  1370. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/__init__.py +0 -33
  1371. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/conftest.py +0 -37
  1372. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_bdist.py +0 -59
  1373. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_commandline.py +0 -292
  1374. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_develop.py +0 -25
  1375. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_distribution.py +0 -644
  1376. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_index.py +0 -84
  1377. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_installed.py +0 -181
  1378. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_sdist.py +0 -136
  1379. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_utils.py +0 -163
  1380. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkginfo/tests/test_wheel.py +0 -104
  1381. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/readme_renderer/__main__.py +0 -62
  1382. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/readme_renderer/clean.py +0 -89
  1383. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/_win32_console.py +0 -662
  1384. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/align.py +0 -311
  1385. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/cells.py +0 -167
  1386. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/color.py +0 -621
  1387. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/console.py +0 -2633
  1388. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/default_styles.py +0 -190
  1389. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/highlighter.py +0 -232
  1390. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/live.py +0 -375
  1391. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/logging.py +0 -289
  1392. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/markdown.py +0 -800
  1393. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/padding.py +0 -141
  1394. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/panel.py +0 -312
  1395. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/pretty.py +0 -995
  1396. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/progress.py +0 -1699
  1397. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/progress_bar.py +0 -223
  1398. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/prompt.py +0 -375
  1399. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/segment.py +0 -738
  1400. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/syntax.py +0 -958
  1401. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/table.py +0 -1000
  1402. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/text.py +0 -1357
  1403. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/traceback.py +0 -753
  1404. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/rich/tree.py +0 -249
  1405. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/__init__.py +0 -242
  1406. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_deprecation_warning.py +0 -7
  1407. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/__init__.py +0 -24
  1408. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py +0 -561
  1409. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/archive_util.py +0 -256
  1410. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/bcppcompiler.py +0 -393
  1411. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py +0 -1123
  1412. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py +0 -403
  1413. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py +0 -31
  1414. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py +0 -143
  1415. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py +0 -123
  1416. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_msi.py +0 -749
  1417. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py +0 -579
  1418. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_wininst.py +0 -377
  1419. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/build.py +0 -157
  1420. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py +0 -209
  1421. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py +0 -755
  1422. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py +0 -392
  1423. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py +0 -152
  1424. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/check.py +0 -148
  1425. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/clean.py +0 -76
  1426. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/config.py +0 -344
  1427. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install.py +0 -721
  1428. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py +0 -79
  1429. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py +0 -84
  1430. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py +0 -47
  1431. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py +0 -217
  1432. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py +0 -60
  1433. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/py37compat.py +0 -30
  1434. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/register.py +0 -304
  1435. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py +0 -494
  1436. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/command/upload.py +0 -214
  1437. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/config.py +0 -130
  1438. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/core.py +0 -249
  1439. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py +0 -425
  1440. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py +0 -92
  1441. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py +0 -210
  1442. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/dist.py +0 -1257
  1443. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/errors.py +0 -97
  1444. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/extension.py +0 -240
  1445. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py +0 -457
  1446. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/file_util.py +0 -238
  1447. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/filelist.py +0 -355
  1448. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/log.py +0 -77
  1449. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/msvc9compiler.py +0 -788
  1450. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/msvccompiler.py +0 -643
  1451. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/py35compat.py +0 -19
  1452. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/py38compat.py +0 -7
  1453. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/spawn.py +0 -106
  1454. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py +0 -601
  1455. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/text_file.py +0 -286
  1456. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py +0 -325
  1457. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/util.py +0 -548
  1458. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/version.py +0 -363
  1459. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py +0 -169
  1460. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_imp.py +0 -82
  1461. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py +0 -4
  1462. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py +0 -3825
  1463. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py +0 -620
  1464. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/ordered_set.py +0 -488
  1465. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__about__.py +0 -26
  1466. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py +0 -25
  1467. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_manylinux.py +0 -301
  1468. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_musllinux.py +0 -136
  1469. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py +0 -67
  1470. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py +0 -304
  1471. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py +0 -146
  1472. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py +0 -828
  1473. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py +0 -484
  1474. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py +0 -136
  1475. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py +0 -504
  1476. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py +0 -5742
  1477. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/archive_util.py +0 -205
  1478. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/build_meta.py +0 -290
  1479. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/__init__.py +0 -8
  1480. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/alias.py +0 -78
  1481. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/bdist_egg.py +0 -456
  1482. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py +0 -40
  1483. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/build_clib.py +0 -101
  1484. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/build_ext.py +0 -328
  1485. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/build_py.py +0 -242
  1486. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/develop.py +0 -193
  1487. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/dist_info.py +0 -36
  1488. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/easy_install.py +0 -2354
  1489. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/egg_info.py +0 -755
  1490. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/install.py +0 -132
  1491. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/install_egg_info.py +0 -82
  1492. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/install_lib.py +0 -148
  1493. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/install_scripts.py +0 -69
  1494. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/py36compat.py +0 -134
  1495. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/register.py +0 -18
  1496. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/rotate.py +0 -64
  1497. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/saveopts.py +0 -22
  1498. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/sdist.py +0 -196
  1499. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/setopt.py +0 -149
  1500. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/test.py +0 -252
  1501. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/upload.py +0 -17
  1502. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/command/upload_docs.py +0 -202
  1503. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/config.py +0 -751
  1504. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/dep_util.py +0 -25
  1505. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/depends.py +0 -176
  1506. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/dist.py +0 -1156
  1507. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/errors.py +0 -40
  1508. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/extension.py +0 -55
  1509. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/extern/__init__.py +0 -73
  1510. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/glob.py +0 -167
  1511. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/installer.py +0 -104
  1512. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/launch.py +0 -36
  1513. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/monkey.py +0 -177
  1514. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/msvc.py +0 -1805
  1515. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/namespaces.py +0 -107
  1516. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/package_index.py +0 -1127
  1517. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/py34compat.py +0 -13
  1518. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/sandbox.py +0 -530
  1519. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/unicode_utils.py +0 -42
  1520. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/version.py +0 -6
  1521. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/wheel.py +0 -213
  1522. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/windows_support.py +0 -29
  1523. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/__init__.py +0 -44
  1524. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/repository.py +0 -250
  1525. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/twine/utils.py +0 -352
  1526. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/_request_methods.py +0 -279
  1527. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/_version.py +0 -4
  1528. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/connection.py +0 -929
  1529. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/contrib/pyopenssl.py +0 -548
  1530. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/http2.py +0 -230
  1531. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/connection.py +0 -137
  1532. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/request.py +0 -256
  1533. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/ssl_.py +0 -509
  1534. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/util/ssltransport.py +0 -279
  1535. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/__init__.py +0 -1
  1536. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/__main__.py +0 -19
  1537. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/bdist_wheel.py +0 -492
  1538. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/cli/__init__.py +0 -88
  1539. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/cli/convert.py +0 -269
  1540. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/cli/pack.py +0 -82
  1541. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/cli/unpack.py +0 -25
  1542. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/macosx_libfile.py +0 -428
  1543. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/metadata.py +0 -133
  1544. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/pkginfo.py +0 -43
  1545. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/util.py +0 -46
  1546. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/vendored/packaging/_typing.py +0 -48
  1547. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/vendored/packaging/tags.py +0 -866
  1548. testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/wheelfile.py +0 -181
  1549. testgres-1.10.2/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/app.py +0 -802
  1550. testgres-1.10.2/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/gdb.py +0 -346
  1551. testgres-1.10.2/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/init_helpers.py +0 -217
  1552. testgres-1.10.2/testgres/plugins/pg_probackup2/pg_probackup2/app.py +0 -809
  1553. testgres-1.10.2/testgres/plugins/pg_probackup2/pg_probackup2/gdb.py +0 -346
  1554. testgres-1.10.2/testgres/plugins/pg_probackup2/pg_probackup2/init_helpers.py +0 -218
  1555. testgres-1.10.2/testgres/plugins/pg_probackup2/setup.py +0 -18
  1556. testgres-1.10.2/testgres.egg-info/PKG-INFO +0 -226
  1557. testgres-1.10.2/testgres.egg-info/SOURCES.txt +0 -1689
  1558. testgres-1.10.2/tests/test_simple.py +0 -1063
  1559. testgres-1.10.2/tests/test_simple_remote.py +0 -995
  1560. {testgres-1.10.2 → testgres-1.10.3}/LICENSE +0 -0
  1561. {testgres-1.10.2 → testgres-1.10.3}/MANIFEST.in +0 -0
  1562. {testgres-1.10.2 → testgres-1.10.3}/setup.cfg +0 -0
  1563. {testgres-1.10.2 → testgres-1.10.3}/testgres/__init__.py +0 -0
  1564. {testgres-1.10.2 → testgres-1.10.3}/testgres/api.py +0 -0
  1565. {testgres-1.10.2 → testgres-1.10.3}/testgres/backup.py +0 -0
  1566. {testgres-1.10.2 → testgres-1.10.3}/testgres/cache.py +0 -0
  1567. {testgres-1.10.2 → testgres-1.10.3}/testgres/config.py +0 -0
  1568. {testgres-1.10.2 → testgres-1.10.3}/testgres/connection.py +0 -0
  1569. {testgres-1.10.2 → testgres-1.10.3}/testgres/consts.py +0 -0
  1570. {testgres-1.10.2 → testgres-1.10.3}/testgres/decorators.py +0 -0
  1571. {testgres-1.10.2 → testgres-1.10.3}/testgres/defaults.py +0 -0
  1572. {testgres-1.10.2 → testgres-1.10.3}/testgres/enums.py +0 -0
  1573. {testgres-1.10.2 → testgres-1.10.3}/testgres/exceptions.py +0 -0
  1574. {testgres-1.10.2 → testgres-1.10.3}/testgres/helpers/__init__.py +0 -0
  1575. {testgres-1.10.2 → testgres-1.10.3}/testgres/helpers/port_manager.py +0 -0
  1576. {testgres-1.10.2 → testgres-1.10.3}/testgres/logger.py +0 -0
  1577. {testgres-1.10.2 → testgres-1.10.3}/testgres/operations/__init__.py +0 -0
  1578. {testgres-1.10.2 → testgres-1.10.3}/testgres/operations/local_ops.py +0 -0
  1579. {testgres-1.10.2 → testgres-1.10.3}/testgres/operations/os_ops.py +0 -0
  1580. {testgres-1.10.2 → testgres-1.10.3}/testgres/operations/remote_ops.py +0 -0
  1581. {testgres-1.10.2 → testgres-1.10.3}/testgres/plugins/__init__.py +0 -0
  1582. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/_distutils_hack/override.py +0 -0
  1583. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/certifi/__main__.py +0 -0
  1584. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/certifi/core.py +0 -0
  1585. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cffi/_imp_emulation.py +0 -0
  1586. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cffi/backend_ctypes.py +0 -0
  1587. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cffi/error.py +0 -0
  1588. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cffi/ffiplatform.py +0 -0
  1589. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cffi/lock.py +0 -0
  1590. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cffi/pkgconfig.py +0 -0
  1591. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cffi/setuptools_ext.py +0 -0
  1592. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cffi/verifier.py +0 -0
  1593. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/charset_normalizer/__init__.py +0 -0
  1594. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/charset_normalizer/__main__.py +0 -0
  1595. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/charset_normalizer/cd.py +0 -0
  1596. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/charset_normalizer/cli/__init__.py +0 -0
  1597. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/charset_normalizer/utils.py +0 -0
  1598. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/exceptions.py +0 -0
  1599. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/__init__.py +0 -0
  1600. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/backends/__init__.py +0 -0
  1601. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/backends/openssl/__init__.py +0 -0
  1602. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/bindings/__init__.py +0 -0
  1603. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/bindings/openssl/__init__.py +0 -0
  1604. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/__init__.py +0 -0
  1605. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/_asymmetric.py +0 -0
  1606. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/_serialization.py +0 -0
  1607. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py +0 -0
  1608. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py +0 -0
  1609. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py +0 -0
  1610. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py +0 -0
  1611. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py +0 -0
  1612. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py +0 -0
  1613. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/asymmetric/types.py +0 -0
  1614. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py +0 -0
  1615. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py +0 -0
  1616. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py +0 -0
  1617. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/cmac.py +0 -0
  1618. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/constant_time.py +0 -0
  1619. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/hmac.py +0 -0
  1620. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/kdf/__init__.py +0 -0
  1621. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/kdf/concatkdf.py +0 -0
  1622. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/kdf/hkdf.py +0 -0
  1623. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/kdf/x963kdf.py +0 -0
  1624. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/poly1305.py +0 -0
  1625. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/serialization/base.py +0 -0
  1626. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/hazmat/primitives/twofactor/__init__.py +0 -0
  1627. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/cryptography/x509/general_name.py +0 -0
  1628. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/__init__.py +0 -0
  1629. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/__main__.py +0 -0
  1630. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/core.py +0 -0
  1631. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/examples.py +0 -0
  1632. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/frontend.py +0 -0
  1633. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/io.py +0 -0
  1634. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/__init__.py +0 -0
  1635. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/af.py +0 -0
  1636. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/ar.py +0 -0
  1637. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/ca.py +0 -0
  1638. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/cs.py +0 -0
  1639. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/da.py +0 -0
  1640. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/de.py +0 -0
  1641. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/en.py +0 -0
  1642. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/eo.py +0 -0
  1643. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/es.py +0 -0
  1644. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/fa.py +0 -0
  1645. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/fi.py +0 -0
  1646. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/fr.py +0 -0
  1647. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/gl.py +0 -0
  1648. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/he.py +0 -0
  1649. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/it.py +0 -0
  1650. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/ja.py +0 -0
  1651. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/ka.py +0 -0
  1652. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/ko.py +0 -0
  1653. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/lt.py +0 -0
  1654. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/lv.py +0 -0
  1655. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/nl.py +0 -0
  1656. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/pl.py +0 -0
  1657. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/pt_br.py +0 -0
  1658. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/ru.py +0 -0
  1659. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/sk.py +0 -0
  1660. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/sv.py +0 -0
  1661. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/uk.py +0 -0
  1662. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/zh_cn.py +0 -0
  1663. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/languages/zh_tw.py +0 -0
  1664. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/nodes.py +0 -0
  1665. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/__init__.py +0 -0
  1666. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/commonmark_wrapper.py +0 -0
  1667. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/null.py +0 -0
  1668. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/recommonmark_wrapper.py +0 -0
  1669. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/__init__.py +0 -0
  1670. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/directives/__init__.py +0 -0
  1671. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/directives/admonitions.py +0 -0
  1672. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/directives/body.py +0 -0
  1673. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/directives/html.py +0 -0
  1674. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/directives/images.py +0 -0
  1675. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/directives/misc.py +0 -0
  1676. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/directives/parts.py +0 -0
  1677. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/directives/references.py +0 -0
  1678. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/directives/tables.py +0 -0
  1679. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/__init__.py +0 -0
  1680. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/af.py +0 -0
  1681. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/ar.py +0 -0
  1682. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/ca.py +0 -0
  1683. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/cs.py +0 -0
  1684. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/da.py +0 -0
  1685. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/de.py +0 -0
  1686. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/en.py +0 -0
  1687. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/eo.py +0 -0
  1688. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/es.py +0 -0
  1689. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/fa.py +0 -0
  1690. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/fi.py +0 -0
  1691. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/fr.py +0 -0
  1692. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/gl.py +0 -0
  1693. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/he.py +0 -0
  1694. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/it.py +0 -0
  1695. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/ja.py +0 -0
  1696. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/ka.py +0 -0
  1697. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/ko.py +0 -0
  1698. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/lt.py +0 -0
  1699. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/lv.py +0 -0
  1700. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/nl.py +0 -0
  1701. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/pl.py +0 -0
  1702. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/pt_br.py +0 -0
  1703. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/ru.py +0 -0
  1704. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/sk.py +0 -0
  1705. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/sv.py +0 -0
  1706. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/uk.py +0 -0
  1707. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/zh_cn.py +0 -0
  1708. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/languages/zh_tw.py +0 -0
  1709. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/roles.py +0 -0
  1710. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/states.py +0 -0
  1711. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/parsers/rst/tableparser.py +0 -0
  1712. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/readers/__init__.py +0 -0
  1713. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/readers/doctree.py +0 -0
  1714. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/readers/pep.py +0 -0
  1715. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/readers/standalone.py +0 -0
  1716. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/statemachine.py +0 -0
  1717. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/transforms/__init__.py +0 -0
  1718. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/transforms/components.py +0 -0
  1719. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/transforms/frontmatter.py +0 -0
  1720. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/transforms/misc.py +0 -0
  1721. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/transforms/parts.py +0 -0
  1722. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/transforms/peps.py +0 -0
  1723. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/transforms/references.py +0 -0
  1724. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/transforms/universal.py +0 -0
  1725. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/transforms/writer_aux.py +0 -0
  1726. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/__init__.py +0 -0
  1727. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/code_analyzer.py +0 -0
  1728. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/error_reporting.py +0 -0
  1729. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/math/__init__.py +0 -0
  1730. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/math/latex2mathml.py +0 -0
  1731. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/math/math2html.py +0 -0
  1732. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/math/mathalphabet2unichar.py +0 -0
  1733. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/math/mathml_elements.py +0 -0
  1734. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/math/tex2mathml_extern.py +0 -0
  1735. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/math/tex2unichar.py +0 -0
  1736. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/math/unichar2tex.py +0 -0
  1737. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/punctuation_chars.py +0 -0
  1738. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/roman.py +0 -0
  1739. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/smartquotes.py +0 -0
  1740. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/utils/urischemes.py +0 -0
  1741. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/__init__.py +0 -0
  1742. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/_html_base.py +0 -0
  1743. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/docutils_xml.py +0 -0
  1744. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/html4css1/__init__.py +0 -0
  1745. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/html5_polyglot/__init__.py +0 -0
  1746. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/latex2e/__init__.py +0 -0
  1747. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/manpage.py +0 -0
  1748. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/null.py +0 -0
  1749. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/odf_odt/__init__.py +0 -0
  1750. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/odf_odt/prepstyles.py +0 -0
  1751. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/odf_odt/pygmentsformatter.py +0 -0
  1752. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/pep_html/__init__.py +0 -0
  1753. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/pseudoxml.py +0 -0
  1754. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/s5_html/__init__.py +0 -0
  1755. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/docutils/writers/xetex/__init__.py +0 -0
  1756. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/importlib_metadata/_collections.py +0 -0
  1757. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/importlib_metadata/_text.py +0 -0
  1758. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/backports/tarfile → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/importlib_metadata}/compat/__init__.py +0 -0
  1759. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/importlib_metadata/compat/py311.py +0 -0
  1760. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/importlib_metadata/compat/py39.py +0 -0
  1761. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/importlib_metadata/diagnose.py +0 -0
  1762. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/importlib_metadata/compat → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jaraco/classes}/__init__.py +0 -0
  1763. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jaraco/classes/ancestry.py +0 -0
  1764. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jaraco/classes/meta.py +0 -0
  1765. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jaraco/classes/properties.py +0 -0
  1766. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/__init__.py +0 -0
  1767. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/auth.py +0 -0
  1768. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/bindgen.py +0 -0
  1769. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/bus.py +0 -0
  1770. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/bus_messages.py +0 -0
  1771. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/fds.py +0 -0
  1772. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/__init__.py +0 -0
  1773. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/asyncio.py +0 -0
  1774. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/blocking.py +0 -0
  1775. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/common.py +0 -0
  1776. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jaraco/classes → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/tests}/__init__.py +0 -0
  1777. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/tests/conftest.py +0 -0
  1778. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/tests/test_asyncio.py +0 -0
  1779. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/tests/test_blocking.py +0 -0
  1780. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/tests/test_threading.py +0 -0
  1781. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/tests/test_trio.py +0 -0
  1782. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/tests/utils.py +0 -0
  1783. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/threading.py +0 -0
  1784. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/io/trio.py +0 -0
  1785. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/low_level.py +0 -0
  1786. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/routing.py +0 -0
  1787. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/io → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney}/tests/__init__.py +0 -0
  1788. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/tests/test_auth.py +0 -0
  1789. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/tests/test_bindgen.py +0 -0
  1790. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/tests/test_bus.py +0 -0
  1791. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/tests/test_bus_messages.py +0 -0
  1792. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/tests/test_fds.py +0 -0
  1793. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/tests/test_low_level.py +0 -0
  1794. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/tests/test_routing.py +0 -0
  1795. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/jeepney/wrappers.py +0 -0
  1796. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/__init__.py +0 -0
  1797. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/__main__.py +0 -0
  1798. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/backends/SecretService.py +0 -0
  1799. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/jeepney/tests → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends}/__init__.py +0 -0
  1800. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/backends/chainer.py +0 -0
  1801. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/backends/kwallet.py +0 -0
  1802. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/backends/macOS/__init__.py +0 -0
  1803. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/backends/macOS/api.py +0 -0
  1804. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/compat/__init__.py +0 -0
  1805. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/compat/properties.py +0 -0
  1806. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/compat/py38.py +0 -0
  1807. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/completion.py +0 -0
  1808. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/devpi_client.py +0 -0
  1809. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/errors.py +0 -0
  1810. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/http.py +0 -0
  1811. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/backends → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/testing}/__init__.py +0 -0
  1812. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/testing/util.py +0 -0
  1813. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/util/__init__.py +0 -0
  1814. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/keyring/util/platform_.py +0 -0
  1815. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/__init__.py +0 -0
  1816. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/_compat.py +0 -0
  1817. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/_punycode.py +0 -0
  1818. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/keyring/testing → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/cli}/__init__.py +0 -0
  1819. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/cli/parse.py +0 -0
  1820. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/cli → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/common}/__init__.py +0 -0
  1821. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/common/entities.py +0 -0
  1822. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/common/html_blocks.py +0 -0
  1823. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/common/html_re.py +0 -0
  1824. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/common/normalize_url.py +0 -0
  1825. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/common/utils.py +0 -0
  1826. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/helpers/__init__.py +0 -0
  1827. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/helpers/parse_link_destination.py +0 -0
  1828. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/helpers/parse_link_label.py +0 -0
  1829. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/helpers/parse_link_title.py +0 -0
  1830. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/main.py +0 -0
  1831. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/parser_block.py +0 -0
  1832. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/parser_core.py +0 -0
  1833. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/parser_inline.py +0 -0
  1834. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/presets/__init__.py +0 -0
  1835. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/presets/commonmark.py +0 -0
  1836. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/presets/default.py +0 -0
  1837. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/presets/zero.py +0 -0
  1838. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/renderer.py +0 -0
  1839. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/ruler.py +0 -0
  1840. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/__init__.py +0 -0
  1841. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/blockquote.py +0 -0
  1842. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/code.py +0 -0
  1843. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/fence.py +0 -0
  1844. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/heading.py +0 -0
  1845. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/hr.py +0 -0
  1846. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/html_block.py +0 -0
  1847. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/lheading.py +0 -0
  1848. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/list.py +0 -0
  1849. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/paragraph.py +0 -0
  1850. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/reference.py +0 -0
  1851. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/state_block.py +0 -0
  1852. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_block/table.py +0 -0
  1853. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_core/__init__.py +0 -0
  1854. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_core/block.py +0 -0
  1855. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_core/inline.py +0 -0
  1856. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_core/linkify.py +0 -0
  1857. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_core/normalize.py +0 -0
  1858. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_core/replacements.py +0 -0
  1859. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_core/smartquotes.py +0 -0
  1860. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_core/state_core.py +0 -0
  1861. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_core/text_join.py +0 -0
  1862. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/__init__.py +0 -0
  1863. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/autolink.py +0 -0
  1864. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/backticks.py +0 -0
  1865. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/balance_pairs.py +0 -0
  1866. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/emphasis.py +0 -0
  1867. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/entity.py +0 -0
  1868. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/escape.py +0 -0
  1869. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/fragments_join.py +0 -0
  1870. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/html_inline.py +0 -0
  1871. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/image.py +0 -0
  1872. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/link.py +0 -0
  1873. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/linkify.py +0 -0
  1874. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/newline.py +0 -0
  1875. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/state_inline.py +0 -0
  1876. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/strikethrough.py +0 -0
  1877. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/rules_inline/text.py +0 -0
  1878. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/token.py +0 -0
  1879. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/tree.py +0 -0
  1880. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/markdown_it/utils.py +0 -0
  1881. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/mdurl/__init__.py +0 -0
  1882. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/mdurl/_decode.py +0 -0
  1883. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/mdurl/_encode.py +0 -0
  1884. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/mdurl/_format.py +0 -0
  1885. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/mdurl/_parse.py +0 -0
  1886. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/mdurl/_url.py +0 -0
  1887. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/nh3/__init__.py +0 -0
  1888. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/cli/__init__.py +0 -0
  1889. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/cli/status_codes.py +0 -0
  1890. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/commands/hash.py +0 -0
  1891. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/commands/help.py +0 -0
  1892. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/commands/search.py +0 -0
  1893. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/distributions/__init__.py +0 -0
  1894. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/index/__init__.py +0 -0
  1895. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/main.py +0 -0
  1896. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/models/__init__.py +0 -0
  1897. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/models/index.py +0 -0
  1898. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/models/scheme.py +0 -0
  1899. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/models/selection_prefs.py +0 -0
  1900. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/network/__init__.py +0 -0
  1901. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/markdown_it/common → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations}/__init__.py +0 -0
  1902. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build}/__init__.py +0 -0
  1903. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -0
  1904. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -0
  1905. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/operations/install/__init__.py +0 -0
  1906. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/operations/build → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution}/__init__.py +0 -0
  1907. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/resolution/base.py +0 -0
  1908. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy}/__init__.py +0 -0
  1909. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib}/__init__.py +0 -0
  1910. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -0
  1911. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils}/__init__.py +0 -0
  1912. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/utils/_log.py +0 -0
  1913. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/utils/appdirs.py +0 -0
  1914. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/utils/compat.py +0 -0
  1915. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/utils/compatibility_tags.py +0 -0
  1916. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/utils/datetime.py +0 -0
  1917. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/utils/deprecation.py +0 -0
  1918. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -0
  1919. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/utils/filetypes.py +0 -0
  1920. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/utils/models.py +0 -0
  1921. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/utils/packaging.py +0 -0
  1922. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/utils/urls.py +0 -0
  1923. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_internal/vcs/__init__.py +0 -0
  1924. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/certifi/__main__.py +0 -0
  1925. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_internal/utils → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli}/__init__.py +0 -0
  1926. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/chardet/metadata/__init__.py +0 -0
  1927. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/colorama/ansi.py +0 -0
  1928. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/distlib/resources.py +0 -0
  1929. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/idna/__init__.py +0 -0
  1930. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/idna/codec.py +0 -0
  1931. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/idna/compat.py +0 -0
  1932. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/idna/intranges.py +0 -0
  1933. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/msgpack/exceptions.py +0 -0
  1934. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/packaging/__about__.py +0 -0
  1935. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/packaging/__init__.py +0 -0
  1936. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/packaging/_manylinux.py +0 -0
  1937. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/packaging/_musllinux.py +0 -0
  1938. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/packaging/_structures.py +0 -0
  1939. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/packaging/markers.py +0 -0
  1940. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/packaging/requirements.py +0 -0
  1941. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/packaging/specifiers.py +0 -0
  1942. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/packaging/tags.py +0 -0
  1943. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/packaging/utils.py +0 -0
  1944. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/packaging/version.py +0 -0
  1945. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/requests/_internal_utils.py +0 -0
  1946. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/requests/hooks.py +0 -0
  1947. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/requests/packages.py +0 -0
  1948. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/requests/structures.py +0 -0
  1949. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat}/__init__.py +0 -0
  1950. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +0 -0
  1951. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/_cell_widths.py +0 -0
  1952. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -0
  1953. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -0
  1954. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/_extension.py +0 -0
  1955. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/_fileno.py +0 -0
  1956. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/_inspect.py +0 -0
  1957. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/_log_render.py +0 -0
  1958. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/_loop.py +0 -0
  1959. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/_null_file.py +0 -0
  1960. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/_palettes.py +0 -0
  1961. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/_pick.py +0 -0
  1962. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/_ratio.py +0 -0
  1963. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/_spinners.py +0 -0
  1964. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/_stack.py +0 -0
  1965. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/_timer.py +0 -0
  1966. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/abc.py +0 -0
  1967. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/ansi.py +0 -0
  1968. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/bar.py +0 -0
  1969. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/color_triplet.py +0 -0
  1970. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/columns.py +0 -0
  1971. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/constrain.py +0 -0
  1972. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/containers.py +0 -0
  1973. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/emoji.py +0 -0
  1974. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/errors.py +0 -0
  1975. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/file_proxy.py +0 -0
  1976. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/filesize.py +0 -0
  1977. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/live_render.py +0 -0
  1978. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/measure.py +0 -0
  1979. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/padding.py +0 -0
  1980. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/pager.py +0 -0
  1981. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/palette.py +0 -0
  1982. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/region.py +0 -0
  1983. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/screen.py +0 -0
  1984. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/spinner.py +0 -0
  1985. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/status.py +0 -0
  1986. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/style.py +0 -0
  1987. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/styled.py +0 -0
  1988. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/terminal_theme.py +0 -0
  1989. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor}/rich/theme.py +0 -0
  1990. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/rich/themes.py +0 -0
  1991. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/six.py +0 -0
  1992. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/tenacity/nap.py +0 -0
  1993. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib}/__init__.py +0 -0
  1994. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -0
  1995. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport}/__init__.py +0 -0
  1996. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -0
  1997. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -0
  1998. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -0
  1999. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/exceptions.py +0 -0
  2000. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/fields.py +0 -0
  2001. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/filepost.py +0 -0
  2002. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages}/__init__.py +0 -0
  2003. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports}/__init__.py +0 -0
  2004. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -0
  2005. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -0
  2006. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/util/connection.py +0 -0
  2007. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -0
  2008. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/util/queue.py +0 -0
  2009. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/util/response.py +0 -0
  2010. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -0
  2011. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -0
  2012. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/webencodings/__init__.py +0 -0
  2013. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/webencodings/labels.py +0 -0
  2014. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/webencodings/mklabels.py +0 -0
  2015. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/webencodings/tests.py +0 -0
  2016. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pip/_vendor/webencodings/x_user_defined.py +0 -0
  2017. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests}/__init__.py +0 -0
  2018. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pkginfo/__init__.py +0 -0
  2019. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pkginfo/bdist.py +0 -0
  2020. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pkginfo/commandline.py +0 -0
  2021. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pkginfo/develop.py +0 -0
  2022. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pkginfo/index.py +0 -0
  2023. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pkginfo/installed.py +0 -0
  2024. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pkginfo/utils.py +0 -0
  2025. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pkginfo/wheel.py +0 -0
  2026. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/__init__.py +0 -0
  2027. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/_ast_gen.py +0 -0
  2028. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/_build_tables.py +0 -0
  2029. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/ast_transforms.py +0 -0
  2030. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/c_ast.py +0 -0
  2031. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/c_generator.py +0 -0
  2032. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/c_lexer.py +0 -0
  2033. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/c_parser.py +0 -0
  2034. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/lextab.py +0 -0
  2035. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/ply/__init__.py +0 -0
  2036. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/ply/cpp.py +0 -0
  2037. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/ply/ctokens.py +0 -0
  2038. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/ply/lex.py +0 -0
  2039. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/ply/yacc.py +0 -0
  2040. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/ply/ygen.py +0 -0
  2041. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/plyparser.py +0 -0
  2042. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pycparser/yacctab.py +0 -0
  2043. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/__init__.py +0 -0
  2044. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/__main__.py +0 -0
  2045. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/cmdline.py +0 -0
  2046. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/console.py +0 -0
  2047. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/filter.py +0 -0
  2048. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/filters/__init__.py +0 -0
  2049. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatter.py +0 -0
  2050. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/__init__.py +0 -0
  2051. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/bbcode.py +0 -0
  2052. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/groff.py +0 -0
  2053. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/html.py +0 -0
  2054. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/img.py +0 -0
  2055. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/irc.py +0 -0
  2056. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/latex.py +0 -0
  2057. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/other.py +0 -0
  2058. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/pangomarkup.py +0 -0
  2059. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/rtf.py +0 -0
  2060. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/svg.py +0 -0
  2061. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/terminal.py +0 -0
  2062. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/formatters/terminal256.py +0 -0
  2063. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexer.py +0 -0
  2064. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/__init__.py +0 -0
  2065. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_ada_builtins.py +0 -0
  2066. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_asy_builtins.py +0 -0
  2067. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_cl_builtins.py +0 -0
  2068. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_cocoa_builtins.py +0 -0
  2069. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_csound_builtins.py +0 -0
  2070. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_css_builtins.py +0 -0
  2071. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_julia_builtins.py +0 -0
  2072. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_lasso_builtins.py +0 -0
  2073. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_lilypond_builtins.py +0 -0
  2074. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_lua_builtins.py +0 -0
  2075. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_luau_builtins.py +0 -0
  2076. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_mapping.py +0 -0
  2077. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_mql_builtins.py +0 -0
  2078. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_mysql_builtins.py +0 -0
  2079. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_openedge_builtins.py +0 -0
  2080. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_php_builtins.py +0 -0
  2081. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_postgres_builtins.py +0 -0
  2082. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_qlik_builtins.py +0 -0
  2083. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_scheme_builtins.py +0 -0
  2084. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_scilab_builtins.py +0 -0
  2085. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_sourcemod_builtins.py +0 -0
  2086. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_stan_builtins.py +0 -0
  2087. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_stata_builtins.py +0 -0
  2088. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_tsql_builtins.py +0 -0
  2089. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_usd_builtins.py +0 -0
  2090. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_vbscript_builtins.py +0 -0
  2091. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/_vim_builtins.py +0 -0
  2092. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/actionscript.py +0 -0
  2093. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ada.py +0 -0
  2094. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/agile.py +0 -0
  2095. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/algebra.py +0 -0
  2096. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ambient.py +0 -0
  2097. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/amdgpu.py +0 -0
  2098. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ampl.py +0 -0
  2099. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/apdlexer.py +0 -0
  2100. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/apl.py +0 -0
  2101. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/archetype.py +0 -0
  2102. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/arrow.py +0 -0
  2103. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/arturo.py +0 -0
  2104. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/asc.py +0 -0
  2105. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/asm.py +0 -0
  2106. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/asn1.py +0 -0
  2107. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/automation.py +0 -0
  2108. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/bare.py +0 -0
  2109. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/basic.py +0 -0
  2110. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/bdd.py +0 -0
  2111. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/berry.py +0 -0
  2112. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/bibtex.py +0 -0
  2113. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/blueprint.py +0 -0
  2114. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/boa.py +0 -0
  2115. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/bqn.py +0 -0
  2116. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/business.py +0 -0
  2117. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/c_cpp.py +0 -0
  2118. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/c_like.py +0 -0
  2119. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/capnproto.py +0 -0
  2120. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/carbon.py +0 -0
  2121. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/cddl.py +0 -0
  2122. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/chapel.py +0 -0
  2123. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/clean.py +0 -0
  2124. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/comal.py +0 -0
  2125. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/compiled.py +0 -0
  2126. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/configs.py +0 -0
  2127. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/console.py +0 -0
  2128. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/cplint.py +0 -0
  2129. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/crystal.py +0 -0
  2130. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/csound.py +0 -0
  2131. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/css.py +0 -0
  2132. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/d.py +0 -0
  2133. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/dalvik.py +0 -0
  2134. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/data.py +0 -0
  2135. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/dax.py +0 -0
  2136. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/devicetree.py +0 -0
  2137. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/diff.py +0 -0
  2138. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/dns.py +0 -0
  2139. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/dotnet.py +0 -0
  2140. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/dsls.py +0 -0
  2141. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/dylan.py +0 -0
  2142. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ecl.py +0 -0
  2143. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/eiffel.py +0 -0
  2144. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/elm.py +0 -0
  2145. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/elpi.py +0 -0
  2146. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/email.py +0 -0
  2147. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/erlang.py +0 -0
  2148. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/esoteric.py +0 -0
  2149. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ezhil.py +0 -0
  2150. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/factor.py +0 -0
  2151. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/fantom.py +0 -0
  2152. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/felix.py +0 -0
  2153. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/fift.py +0 -0
  2154. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/floscript.py +0 -0
  2155. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/forth.py +0 -0
  2156. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/fortran.py +0 -0
  2157. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/foxpro.py +0 -0
  2158. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/freefem.py +0 -0
  2159. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/func.py +0 -0
  2160. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/functional.py +0 -0
  2161. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/futhark.py +0 -0
  2162. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/gcodelexer.py +0 -0
  2163. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/gdscript.py +0 -0
  2164. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/go.py +0 -0
  2165. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/grammar_notation.py +0 -0
  2166. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/graph.py +0 -0
  2167. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/graphics.py +0 -0
  2168. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/graphql.py +0 -0
  2169. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/graphviz.py +0 -0
  2170. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/gsql.py +0 -0
  2171. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/haskell.py +0 -0
  2172. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/haxe.py +0 -0
  2173. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/hdl.py +0 -0
  2174. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/hexdump.py +0 -0
  2175. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/html.py +0 -0
  2176. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/idl.py +0 -0
  2177. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/igor.py +0 -0
  2178. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/inferno.py +0 -0
  2179. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/installers.py +0 -0
  2180. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/int_fiction.py +0 -0
  2181. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/iolang.py +0 -0
  2182. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/j.py +0 -0
  2183. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/javascript.py +0 -0
  2184. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/jmespath.py +0 -0
  2185. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/jslt.py +0 -0
  2186. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/jsonnet.py +0 -0
  2187. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/jsx.py +0 -0
  2188. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/julia.py +0 -0
  2189. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/jvm.py +0 -0
  2190. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/kuin.py +0 -0
  2191. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/kusto.py +0 -0
  2192. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ldap.py +0 -0
  2193. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/lean.py +0 -0
  2194. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/lilypond.py +0 -0
  2195. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/lisp.py +0 -0
  2196. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/macaulay2.py +0 -0
  2197. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/make.py +0 -0
  2198. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/markup.py +0 -0
  2199. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/math.py +0 -0
  2200. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/matlab.py +0 -0
  2201. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/maxima.py +0 -0
  2202. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/meson.py +0 -0
  2203. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/mime.py +0 -0
  2204. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/minecraft.py +0 -0
  2205. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/mips.py +0 -0
  2206. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ml.py +0 -0
  2207. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/modeling.py +0 -0
  2208. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/modula2.py +0 -0
  2209. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/mojo.py +0 -0
  2210. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/monte.py +0 -0
  2211. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/mosel.py +0 -0
  2212. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ncl.py +0 -0
  2213. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/nimrod.py +0 -0
  2214. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/nit.py +0 -0
  2215. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/nix.py +0 -0
  2216. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/oberon.py +0 -0
  2217. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/objective.py +0 -0
  2218. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ooc.py +0 -0
  2219. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/openscad.py +0 -0
  2220. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/other.py +0 -0
  2221. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/parasail.py +0 -0
  2222. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/parsers.py +0 -0
  2223. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/pascal.py +0 -0
  2224. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/pawn.py +0 -0
  2225. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/perl.py +0 -0
  2226. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/phix.py +0 -0
  2227. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/php.py +0 -0
  2228. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/pointless.py +0 -0
  2229. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/pony.py +0 -0
  2230. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/praat.py +0 -0
  2231. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/procfile.py +0 -0
  2232. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/prolog.py +0 -0
  2233. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/promql.py +0 -0
  2234. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/prql.py +0 -0
  2235. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ptx.py +0 -0
  2236. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/python.py +0 -0
  2237. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/q.py +0 -0
  2238. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/qlik.py +0 -0
  2239. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/qvt.py +0 -0
  2240. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/r.py +0 -0
  2241. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/rdf.py +0 -0
  2242. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/rebol.py +0 -0
  2243. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/resource.py +0 -0
  2244. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ride.py +0 -0
  2245. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/rita.py +0 -0
  2246. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/rnc.py +0 -0
  2247. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/roboconf.py +0 -0
  2248. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/robotframework.py +0 -0
  2249. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ruby.py +0 -0
  2250. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/rust.py +0 -0
  2251. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/sas.py +0 -0
  2252. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/savi.py +0 -0
  2253. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/scdoc.py +0 -0
  2254. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/scripting.py +0 -0
  2255. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/sgf.py +0 -0
  2256. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/shell.py +0 -0
  2257. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/sieve.py +0 -0
  2258. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/slash.py +0 -0
  2259. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/smalltalk.py +0 -0
  2260. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/smithy.py +0 -0
  2261. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/smv.py +0 -0
  2262. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/snobol.py +0 -0
  2263. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/solidity.py +0 -0
  2264. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/soong.py +0 -0
  2265. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/sophia.py +0 -0
  2266. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/special.py +0 -0
  2267. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/spice.py +0 -0
  2268. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/sql.py +0 -0
  2269. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/srcinfo.py +0 -0
  2270. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/stata.py +0 -0
  2271. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/supercollider.py +0 -0
  2272. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/tact.py +0 -0
  2273. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/tal.py +0 -0
  2274. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/tcl.py +0 -0
  2275. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/teal.py +0 -0
  2276. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/templates.py +0 -0
  2277. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/teraterm.py +0 -0
  2278. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/testing.py +0 -0
  2279. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/text.py +0 -0
  2280. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/textedit.py +0 -0
  2281. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/textfmts.py +0 -0
  2282. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/theorem.py +0 -0
  2283. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/thingsdb.py +0 -0
  2284. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/tlb.py +0 -0
  2285. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/tls.py +0 -0
  2286. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/tnt.py +0 -0
  2287. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/trafficscript.py +0 -0
  2288. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/typoscript.py +0 -0
  2289. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/typst.py +0 -0
  2290. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/ul4.py +0 -0
  2291. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/unicon.py +0 -0
  2292. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/urbi.py +0 -0
  2293. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/usd.py +0 -0
  2294. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/varnish.py +0 -0
  2295. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/verification.py +0 -0
  2296. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/verifpal.py +0 -0
  2297. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/vip.py +0 -0
  2298. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/vyper.py +0 -0
  2299. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/web.py +0 -0
  2300. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/webassembly.py +0 -0
  2301. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/webidl.py +0 -0
  2302. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/webmisc.py +0 -0
  2303. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/wgsl.py +0 -0
  2304. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/whiley.py +0 -0
  2305. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/wowtoc.py +0 -0
  2306. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/wren.py +0 -0
  2307. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/x10.py +0 -0
  2308. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/xorg.py +0 -0
  2309. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/yang.py +0 -0
  2310. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/yara.py +0 -0
  2311. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/lexers/zig.py +0 -0
  2312. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/modeline.py +0 -0
  2313. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/plugin.py +0 -0
  2314. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/regexopt.py +0 -0
  2315. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/scanner.py +0 -0
  2316. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/sphinxext.py +0 -0
  2317. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/style.py +0 -0
  2318. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/__init__.py +0 -0
  2319. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/_mapping.py +0 -0
  2320. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/abap.py +0 -0
  2321. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/algol.py +0 -0
  2322. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/algol_nu.py +0 -0
  2323. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/arduino.py +0 -0
  2324. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/autumn.py +0 -0
  2325. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/borland.py +0 -0
  2326. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/bw.py +0 -0
  2327. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/coffee.py +0 -0
  2328. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/colorful.py +0 -0
  2329. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/default.py +0 -0
  2330. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/dracula.py +0 -0
  2331. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/emacs.py +0 -0
  2332. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/friendly.py +0 -0
  2333. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/friendly_grayscale.py +0 -0
  2334. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/fruity.py +0 -0
  2335. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/gh_dark.py +0 -0
  2336. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/gruvbox.py +0 -0
  2337. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/igor.py +0 -0
  2338. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/inkpot.py +0 -0
  2339. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/lightbulb.py +0 -0
  2340. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/lilypond.py +0 -0
  2341. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/lovelace.py +0 -0
  2342. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/manni.py +0 -0
  2343. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/material.py +0 -0
  2344. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/monokai.py +0 -0
  2345. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/murphy.py +0 -0
  2346. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/native.py +0 -0
  2347. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/nord.py +0 -0
  2348. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/onedark.py +0 -0
  2349. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/paraiso_dark.py +0 -0
  2350. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/paraiso_light.py +0 -0
  2351. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/pastie.py +0 -0
  2352. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/perldoc.py +0 -0
  2353. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/rainbow_dash.py +0 -0
  2354. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/rrt.py +0 -0
  2355. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/sas.py +0 -0
  2356. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/solarized.py +0 -0
  2357. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/staroffice.py +0 -0
  2358. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/stata_dark.py +0 -0
  2359. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/stata_light.py +0 -0
  2360. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/tango.py +0 -0
  2361. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/trac.py +0 -0
  2362. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/vim.py +0 -0
  2363. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/vs.py +0 -0
  2364. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/xcode.py +0 -0
  2365. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/styles/zenburn.py +0 -0
  2366. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/token.py +0 -0
  2367. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/unistring.py +0 -0
  2368. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/pygments/util.py +0 -0
  2369. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/readme_renderer/__init__.py +0 -0
  2370. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/readme_renderer/markdown.py +0 -0
  2371. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/readme_renderer/rst.py +0 -0
  2372. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/readme_renderer/txt.py +0 -0
  2373. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/__init__.py +0 -0
  2374. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/__version__.py +0 -0
  2375. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/adapters.py +0 -0
  2376. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/api.py +0 -0
  2377. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/auth.py +0 -0
  2378. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/certs.py +0 -0
  2379. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/compat.py +0 -0
  2380. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/cookies.py +0 -0
  2381. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/exceptions.py +0 -0
  2382. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/help.py +0 -0
  2383. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/models.py +0 -0
  2384. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/packages.py +0 -0
  2385. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/sessions.py +0 -0
  2386. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/status_codes.py +0 -0
  2387. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests/utils.py +0 -0
  2388. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/__init__.py +0 -0
  2389. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/_compat.py +0 -0
  2390. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/adapters/__init__.py +0 -0
  2391. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/adapters/appengine.py +0 -0
  2392. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/adapters/fingerprint.py +0 -0
  2393. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/adapters/host_header_ssl.py +0 -0
  2394. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/adapters/socket_options.py +0 -0
  2395. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/adapters/source.py +0 -0
  2396. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/adapters/ssl.py +0 -0
  2397. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/adapters/x509.py +0 -0
  2398. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/pkg_resources/_vendor → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/auth}/__init__.py +0 -0
  2399. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/auth/_digest_auth_compat.py +0 -0
  2400. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/auth/guess.py +0 -0
  2401. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/auth/handler.py +0 -0
  2402. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/auth/http_proxy_digest.py +0 -0
  2403. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/auth → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/cookies}/__init__.py +0 -0
  2404. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/cookies/forgetful.py +0 -0
  2405. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/cookies → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/downloadutils}/__init__.py +0 -0
  2406. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/downloadutils/stream.py +0 -0
  2407. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/downloadutils/tee.py +0 -0
  2408. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/exceptions.py +0 -0
  2409. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/multipart/__init__.py +0 -0
  2410. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/multipart/decoder.py +0 -0
  2411. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/multipart/encoder.py +0 -0
  2412. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/sessions.py +0 -0
  2413. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/streaming_iterator.py +0 -0
  2414. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/threaded/__init__.py +0 -0
  2415. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/threaded/pool.py +0 -0
  2416. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/threaded/thread.py +0 -0
  2417. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/downloadutils → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/utils}/__init__.py +0 -0
  2418. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/utils/deprecated.py +0 -0
  2419. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/utils/dump.py +0 -0
  2420. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/utils/formdata.py +0 -0
  2421. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/requests_toolbelt/utils/user_agent.py +0 -0
  2422. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/__init__.py +0 -0
  2423. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/_mixin.py +0 -0
  2424. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/abnf_regexp.py +0 -0
  2425. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/api.py +0 -0
  2426. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/builder.py +0 -0
  2427. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/compat.py +0 -0
  2428. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/exceptions.py +0 -0
  2429. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/iri.py +0 -0
  2430. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/misc.py +0 -0
  2431. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/normalizers.py +0 -0
  2432. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/parseresult.py +0 -0
  2433. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/uri.py +0 -0
  2434. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rfc3986/validators.py +0 -0
  2435. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/__init__.py +0 -0
  2436. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/__main__.py +0 -0
  2437. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_cell_widths.py +0 -0
  2438. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_emoji_codes.py +0 -0
  2439. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_emoji_replace.py +0 -0
  2440. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_export_format.py +0 -0
  2441. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_extension.py +0 -0
  2442. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_log_render.py +0 -0
  2443. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_loop.py +0 -0
  2444. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_palettes.py +0 -0
  2445. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_pick.py +0 -0
  2446. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_ratio.py +0 -0
  2447. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_stack.py +0 -0
  2448. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_timer.py +0 -0
  2449. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_windows.py +0 -0
  2450. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_windows_renderer.py +0 -0
  2451. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/_wrap.py +0 -0
  2452. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/abc.py +0 -0
  2453. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/bar.py +0 -0
  2454. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/box.py +0 -0
  2455. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/color_triplet.py +0 -0
  2456. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/columns.py +0 -0
  2457. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/constrain.py +0 -0
  2458. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/containers.py +0 -0
  2459. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/control.py +0 -0
  2460. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/diagnose.py +0 -0
  2461. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/emoji.py +0 -0
  2462. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/errors.py +0 -0
  2463. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/json.py +0 -0
  2464. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/jupyter.py +0 -0
  2465. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/layout.py +0 -0
  2466. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/live_render.py +0 -0
  2467. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/markup.py +0 -0
  2468. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/palette.py +0 -0
  2469. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/protocol.py +0 -0
  2470. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/region.py +0 -0
  2471. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/repr.py +0 -0
  2472. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/rule.py +0 -0
  2473. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/scope.py +0 -0
  2474. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/screen.py +0 -0
  2475. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/status.py +0 -0
  2476. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/styled.py +0 -0
  2477. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/rich/themes.py +0 -0
  2478. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/secretstorage/__init__.py +0 -0
  2479. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/secretstorage/collection.py +0 -0
  2480. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/secretstorage/defines.py +0 -0
  2481. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/secretstorage/dhcrypto.py +0 -0
  2482. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/secretstorage/exceptions.py +0 -0
  2483. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/secretstorage/item.py +0 -0
  2484. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/secretstorage/util.py +0 -0
  2485. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/setuptools/_distutils/debug.py +0 -0
  2486. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/requests_toolbelt/utils → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/compat}/__init__.py +0 -0
  2487. /testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/setuptools/_vendor/__init__.py → /testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_versionpredicate.py +0 -0
  2488. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/backports/__init__.py +0 -0
  2489. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/backports/tarfile/__init__.py +0 -0
  2490. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/backports/tarfile/__main__.py +0 -0
  2491. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/urllib3/contrib → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat}/__init__.py +0 -0
  2492. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/backports/tarfile/compat/py38.py +0 -0
  2493. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/importlib_metadata/_compat.py +0 -0
  2494. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/importlib_metadata/_functools.py +0 -0
  2495. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/importlib_metadata/_itertools.py +0 -0
  2496. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/importlib_metadata/_meta.py +0 -0
  2497. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/vendored → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat}/__init__.py +0 -0
  2498. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/wheel/vendored/packaging → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat}/__init__.py +0 -0
  2499. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/jaraco/context.py +0 -0
  2500. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/jaraco/functools/__init__.py +0 -0
  2501. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/more_itertools/__init__.py +0 -0
  2502. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/more_itertools/recipes.py +0 -0
  2503. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages/zipp/compat → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored}/__init__.py +0 -0
  2504. {testgres-1.10.2/testgres/plugins/pg_probackup2 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging}/__init__.py +0 -0
  2505. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/zipp/__init__.py +0 -0
  2506. {testgres-1.10.2/testgres/plugins/pg_probackup2/build/lib/pg_probackup2 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat}/__init__.py +0 -0
  2507. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/zipp/compat/py310.py +0 -0
  2508. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10/site-packages → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor}/zipp/glob.py +0 -0
  2509. {testgres-1.10.2/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/storage → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/compat}/__init__.py +0 -0
  2510. {testgres-1.10.2/testgres/plugins/pg_probackup2/pg_probackup2 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/compat}/__init__.py +0 -0
  2511. {testgres-1.10.2/testgres/plugins/pg_probackup2/pg_probackup2/storage → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config}/__init__.py +0 -0
  2512. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/__main__.py +0 -0
  2513. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/auth.py +0 -0
  2514. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/cli.py +0 -0
  2515. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/commands/__init__.py +0 -0
  2516. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/commands/check.py +0 -0
  2517. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/commands/register.py +0 -0
  2518. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/commands/upload.py +0 -0
  2519. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/exceptions.py +0 -0
  2520. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/package.py +0 -0
  2521. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/settings.py +0 -0
  2522. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/wheel.py +0 -0
  2523. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/twine/wininst.py +0 -0
  2524. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/__init__.py +0 -0
  2525. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/_base_connection.py +0 -0
  2526. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/_collections.py +0 -0
  2527. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/connectionpool.py +0 -0
  2528. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/contrib/emscripten/__init__.py +0 -0
  2529. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/contrib/emscripten/connection.py +0 -0
  2530. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/contrib/emscripten/fetch.py +0 -0
  2531. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/contrib/emscripten/request.py +0 -0
  2532. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/contrib/emscripten/response.py +0 -0
  2533. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/contrib/socks.py +0 -0
  2534. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/exceptions.py +0 -0
  2535. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/fields.py +0 -0
  2536. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/filepost.py +0 -0
  2537. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/poolmanager.py +0 -0
  2538. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/response.py +0 -0
  2539. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/util/__init__.py +0 -0
  2540. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/util/proxy.py +0 -0
  2541. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/util/response.py +0 -0
  2542. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/util/retry.py +0 -0
  2543. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/util/ssl_match_hostname.py +0 -0
  2544. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/util/timeout.py +0 -0
  2545. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/util/url.py +0 -0
  2546. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/util/util.py +0 -0
  2547. {testgres-1.10.2/testgres/plugins/pg_probackup2/.venv/lib/python3.10 → testgres-1.10.3/testgres/plugins/pg_probackup2/.venv/lib/python3.12}/site-packages/urllib3/util/wait.py +0 -0
  2548. {testgres-1.10.2 → testgres-1.10.3}/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/storage/fs_backup.py +0 -0
  2549. {testgres-1.10.2 → testgres-1.10.3}/testgres/plugins/pg_probackup2/pg_probackup2/storage/fs_backup.py +0 -0
  2550. {testgres-1.10.2 → testgres-1.10.3}/testgres/plugins/pg_probackup2/pg_probackup2/tests/basic_test.py +0 -0
  2551. {testgres-1.10.2 → testgres-1.10.3}/testgres/pubsub.py +0 -0
  2552. {testgres-1.10.2 → testgres-1.10.3}/testgres/standby.py +0 -0
  2553. {testgres-1.10.2 → testgres-1.10.3}/testgres/utils.py +0 -0
  2554. {testgres-1.10.2 → testgres-1.10.3}/testgres.egg-info/dependency_links.txt +0 -0
  2555. {testgres-1.10.2 → testgres-1.10.3}/testgres.egg-info/requires.txt +0 -0
  2556. {testgres-1.10.2 → testgres-1.10.3}/testgres.egg-info/top_level.txt +0 -0
  2557. {testgres-1.10.2 → testgres-1.10.3}/tests/test_remote.py +0 -0
@@ -0,0 +1,226 @@
1
+ Metadata-Version: 2.1
2
+ Name: testgres
3
+ Version: 1.10.3
4
+ Summary: Testing utility for PostgreSQL and its extensions
5
+ Home-page: https://github.com/postgrespro/testgres
6
+ Author: Postgres Professional
7
+ Author-email: testgres@postgrespro.ru
8
+ License: PostgreSQL
9
+ Keywords: test,testing,postgresql
10
+ Description-Content-Type: text/markdown
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
17
+
18
+ [![Build Status](https://travis-ci.com/postgrespro/testgres.svg?branch=master)](https://app.travis-ci.com/github/postgrespro/testgres/branches)
19
+ [![codecov](https://codecov.io/gh/postgrespro/testgres/branch/master/graph/badge.svg)](https://codecov.io/gh/postgrespro/testgres)
20
+ [![PyPI version](https://badge.fury.io/py/testgres.svg)](https://badge.fury.io/py/testgres)
21
+
22
+ [Documentation](https://postgrespro.github.io/testgres/)
23
+
24
+ # testgres
25
+
26
+ PostgreSQL testing utility. Both Python 2.7 and 3.3+ are supported.
27
+
28
+
29
+ ## Installation
30
+
31
+ To install `testgres`, run:
32
+
33
+ ```
34
+ pip install testgres
35
+ ```
36
+
37
+ We encourage you to use `virtualenv` for your testing environment.
38
+
39
+
40
+ ## Usage
41
+
42
+ ### Environment
43
+
44
+ > Note: by default testgres runs `initdb`, `pg_ctl`, `psql` provided by `PATH`.
45
+
46
+ There are several ways to specify a custom postgres installation:
47
+
48
+ * export `PG_CONFIG` environment variable pointing to the `pg_config` executable;
49
+ * export `PG_BIN` environment variable pointing to the directory with executable files.
50
+
51
+ Example:
52
+
53
+ ```bash
54
+ export PG_BIN=$HOME/pg_10/bin
55
+ python my_tests.py
56
+ ```
57
+
58
+
59
+ ### Examples
60
+
61
+ Here is an example of what you can do with `testgres`:
62
+
63
+ ```python
64
+ # create a node with random name, port, etc
65
+ with testgres.get_new_node() as node:
66
+
67
+ # run inidb
68
+ node.init()
69
+
70
+ # start PostgreSQL
71
+ node.start()
72
+
73
+ # execute a query in a default DB
74
+ print(node.execute('select 1'))
75
+
76
+ # ... node stops and its files are about to be removed
77
+ ```
78
+
79
+ There are four API methods for running queries:
80
+
81
+ | Command | Description |
82
+ |----------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
83
+ | `node.psql(query, ...)` | Runs query via `psql` command and returns tuple `(error code, stdout, stderr)`. |
84
+ | `node.safe_psql(query, ...)` | Same as `psql()` except that it returns only `stdout`. If an error occurs during the execution, an exception will be thrown. |
85
+ | `node.execute(query, ...)` | Connects to PostgreSQL using `psycopg2` or `pg8000` (depends on which one is installed in your system) and returns two-dimensional array with data. |
86
+ | `node.connect(dbname, ...)` | Returns connection wrapper (`NodeConnection`) capable of running several queries within a single transaction. |
87
+
88
+ The last one is the most powerful: you can use `begin(isolation_level)`, `commit()` and `rollback()`:
89
+ ```python
90
+ with node.connect() as con:
91
+ con.begin('serializable')
92
+ print(con.execute('select %s', 1))
93
+ con.rollback()
94
+ ```
95
+
96
+
97
+ ### Logging
98
+
99
+ By default, `cleanup()` removes all temporary files (DB files, logs etc) that were created by testgres' API methods.
100
+ If you'd like to keep logs, execute `configure_testgres(node_cleanup_full=False)` before running any tests.
101
+
102
+ > Note: context managers (aka `with`) call `stop()` and `cleanup()` automatically.
103
+
104
+ `testgres` supports [python logging](https://docs.python.org/3.6/library/logging.html),
105
+ which means that you can aggregate logs from several nodes into one file:
106
+
107
+ ```python
108
+ import logging
109
+
110
+ # write everything to /tmp/testgres.log
111
+ logging.basicConfig(filename='/tmp/testgres.log')
112
+
113
+ # enable logging, and create two different nodes
114
+ testgres.configure_testgres(use_python_logging=True)
115
+ node1 = testgres.get_new_node().init().start()
116
+ node2 = testgres.get_new_node().init().start()
117
+
118
+ # execute a few queries
119
+ node1.execute('select 1')
120
+ node2.execute('select 2')
121
+
122
+ # disable logging
123
+ testgres.configure_testgres(use_python_logging=False)
124
+ ```
125
+
126
+ Look at `tests/test_simple.py` file for a complete example of the logging
127
+ configuration.
128
+
129
+
130
+ ### Backup & replication
131
+
132
+ It's quite easy to create a backup and start a new replica:
133
+
134
+ ```python
135
+ with testgres.get_new_node('master') as master:
136
+ master.init().start()
137
+
138
+ # create a backup
139
+ with master.backup() as backup:
140
+
141
+ # create and start a new replica
142
+ replica = backup.spawn_replica('replica').start()
143
+
144
+ # catch up with master node
145
+ replica.catchup()
146
+
147
+ # execute a dummy query
148
+ print(replica.execute('postgres', 'select 1'))
149
+ ```
150
+
151
+ ### Benchmarks
152
+
153
+ `testgres` is also capable of running benchmarks using `pgbench`:
154
+
155
+ ```python
156
+ with testgres.get_new_node('master') as master:
157
+ # start a new node
158
+ master.init().start()
159
+
160
+ # initialize default DB and run bench for 10 seconds
161
+ res = master.pgbench_init(scale=2).pgbench_run(time=10)
162
+ print(res)
163
+ ```
164
+
165
+
166
+ ### Custom configuration
167
+
168
+ It's often useful to extend default configuration provided by `testgres`.
169
+
170
+ `testgres` has `default_conf()` function that helps control some basic
171
+ options. The `append_conf()` function can be used to add custom
172
+ lines to configuration lines:
173
+
174
+ ```python
175
+ ext_conf = "shared_preload_libraries = 'postgres_fdw'"
176
+
177
+ # initialize a new node
178
+ with testgres.get_new_node().init() as master:
179
+
180
+ # ... do something ...
181
+
182
+ # reset main config file
183
+ master.default_conf(fsync=True,
184
+ allow_streaming=True)
185
+
186
+ # add a new config line
187
+ master.append_conf('postgresql.conf', ext_conf)
188
+ ```
189
+
190
+ Note that `default_conf()` is called by `init()` function; both of them overwrite
191
+ the configuration file, which means that they should be called before `append_conf()`.
192
+
193
+ ### Remote mode
194
+ Testgres supports the creation of PostgreSQL nodes on a remote host. This is useful when you want to run distributed tests involving multiple nodes spread across different machines.
195
+
196
+ To use this feature, you need to use the RemoteOperations class. This feature is only supported with Linux.
197
+ Here is an example of how you might set this up:
198
+
199
+ ```python
200
+ from testgres import ConnectionParams, RemoteOperations, TestgresConfig, get_remote_node
201
+
202
+ # Set up connection params
203
+ conn_params = ConnectionParams(
204
+ host='your_host', # replace with your host
205
+ username='user_name', # replace with your username
206
+ ssh_key='path_to_ssh_key' # replace with your SSH key path
207
+ )
208
+ os_ops = RemoteOperations(conn_params)
209
+
210
+ # Add remote testgres config before test
211
+ TestgresConfig.set_os_ops(os_ops=os_ops)
212
+
213
+ # Proceed with your test
214
+ def test_basic_query(self):
215
+ with get_remote_node(conn_params=conn_params) as node:
216
+ node.init().start()
217
+ res = node.execute('SELECT 1')
218
+ self.assertEqual(res, [(1,)])
219
+ ```
220
+
221
+ ## Authors
222
+
223
+ [Ildar Musin](https://github.com/zilder)
224
+ [Dmitry Ivanov](https://github.com/funbringer)
225
+ [Ildus Kurbangaliev](https://github.com/ildus)
226
+ [Yury Zhuravlev](https://github.com/stalkerg)
@@ -0,0 +1,209 @@
1
+ [![Build Status](https://travis-ci.com/postgrespro/testgres.svg?branch=master)](https://app.travis-ci.com/github/postgrespro/testgres/branches)
2
+ [![codecov](https://codecov.io/gh/postgrespro/testgres/branch/master/graph/badge.svg)](https://codecov.io/gh/postgrespro/testgres)
3
+ [![PyPI version](https://badge.fury.io/py/testgres.svg)](https://badge.fury.io/py/testgres)
4
+
5
+ [Documentation](https://postgrespro.github.io/testgres/)
6
+
7
+ # testgres
8
+
9
+ PostgreSQL testing utility. Both Python 2.7 and 3.3+ are supported.
10
+
11
+
12
+ ## Installation
13
+
14
+ To install `testgres`, run:
15
+
16
+ ```
17
+ pip install testgres
18
+ ```
19
+
20
+ We encourage you to use `virtualenv` for your testing environment.
21
+
22
+
23
+ ## Usage
24
+
25
+ ### Environment
26
+
27
+ > Note: by default testgres runs `initdb`, `pg_ctl`, `psql` provided by `PATH`.
28
+
29
+ There are several ways to specify a custom postgres installation:
30
+
31
+ * export `PG_CONFIG` environment variable pointing to the `pg_config` executable;
32
+ * export `PG_BIN` environment variable pointing to the directory with executable files.
33
+
34
+ Example:
35
+
36
+ ```bash
37
+ export PG_BIN=$HOME/pg_10/bin
38
+ python my_tests.py
39
+ ```
40
+
41
+
42
+ ### Examples
43
+
44
+ Here is an example of what you can do with `testgres`:
45
+
46
+ ```python
47
+ # create a node with random name, port, etc
48
+ with testgres.get_new_node() as node:
49
+
50
+ # run inidb
51
+ node.init()
52
+
53
+ # start PostgreSQL
54
+ node.start()
55
+
56
+ # execute a query in a default DB
57
+ print(node.execute('select 1'))
58
+
59
+ # ... node stops and its files are about to be removed
60
+ ```
61
+
62
+ There are four API methods for running queries:
63
+
64
+ | Command | Description |
65
+ |----------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
66
+ | `node.psql(query, ...)` | Runs query via `psql` command and returns tuple `(error code, stdout, stderr)`. |
67
+ | `node.safe_psql(query, ...)` | Same as `psql()` except that it returns only `stdout`. If an error occurs during the execution, an exception will be thrown. |
68
+ | `node.execute(query, ...)` | Connects to PostgreSQL using `psycopg2` or `pg8000` (depends on which one is installed in your system) and returns two-dimensional array with data. |
69
+ | `node.connect(dbname, ...)` | Returns connection wrapper (`NodeConnection`) capable of running several queries within a single transaction. |
70
+
71
+ The last one is the most powerful: you can use `begin(isolation_level)`, `commit()` and `rollback()`:
72
+ ```python
73
+ with node.connect() as con:
74
+ con.begin('serializable')
75
+ print(con.execute('select %s', 1))
76
+ con.rollback()
77
+ ```
78
+
79
+
80
+ ### Logging
81
+
82
+ By default, `cleanup()` removes all temporary files (DB files, logs etc) that were created by testgres' API methods.
83
+ If you'd like to keep logs, execute `configure_testgres(node_cleanup_full=False)` before running any tests.
84
+
85
+ > Note: context managers (aka `with`) call `stop()` and `cleanup()` automatically.
86
+
87
+ `testgres` supports [python logging](https://docs.python.org/3.6/library/logging.html),
88
+ which means that you can aggregate logs from several nodes into one file:
89
+
90
+ ```python
91
+ import logging
92
+
93
+ # write everything to /tmp/testgres.log
94
+ logging.basicConfig(filename='/tmp/testgres.log')
95
+
96
+ # enable logging, and create two different nodes
97
+ testgres.configure_testgres(use_python_logging=True)
98
+ node1 = testgres.get_new_node().init().start()
99
+ node2 = testgres.get_new_node().init().start()
100
+
101
+ # execute a few queries
102
+ node1.execute('select 1')
103
+ node2.execute('select 2')
104
+
105
+ # disable logging
106
+ testgres.configure_testgres(use_python_logging=False)
107
+ ```
108
+
109
+ Look at `tests/test_simple.py` file for a complete example of the logging
110
+ configuration.
111
+
112
+
113
+ ### Backup & replication
114
+
115
+ It's quite easy to create a backup and start a new replica:
116
+
117
+ ```python
118
+ with testgres.get_new_node('master') as master:
119
+ master.init().start()
120
+
121
+ # create a backup
122
+ with master.backup() as backup:
123
+
124
+ # create and start a new replica
125
+ replica = backup.spawn_replica('replica').start()
126
+
127
+ # catch up with master node
128
+ replica.catchup()
129
+
130
+ # execute a dummy query
131
+ print(replica.execute('postgres', 'select 1'))
132
+ ```
133
+
134
+ ### Benchmarks
135
+
136
+ `testgres` is also capable of running benchmarks using `pgbench`:
137
+
138
+ ```python
139
+ with testgres.get_new_node('master') as master:
140
+ # start a new node
141
+ master.init().start()
142
+
143
+ # initialize default DB and run bench for 10 seconds
144
+ res = master.pgbench_init(scale=2).pgbench_run(time=10)
145
+ print(res)
146
+ ```
147
+
148
+
149
+ ### Custom configuration
150
+
151
+ It's often useful to extend default configuration provided by `testgres`.
152
+
153
+ `testgres` has `default_conf()` function that helps control some basic
154
+ options. The `append_conf()` function can be used to add custom
155
+ lines to configuration lines:
156
+
157
+ ```python
158
+ ext_conf = "shared_preload_libraries = 'postgres_fdw'"
159
+
160
+ # initialize a new node
161
+ with testgres.get_new_node().init() as master:
162
+
163
+ # ... do something ...
164
+
165
+ # reset main config file
166
+ master.default_conf(fsync=True,
167
+ allow_streaming=True)
168
+
169
+ # add a new config line
170
+ master.append_conf('postgresql.conf', ext_conf)
171
+ ```
172
+
173
+ Note that `default_conf()` is called by `init()` function; both of them overwrite
174
+ the configuration file, which means that they should be called before `append_conf()`.
175
+
176
+ ### Remote mode
177
+ Testgres supports the creation of PostgreSQL nodes on a remote host. This is useful when you want to run distributed tests involving multiple nodes spread across different machines.
178
+
179
+ To use this feature, you need to use the RemoteOperations class. This feature is only supported with Linux.
180
+ Here is an example of how you might set this up:
181
+
182
+ ```python
183
+ from testgres import ConnectionParams, RemoteOperations, TestgresConfig, get_remote_node
184
+
185
+ # Set up connection params
186
+ conn_params = ConnectionParams(
187
+ host='your_host', # replace with your host
188
+ username='user_name', # replace with your username
189
+ ssh_key='path_to_ssh_key' # replace with your SSH key path
190
+ )
191
+ os_ops = RemoteOperations(conn_params)
192
+
193
+ # Add remote testgres config before test
194
+ TestgresConfig.set_os_ops(os_ops=os_ops)
195
+
196
+ # Proceed with your test
197
+ def test_basic_query(self):
198
+ with get_remote_node(conn_params=conn_params) as node:
199
+ node.init().start()
200
+ res = node.execute('SELECT 1')
201
+ self.assertEqual(res, [(1,)])
202
+ ```
203
+
204
+ ## Authors
205
+
206
+ [Ildar Musin](https://github.com/zilder)
207
+ [Dmitry Ivanov](https://github.com/funbringer)
208
+ [Ildus Kurbangaliev](https://github.com/ildus)
209
+ [Yury Zhuravlev](https://github.com/stalkerg)
@@ -0,0 +1,43 @@
1
+ import sys
2
+
3
+ try:
4
+ from setuptools import setup
5
+ except ImportError:
6
+ from distutils.core import setup
7
+
8
+ # Basic dependencies
9
+ install_requires = [
10
+ "pg8000",
11
+ "port-for>=0.4",
12
+ "six>=1.9.0",
13
+ "psutil",
14
+ "packaging"
15
+ ]
16
+
17
+ # Add compatibility enum class
18
+ if sys.version_info < (3, 4):
19
+ install_requires.append("enum34")
20
+
21
+ # Add compatibility ipaddress module
22
+ if sys.version_info < (3, 3):
23
+ install_requires.append("ipaddress")
24
+
25
+ # Get contents of README file
26
+ with open('README.md', 'r') as f:
27
+ readme = f.read()
28
+
29
+ setup(
30
+ version='1.10.3',
31
+ name='testgres',
32
+ packages=['testgres', 'testgres.operations', 'testgres.helpers'],
33
+ description='Testing utility for PostgreSQL and its extensions',
34
+ url='https://github.com/postgrespro/testgres',
35
+ long_description=readme,
36
+ long_description_content_type='text/markdown',
37
+ license='PostgreSQL',
38
+ author='Postgres Professional',
39
+ author_email='testgres@postgrespro.ru',
40
+ keywords=['test', 'testing', 'postgresql'],
41
+ install_requires=install_requires,
42
+ classifiers=[],
43
+ )