testgres 1.10.5__tar.gz → 1.11.0__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 (1880) hide show
  1. {testgres-1.10.5/testgres.egg-info → testgres-1.11.0}/PKG-INFO +4 -3
  2. {testgres-1.10.5 → testgres-1.11.0}/README.md +1 -1
  3. {testgres-1.10.5 → testgres-1.11.0}/setup.py +2 -2
  4. {testgres-1.10.5 → testgres-1.11.0}/testgres/__init__.py +3 -3
  5. {testgres-1.10.5 → testgres-1.11.0}/testgres/api.py +1 -3
  6. {testgres-1.10.5 → testgres-1.11.0}/testgres/backup.py +22 -6
  7. {testgres-1.10.5 → testgres-1.11.0}/testgres/cache.py +18 -6
  8. {testgres-1.10.5 → testgres-1.11.0}/testgres/connection.py +7 -5
  9. {testgres-1.10.5 → testgres-1.11.0}/testgres/consts.py +4 -0
  10. {testgres-1.10.5 → testgres-1.11.0}/testgres/exceptions.py +4 -0
  11. {testgres-1.10.5 → testgres-1.11.0}/testgres/node.py +412 -94
  12. {testgres-1.10.5 → testgres-1.11.0}/testgres/operations/helpers.py +4 -1
  13. {testgres-1.10.5 → testgres-1.11.0}/testgres/operations/local_ops.py +180 -61
  14. {testgres-1.10.5 → testgres-1.11.0}/testgres/operations/os_ops.py +10 -16
  15. {testgres-1.10.5 → testgres-1.11.0}/testgres/operations/raise_error.py +22 -11
  16. {testgres-1.10.5 → testgres-1.11.0}/testgres/operations/remote_ops.py +343 -101
  17. testgres-1.11.0/testgres/plugins/__init__.py +8 -0
  18. {testgres-1.10.5/testgres/plugins/pg_probackup2/build/lib → testgres-1.11.0/testgres/plugins/pg_probackup2}/pg_probackup2/app.py +54 -6
  19. {testgres-1.10.5/testgres/plugins/pg_probackup2/build/lib → testgres-1.11.0/testgres/plugins/pg_probackup2}/pg_probackup2/init_helpers.py +8 -5
  20. testgres-1.11.0/testgres/plugins/pg_probackup2/pg_probackup2/tests/test_basic.py +95 -0
  21. {testgres-1.10.5 → testgres-1.11.0}/testgres/plugins/pg_probackup2/setup.py +1 -1
  22. testgres-1.11.0/testgres/port_manager.py +103 -0
  23. {testgres-1.10.5 → testgres-1.11.0}/testgres/utils.py +99 -27
  24. {testgres-1.10.5 → testgres-1.11.0/testgres.egg-info}/PKG-INFO +4 -3
  25. testgres-1.11.0/testgres.egg-info/SOURCES.txt +57 -0
  26. testgres-1.11.0/tests/conftest.py +975 -0
  27. testgres-1.11.0/tests/helpers/global_data.py +78 -0
  28. {testgres-1.10.5 → testgres-1.11.0}/tests/helpers/run_conditions.py +1 -0
  29. testgres-1.11.0/tests/test_config.py +41 -0
  30. testgres-1.11.0/tests/test_os_ops_common.py +814 -0
  31. testgres-1.11.0/tests/test_os_ops_local.py +60 -0
  32. testgres-1.11.0/tests/test_os_ops_remote.py +79 -0
  33. testgres-1.11.0/tests/test_testgres_common.py +1466 -0
  34. testgres-1.11.0/tests/test_testgres_local.py +414 -0
  35. testgres-1.11.0/tests/test_testgres_remote.py +191 -0
  36. testgres-1.11.0/tests/test_utils.py +63 -0
  37. testgres-1.10.5/testgres/helpers/port_manager.py +0 -41
  38. testgres-1.10.5/testgres/plugins/__init__.py +0 -8
  39. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/bin/activate_this.py +0 -36
  40. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/_distutils_hack/__init__.py +0 -239
  41. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/_distutils_hack/override.py +0 -1
  42. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/_virtualenv.py +0 -102
  43. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/certifi/__init__.py +0 -4
  44. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/certifi/__main__.py +0 -12
  45. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/certifi/core.py +0 -114
  46. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/__init__.py +0 -14
  47. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/_imp_emulation.py +0 -83
  48. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/_shimmed_dist_utils.py +0 -45
  49. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/api.py +0 -967
  50. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/backend_ctypes.py +0 -1121
  51. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/cffi_opcode.py +0 -187
  52. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/commontypes.py +0 -82
  53. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/cparser.py +0 -1015
  54. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/error.py +0 -31
  55. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/ffiplatform.py +0 -113
  56. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/lock.py +0 -30
  57. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/model.py +0 -618
  58. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/pkgconfig.py +0 -121
  59. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/recompiler.py +0 -1598
  60. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/setuptools_ext.py +0 -216
  61. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/vengine_cpy.py +0 -1084
  62. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/vengine_gen.py +0 -679
  63. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cffi/verifier.py +0 -306
  64. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/__init__.py +0 -48
  65. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/__main__.py +0 -6
  66. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/api.py +0 -668
  67. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/cd.py +0 -395
  68. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/cli/__init__.py +0 -8
  69. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/cli/__main__.py +0 -321
  70. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/constant.py +0 -1998
  71. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/legacy.py +0 -66
  72. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/md.py +0 -630
  73. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/models.py +0 -360
  74. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/utils.py +0 -408
  75. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/charset_normalizer/version.py +0 -8
  76. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/__about__.py +0 -17
  77. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/__init__.py +0 -26
  78. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/exceptions.py +0 -52
  79. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/fernet.py +0 -223
  80. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/__init__.py +0 -13
  81. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/_oid.py +0 -315
  82. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/backends/__init__.py +0 -13
  83. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/backends/openssl/__init__.py +0 -9
  84. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/backends/openssl/backend.py +0 -285
  85. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/bindings/__init__.py +0 -3
  86. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/bindings/openssl/__init__.py +0 -3
  87. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py +0 -183
  88. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/bindings/openssl/binding.py +0 -121
  89. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/decrepit/__init__.py +0 -5
  90. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/decrepit/ciphers/__init__.py +0 -5
  91. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/decrepit/ciphers/algorithms.py +0 -107
  92. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/__init__.py +0 -3
  93. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/_asymmetric.py +0 -19
  94. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py +0 -58
  95. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/_serialization.py +0 -169
  96. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py +0 -3
  97. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py +0 -135
  98. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py +0 -154
  99. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py +0 -403
  100. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py +0 -116
  101. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py +0 -118
  102. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py +0 -113
  103. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py +0 -263
  104. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/types.py +0 -111
  105. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py +0 -24
  106. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py +0 -109
  107. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py +0 -112
  108. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py +0 -27
  109. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/aead.py +0 -23
  110. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py +0 -183
  111. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/base.py +0 -145
  112. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/ciphers/modes.py +0 -268
  113. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/cmac.py +0 -10
  114. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/constant_time.py +0 -14
  115. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/hashes.py +0 -242
  116. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/hmac.py +0 -13
  117. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/__init__.py +0 -23
  118. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/argon2.py +0 -13
  119. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/concatkdf.py +0 -124
  120. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/hkdf.py +0 -101
  121. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/kbkdf.py +0 -302
  122. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/pbkdf2.py +0 -62
  123. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py +0 -19
  124. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/kdf/x963kdf.py +0 -61
  125. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/keywrap.py +0 -177
  126. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/padding.py +0 -183
  127. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/poly1305.py +0 -11
  128. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/__init__.py +0 -63
  129. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/base.py +0 -14
  130. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py +0 -156
  131. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py +0 -369
  132. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/serialization/ssh.py +0 -1569
  133. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/twofactor/__init__.py +0 -9
  134. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/twofactor/hotp.py +0 -100
  135. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/hazmat/primitives/twofactor/totp.py +0 -55
  136. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/utils.py +0 -127
  137. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/__init__.py +0 -267
  138. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/base.py +0 -815
  139. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/certificate_transparency.py +0 -35
  140. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/extensions.py +0 -2477
  141. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/general_name.py +0 -281
  142. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/name.py +0 -465
  143. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/ocsp.py +0 -344
  144. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/oid.py +0 -35
  145. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/cryptography/x509/verification.py +0 -28
  146. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/__init__.py +0 -291
  147. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/__main__.py +0 -96
  148. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/core.py +0 -780
  149. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/examples.py +0 -99
  150. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/frontend.py +0 -1065
  151. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/io.py +0 -637
  152. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/__init__.py +0 -83
  153. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/af.py +0 -58
  154. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/ar.py +0 -60
  155. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/ca.py +0 -65
  156. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/cs.py +0 -60
  157. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/da.py +0 -61
  158. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/de.py +0 -58
  159. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/en.py +0 -60
  160. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/eo.py +0 -61
  161. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/es.py +0 -58
  162. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/fa.py +0 -60
  163. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/fi.py +0 -60
  164. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/fr.py +0 -58
  165. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/gl.py +0 -62
  166. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/he.py +0 -62
  167. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/it.py +0 -58
  168. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/ja.py +0 -60
  169. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/ka.py +0 -58
  170. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/ko.py +0 -60
  171. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/lt.py +0 -60
  172. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/lv.py +0 -59
  173. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/nl.py +0 -60
  174. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/pl.py +0 -60
  175. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/pt_br.py +0 -60
  176. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/ru.py +0 -58
  177. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/sk.py +0 -58
  178. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/sv.py +0 -59
  179. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/uk.py +0 -58
  180. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/zh_cn.py +0 -62
  181. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/languages/zh_tw.py +0 -61
  182. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/nodes.py +0 -2301
  183. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/__init__.py +0 -92
  184. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/commonmark_wrapper.py +0 -56
  185. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/null.py +0 -20
  186. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/recommonmark_wrapper.py +0 -147
  187. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/__init__.py +0 -413
  188. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/directives/__init__.py +0 -466
  189. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/directives/admonitions.py +0 -101
  190. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/directives/body.py +0 -305
  191. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/directives/html.py +0 -21
  192. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/directives/images.py +0 -173
  193. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/directives/misc.py +0 -642
  194. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/directives/parts.py +0 -126
  195. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/directives/references.py +0 -29
  196. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/directives/tables.py +0 -538
  197. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/__init__.py +0 -40
  198. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/af.py +0 -108
  199. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/ar.py +0 -99
  200. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/ca.py +0 -130
  201. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/cs.py +0 -110
  202. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/da.py +0 -114
  203. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/de.py +0 -107
  204. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/en.py +0 -114
  205. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/eo.py +0 -119
  206. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/es.py +0 -123
  207. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/fa.py +0 -102
  208. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/fi.py +0 -98
  209. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/fr.py +0 -108
  210. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/gl.py +0 -106
  211. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/he.py +0 -110
  212. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/it.py +0 -99
  213. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/ja.py +0 -119
  214. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/ka.py +0 -90
  215. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/ko.py +0 -111
  216. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/lt.py +0 -109
  217. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/lv.py +0 -108
  218. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/nl.py +0 -114
  219. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/pl.py +0 -101
  220. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/pt_br.py +0 -110
  221. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/ru.py +0 -90
  222. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/sk.py +0 -96
  223. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/sv.py +0 -96
  224. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/uk.py +0 -91
  225. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/zh_cn.py +0 -104
  226. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/languages/zh_tw.py +0 -109
  227. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/roles.py +0 -439
  228. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/states.py +0 -3145
  229. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/parsers/rst/tableparser.py +0 -539
  230. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/readers/__init__.py +0 -113
  231. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/readers/doctree.py +0 -46
  232. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/readers/pep.py +0 -48
  233. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/readers/standalone.py +0 -65
  234. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/statemachine.py +0 -1525
  235. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/transforms/__init__.py +0 -185
  236. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/transforms/components.py +0 -54
  237. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/transforms/frontmatter.py +0 -540
  238. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/transforms/misc.py +0 -144
  239. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/transforms/parts.py +0 -176
  240. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/transforms/peps.py +0 -308
  241. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/transforms/references.py +0 -924
  242. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/transforms/universal.py +0 -335
  243. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/transforms/writer_aux.py +0 -99
  244. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/__init__.py +0 -861
  245. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/code_analyzer.py +0 -136
  246. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/error_reporting.py +0 -222
  247. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/math/__init__.py +0 -73
  248. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/math/latex2mathml.py +0 -1252
  249. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/math/math2html.py +0 -3165
  250. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/math/mathalphabet2unichar.py +0 -892
  251. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/math/mathml_elements.py +0 -478
  252. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/math/tex2mathml_extern.py +0 -261
  253. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/math/tex2unichar.py +0 -730
  254. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/math/unichar2tex.py +0 -808
  255. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/punctuation_chars.py +0 -123
  256. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/roman.py +0 -154
  257. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/smartquotes.py +0 -1004
  258. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/utils/urischemes.py +0 -138
  259. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/__init__.py +0 -159
  260. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/_html_base.py +0 -1887
  261. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/docutils_xml.py +0 -187
  262. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/html4css1/__init__.py +0 -955
  263. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/html5_polyglot/__init__.py +0 -393
  264. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/latex2e/__init__.py +0 -3323
  265. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/manpage.py +0 -1214
  266. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/null.py +0 -25
  267. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/odf_odt/__init__.py +0 -3461
  268. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/odf_odt/prepstyles.py +0 -78
  269. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/odf_odt/pygmentsformatter.py +0 -109
  270. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/pep_html/__init__.py +0 -101
  271. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/pseudoxml.py +0 -40
  272. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/s5_html/__init__.py +0 -353
  273. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/docutils/writers/xetex/__init__.py +0 -147
  274. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/id/__init__.py +0 -91
  275. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/id/__main__.py +0 -88
  276. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/id/_internal/oidc/__init__.py +0 -13
  277. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/id/_internal/oidc/ambient.py +0 -328
  278. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/__init__.py +0 -45
  279. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/codec.py +0 -122
  280. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/compat.py +0 -15
  281. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/core.py +0 -437
  282. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/idnadata.py +0 -4243
  283. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/intranges.py +0 -57
  284. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/package_data.py +0 -1
  285. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/idna/uts46data.py +0 -8681
  286. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jaraco/classes/ancestry.py +0 -76
  287. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jaraco/classes/meta.py +0 -85
  288. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jaraco/classes/properties.py +0 -241
  289. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jaraco/context/__init__.py +0 -356
  290. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jaraco/functools/__init__.py +0 -685
  291. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/__init__.py +0 -13
  292. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/auth.py +0 -136
  293. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/bindgen.py +0 -126
  294. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/bus.py +0 -62
  295. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/bus_messages.py +0 -235
  296. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/fds.py +0 -158
  297. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/__init__.py +0 -1
  298. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/asyncio.py +0 -233
  299. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/blocking.py +0 -350
  300. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/common.py +0 -88
  301. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/tests/conftest.py +0 -81
  302. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/tests/test_asyncio.py +0 -91
  303. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/tests/test_blocking.py +0 -88
  304. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/tests/test_threading.py +0 -83
  305. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/tests/test_trio.py +0 -114
  306. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/tests/utils.py +0 -3
  307. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/threading.py +0 -273
  308. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/trio.py +0 -420
  309. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/low_level.py +0 -585
  310. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/routing.py +0 -76
  311. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/tests/test_auth.py +0 -24
  312. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/tests/test_bindgen.py +0 -28
  313. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/tests/test_bus.py +0 -24
  314. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/tests/test_bus_messages.py +0 -109
  315. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/tests/test_fds.py +0 -80
  316. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/tests/test_low_level.py +0 -87
  317. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/tests/test_routing.py +0 -32
  318. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/wrappers.py +0 -216
  319. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/__init__.py +0 -17
  320. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/__main__.py +0 -4
  321. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backend.py +0 -300
  322. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/SecretService.py +0 -120
  323. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/Windows.py +0 -168
  324. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/chainer.py +0 -71
  325. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/fail.py +0 -30
  326. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/kwallet.py +0 -164
  327. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/libsecret.py +0 -155
  328. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/macOS/__init__.py +0 -85
  329. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/macOS/api.py +0 -184
  330. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends/null.py +0 -20
  331. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/cli.py +0 -220
  332. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/compat/__init__.py +0 -7
  333. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/compat/properties.py +0 -169
  334. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/compat/py312.py +0 -9
  335. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/compat/py38.py +0 -9
  336. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/completion.py +0 -56
  337. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/core.py +0 -200
  338. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/credentials.py +0 -85
  339. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/devpi_client.py +0 -29
  340. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/errors.py +0 -67
  341. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/http.py +0 -39
  342. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/testing/backend.py +0 -200
  343. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/testing/util.py +0 -68
  344. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/util/__init__.py +0 -11
  345. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/util/platform_.py +0 -40
  346. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/__init__.py +0 -5
  347. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/_compat.py +0 -11
  348. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/_punycode.py +0 -67
  349. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/cli/__init__.py +0 -0
  350. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/cli/parse.py +0 -109
  351. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/common/__init__.py +0 -0
  352. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/common/entities.py +0 -4
  353. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/common/html_blocks.py +0 -68
  354. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/common/html_re.py +0 -40
  355. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/common/normalize_url.py +0 -81
  356. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/common/utils.py +0 -318
  357. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/helpers/__init__.py +0 -6
  358. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_destination.py +0 -86
  359. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_label.py +0 -43
  360. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/helpers/parse_link_title.py +0 -60
  361. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/main.py +0 -355
  362. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/parser_block.py +0 -111
  363. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/parser_core.py +0 -45
  364. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/parser_inline.py +0 -147
  365. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/presets/__init__.py +0 -28
  366. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/presets/commonmark.py +0 -74
  367. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/presets/default.py +0 -35
  368. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/presets/zero.py +0 -43
  369. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/renderer.py +0 -336
  370. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/ruler.py +0 -276
  371. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/__init__.py +0 -27
  372. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/blockquote.py +0 -299
  373. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/code.py +0 -35
  374. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/fence.py +0 -101
  375. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/heading.py +0 -68
  376. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/hr.py +0 -55
  377. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/html_block.py +0 -90
  378. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/lheading.py +0 -86
  379. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/list.py +0 -345
  380. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/paragraph.py +0 -65
  381. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/reference.py +0 -215
  382. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/state_block.py +0 -261
  383. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_block/table.py +0 -236
  384. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_core/__init__.py +0 -19
  385. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_core/block.py +0 -13
  386. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_core/inline.py +0 -10
  387. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_core/linkify.py +0 -149
  388. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_core/normalize.py +0 -18
  389. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_core/replacements.py +0 -126
  390. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_core/smartquotes.py +0 -202
  391. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_core/state_core.py +0 -25
  392. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_core/text_join.py +0 -34
  393. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/__init__.py +0 -31
  394. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/autolink.py +0 -77
  395. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/backticks.py +0 -72
  396. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/balance_pairs.py +0 -137
  397. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/emphasis.py +0 -102
  398. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/entity.py +0 -53
  399. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/escape.py +0 -92
  400. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/fragments_join.py +0 -43
  401. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/html_inline.py +0 -43
  402. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/image.py +0 -148
  403. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/link.py +0 -151
  404. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/linkify.py +0 -61
  405. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/newline.py +0 -43
  406. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/state_inline.py +0 -166
  407. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/strikethrough.py +0 -127
  408. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/rules_inline/text.py +0 -53
  409. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/token.py +0 -180
  410. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/tree.py +0 -345
  411. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/markdown_it/utils.py +0 -176
  412. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/mdurl/__init__.py +0 -18
  413. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/mdurl/_decode.py +0 -104
  414. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/mdurl/_encode.py +0 -85
  415. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/mdurl/_format.py +0 -27
  416. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/mdurl/_parse.py +0 -304
  417. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/mdurl/_url.py +0 -14
  418. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/more_itertools/__init__.py +0 -6
  419. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/more_itertools/more.py +0 -4998
  420. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/more_itertools/recipes.py +0 -1199
  421. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/nh3/__init__.py +0 -5
  422. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/__init__.py +0 -15
  423. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/_elffile.py +0 -110
  424. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/_manylinux.py +0 -263
  425. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/_musllinux.py +0 -85
  426. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/_parser.py +0 -354
  427. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/_structures.py +0 -61
  428. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/_tokenizer.py +0 -194
  429. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/licenses/__init__.py +0 -145
  430. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/licenses/_spdx.py +0 -759
  431. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/markers.py +0 -331
  432. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/metadata.py +0 -863
  433. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/requirements.py +0 -91
  434. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/specifiers.py +0 -1020
  435. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/tags.py +0 -617
  436. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/utils.py +0 -163
  437. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/packaging/version.py +0 -582
  438. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/__init__.py +0 -13
  439. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/__main__.py +0 -24
  440. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/__pip-runner__.py +0 -50
  441. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/__init__.py +0 -18
  442. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/build_env.py +0 -311
  443. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cache.py +0 -290
  444. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +0 -4
  445. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +0 -172
  446. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +0 -236
  447. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +0 -1074
  448. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +0 -27
  449. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/main.py +0 -79
  450. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +0 -134
  451. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/parser.py +0 -294
  452. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +0 -68
  453. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +0 -505
  454. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +0 -159
  455. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +0 -6
  456. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +0 -132
  457. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/cache.py +0 -225
  458. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/check.py +0 -54
  459. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/completion.py +0 -130
  460. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +0 -280
  461. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/debug.py +0 -201
  462. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/download.py +0 -147
  463. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +0 -109
  464. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/hash.py +0 -59
  465. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/help.py +0 -41
  466. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/index.py +0 -139
  467. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +0 -92
  468. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/install.py +0 -774
  469. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/list.py +0 -370
  470. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/search.py +0 -174
  471. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/show.py +0 -189
  472. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +0 -113
  473. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +0 -183
  474. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/configuration.py +0 -383
  475. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +0 -21
  476. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/distributions/base.py +0 -51
  477. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +0 -29
  478. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +0 -156
  479. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +0 -40
  480. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/exceptions.py +0 -728
  481. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/index/__init__.py +0 -2
  482. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/index/collector.py +0 -507
  483. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +0 -1027
  484. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/index/sources.py +0 -285
  485. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +0 -467
  486. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +0 -172
  487. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +0 -213
  488. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/locations/base.py +0 -81
  489. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/main.py +0 -12
  490. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +0 -128
  491. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +0 -84
  492. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/base.py +0 -702
  493. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -6
  494. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -55
  495. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -227
  496. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -189
  497. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +0 -278
  498. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/__init__.py +0 -2
  499. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/candidate.py +0 -30
  500. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +0 -235
  501. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/format_control.py +0 -78
  502. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/index.py +0 -28
  503. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +0 -56
  504. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/link.py +0 -579
  505. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/scheme.py +0 -31
  506. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +0 -132
  507. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +0 -51
  508. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/target_python.py +0 -122
  509. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/models/wheel.py +0 -92
  510. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/__init__.py +0 -2
  511. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/auth.py +0 -561
  512. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/cache.py +0 -106
  513. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/download.py +0 -186
  514. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +0 -210
  515. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/session.py +0 -520
  516. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/utils.py +0 -96
  517. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +0 -62
  518. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  519. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  520. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +0 -139
  521. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +0 -39
  522. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -41
  523. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -74
  524. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +0 -37
  525. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -46
  526. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -102
  527. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/check.py +0 -187
  528. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +0 -255
  529. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +0 -2
  530. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -46
  531. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +0 -734
  532. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +0 -730
  533. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/pyproject.py +0 -179
  534. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/__init__.py +0 -92
  535. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/constructors.py +0 -576
  536. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/req_file.py +0 -554
  537. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/req_install.py +0 -923
  538. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/req_set.py +0 -119
  539. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +0 -649
  540. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  541. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/base.py +0 -20
  542. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  543. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -598
  544. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  545. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -141
  546. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -597
  547. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -812
  548. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -155
  549. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -255
  550. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -80
  551. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -166
  552. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -317
  553. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +0 -248
  554. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  555. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +0 -109
  556. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/_log.py +0 -38
  557. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +0 -52
  558. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/compat.py +0 -63
  559. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +0 -165
  560. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +0 -11
  561. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +0 -120
  562. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -87
  563. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +0 -80
  564. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/encoding.py +0 -36
  565. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +0 -84
  566. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +0 -153
  567. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +0 -27
  568. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +0 -88
  569. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +0 -151
  570. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/logging.py +0 -348
  571. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/misc.py +0 -783
  572. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/models.py +0 -39
  573. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +0 -57
  574. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +0 -146
  575. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +0 -260
  576. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +0 -296
  577. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +0 -257
  578. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/urls.py +0 -62
  579. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +0 -104
  580. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +0 -134
  581. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +0 -15
  582. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +0 -112
  583. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/vcs/git.py +0 -526
  584. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +0 -163
  585. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +0 -324
  586. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +0 -705
  587. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +0 -354
  588. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/__init__.py +0 -121
  589. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -28
  590. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -70
  591. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -161
  592. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +0 -74
  593. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -8
  594. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -181
  595. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -48
  596. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +0 -494
  597. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -119
  598. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -154
  599. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -206
  600. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -43
  601. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +0 -4
  602. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +0 -12
  603. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +0 -119
  604. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py +0 -115
  605. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py +0 -386
  606. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py +0 -47
  607. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py +0 -261
  608. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py +0 -106
  609. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py +0 -147
  610. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py +0 -0
  611. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py +0 -112
  612. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py +0 -90
  613. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py +0 -19
  614. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py +0 -49
  615. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py +0 -85
  616. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py +0 -102
  617. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py +0 -261
  618. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py +0 -102
  619. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py +0 -196
  620. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py +0 -47
  621. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py +0 -388
  622. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py +0 -47
  623. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py +0 -284
  624. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py +0 -47
  625. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py +0 -316
  626. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py +0 -325
  627. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py +0 -2382
  628. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py +0 -47
  629. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py +0 -238
  630. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +0 -4649
  631. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py +0 -4397
  632. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py +0 -4380
  633. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py +0 -4649
  634. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py +0 -5725
  635. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py +0 -4380
  636. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py +0 -4380
  637. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py +0 -147
  638. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py +0 -162
  639. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py +0 -95
  640. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +0 -57
  641. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py +0 -661
  642. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py +0 -0
  643. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py +0 -352
  644. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py +0 -16
  645. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py +0 -162
  646. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +0 -88
  647. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py +0 -105
  648. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py +0 -362
  649. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py +0 -225
  650. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py +0 -82
  651. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/chardet/version.py +0 -9
  652. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py +0 -7
  653. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py +0 -102
  654. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py +0 -277
  655. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py +0 -121
  656. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py +0 -1
  657. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py +0 -76
  658. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py +0 -294
  659. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py +0 -189
  660. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py +0 -57
  661. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py +0 -49
  662. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py +0 -131
  663. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py +0 -180
  664. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py +0 -195
  665. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +0 -33
  666. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +0 -1138
  667. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py +0 -1359
  668. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py +0 -508
  669. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py +0 -1303
  670. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py +0 -384
  671. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py +0 -167
  672. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py +0 -1068
  673. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +0 -358
  674. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +0 -452
  675. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +0 -2025
  676. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py +0 -751
  677. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py +0 -1099
  678. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +0 -54
  679. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +0 -4
  680. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +0 -1399
  681. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +0 -44
  682. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +0 -112
  683. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +0 -13
  684. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/core.py +0 -400
  685. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +0 -2151
  686. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +0 -54
  687. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +0 -2
  688. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +0 -8600
  689. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +0 -57
  690. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +0 -48
  691. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +0 -193
  692. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +0 -1010
  693. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py +0 -26
  694. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +0 -25
  695. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +0 -301
  696. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +0 -136
  697. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +0 -61
  698. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +0 -304
  699. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +0 -146
  700. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +0 -802
  701. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +0 -487
  702. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +0 -136
  703. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +0 -504
  704. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -3361
  705. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +0 -566
  706. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +0 -53
  707. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +0 -210
  708. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +0 -223
  709. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +0 -91
  710. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +0 -223
  711. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +0 -4
  712. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +0 -255
  713. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +0 -82
  714. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +0 -17
  715. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +0 -668
  716. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +0 -70
  717. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +0 -71
  718. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -940
  719. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +0 -124
  720. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -158
  721. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -23
  722. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +0 -108
  723. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +0 -170
  724. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +0 -989
  725. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +0 -645
  726. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +0 -154
  727. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +0 -521
  728. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +0 -161
  729. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +0 -83
  730. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +0 -146
  731. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +0 -188
  732. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +0 -127
  733. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +0 -338
  734. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +0 -943
  735. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -362
  736. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -559
  737. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +0 -1198
  738. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +0 -43
  739. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +0 -88
  740. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +0 -91
  741. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +0 -104
  742. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +0 -217
  743. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +0 -197
  744. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -103
  745. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +0 -213
  746. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +0 -153
  747. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +0 -330
  748. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py +0 -322
  749. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py +0 -217
  750. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py +0 -432
  751. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py +0 -6115
  752. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py +0 -656
  753. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py +0 -299
  754. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py +0 -1100
  755. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py +0 -796
  756. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py +0 -331
  757. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py +0 -361
  758. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py +0 -284
  759. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +0 -23
  760. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py +0 -8
  761. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +0 -330
  762. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +0 -18
  763. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +0 -353
  764. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +0 -182
  765. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +0 -14
  766. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +0 -50
  767. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +0 -538
  768. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/api.py +0 -157
  769. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +0 -315
  770. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +0 -24
  771. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +0 -67
  772. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +0 -561
  773. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +0 -141
  774. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/help.py +0 -131
  775. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +0 -33
  776. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/models.py +0 -1034
  777. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +0 -16
  778. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +0 -833
  779. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +0 -128
  780. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +0 -99
  781. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +0 -1094
  782. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +0 -26
  783. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
  784. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +0 -6
  785. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +0 -133
  786. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +0 -43
  787. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +0 -547
  788. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +0 -170
  789. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +0 -177
  790. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +0 -274
  791. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +0 -451
  792. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -3610
  793. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -32
  794. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +0 -76
  795. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +0 -10
  796. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +0 -24
  797. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +0 -270
  798. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +0 -94
  799. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +0 -43
  800. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +0 -69
  801. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +0 -309
  802. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +0 -17
  803. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +0 -160
  804. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +0 -482
  805. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +0 -16
  806. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +0 -19
  807. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +0 -662
  808. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +0 -72
  809. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -56
  810. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +0 -56
  811. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +0 -33
  812. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/align.py +0 -311
  813. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +0 -240
  814. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +0 -94
  815. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/box.py +0 -517
  816. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +0 -154
  817. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color.py +0 -622
  818. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +0 -38
  819. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +0 -187
  820. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/console.py +0 -2633
  821. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +0 -37
  822. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +0 -167
  823. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/control.py +0 -225
  824. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +0 -190
  825. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +0 -37
  826. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +0 -96
  827. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +0 -34
  828. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +0 -57
  829. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +0 -89
  830. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +0 -232
  831. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/json.py +0 -140
  832. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +0 -101
  833. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +0 -443
  834. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/live.py +0 -375
  835. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +0 -113
  836. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +0 -289
  837. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +0 -246
  838. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +0 -151
  839. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +0 -141
  840. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +0 -34
  841. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +0 -100
  842. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +0 -308
  843. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +0 -994
  844. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +0 -1702
  845. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +0 -224
  846. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +0 -376
  847. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +0 -42
  848. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/region.py +0 -10
  849. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +0 -149
  850. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +0 -130
  851. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +0 -86
  852. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +0 -54
  853. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +0 -739
  854. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +0 -137
  855. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/status.py +0 -132
  856. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/style.py +0 -796
  857. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +0 -42
  858. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +0 -948
  859. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/table.py +0 -1002
  860. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +0 -153
  861. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/text.py +0 -1307
  862. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +0 -115
  863. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +0 -5
  864. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +0 -756
  865. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +0 -251
  866. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/six.py +0 -998
  867. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py +0 -608
  868. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py +0 -94
  869. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py +0 -76
  870. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py +0 -51
  871. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py +0 -46
  872. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py +0 -71
  873. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/nap.py +0 -43
  874. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py +0 -272
  875. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py +0 -103
  876. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py +0 -59
  877. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py +0 -228
  878. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +0 -11
  879. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +0 -691
  880. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +0 -107
  881. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +0 -10
  882. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +0 -13
  883. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +0 -302
  884. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +0 -501
  885. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +0 -66
  886. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +0 -31
  887. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +0 -554
  888. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py +0 -3072
  889. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +0 -102
  890. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +0 -337
  891. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +0 -2
  892. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +0 -572
  893. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -1132
  894. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  895. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -36
  896. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  897. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -519
  898. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -397
  899. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -314
  900. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -130
  901. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -518
  902. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -921
  903. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -216
  904. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +0 -323
  905. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +0 -274
  906. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +0 -98
  907. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  908. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  909. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -51
  910. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +0 -155
  911. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +0 -1076
  912. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -537
  913. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +0 -191
  914. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +0 -879
  915. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -49
  916. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +0 -149
  917. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -57
  918. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +0 -22
  919. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +0 -137
  920. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +0 -107
  921. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +0 -622
  922. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -495
  923. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -159
  924. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -221
  925. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -271
  926. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +0 -435
  927. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +0 -152
  928. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/__init__.py +0 -342
  929. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/labels.py +0 -231
  930. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/mklabels.py +0 -59
  931. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/tests.py +0 -153
  932. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pip/_vendor/webencodings/x_user_defined.py +0 -325
  933. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/__init__.py +0 -3709
  934. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/__init__.py +0 -0
  935. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +0 -7
  936. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_find_distributions.py +0 -56
  937. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_integration_zope_interface.py +0 -54
  938. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_markers.py +0 -8
  939. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_pkg_resources.py +0 -427
  940. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_resources.py +0 -869
  941. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pkg_resources/tests/test_working_set.py +0 -501
  942. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/__init__.py +0 -93
  943. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/_ast_gen.py +0 -336
  944. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/_build_tables.py +0 -40
  945. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/ast_transforms.py +0 -164
  946. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/c_ast.py +0 -1125
  947. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/c_generator.py +0 -502
  948. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/c_lexer.py +0 -555
  949. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/c_parser.py +0 -1950
  950. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/lextab.py +0 -10
  951. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/ply/__init__.py +0 -5
  952. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/ply/cpp.py +0 -905
  953. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/ply/ctokens.py +0 -133
  954. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/ply/lex.py +0 -1099
  955. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/ply/yacc.py +0 -3494
  956. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/ply/ygen.py +0 -74
  957. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/plyparser.py +0 -133
  958. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pycparser/yacctab.py +0 -369
  959. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/__init__.py +0 -82
  960. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/__main__.py +0 -17
  961. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/cmdline.py +0 -668
  962. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/console.py +0 -70
  963. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/filter.py +0 -70
  964. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/filters/__init__.py +0 -940
  965. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatter.py +0 -129
  966. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/__init__.py +0 -157
  967. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/_mapping.py +0 -23
  968. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/bbcode.py +0 -108
  969. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/groff.py +0 -170
  970. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/html.py +0 -995
  971. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/img.py +0 -686
  972. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/irc.py +0 -154
  973. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/latex.py +0 -518
  974. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/other.py +0 -160
  975. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/pangomarkup.py +0 -83
  976. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/rtf.py +0 -349
  977. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/svg.py +0 -185
  978. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/terminal.py +0 -127
  979. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/formatters/terminal256.py +0 -338
  980. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexer.py +0 -961
  981. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/__init__.py +0 -362
  982. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_ada_builtins.py +0 -103
  983. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_asy_builtins.py +0 -1644
  984. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_cl_builtins.py +0 -231
  985. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_cocoa_builtins.py +0 -75
  986. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_csound_builtins.py +0 -1780
  987. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_css_builtins.py +0 -558
  988. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_googlesql_builtins.py +0 -918
  989. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_julia_builtins.py +0 -411
  990. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_lasso_builtins.py +0 -5326
  991. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_lilypond_builtins.py +0 -4932
  992. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_lua_builtins.py +0 -285
  993. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_luau_builtins.py +0 -62
  994. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_mapping.py +0 -602
  995. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_mql_builtins.py +0 -1171
  996. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_mysql_builtins.py +0 -1335
  997. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_openedge_builtins.py +0 -2600
  998. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_php_builtins.py +0 -3325
  999. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_postgres_builtins.py +0 -739
  1000. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_qlik_builtins.py +0 -666
  1001. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_scheme_builtins.py +0 -1609
  1002. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_scilab_builtins.py +0 -3093
  1003. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_sourcemod_builtins.py +0 -1151
  1004. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_stan_builtins.py +0 -648
  1005. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_stata_builtins.py +0 -457
  1006. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_tsql_builtins.py +0 -1003
  1007. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_usd_builtins.py +0 -112
  1008. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_vbscript_builtins.py +0 -279
  1009. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/_vim_builtins.py +0 -1938
  1010. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/actionscript.py +0 -243
  1011. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ada.py +0 -144
  1012. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/agile.py +0 -25
  1013. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/algebra.py +0 -299
  1014. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ambient.py +0 -75
  1015. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/amdgpu.py +0 -54
  1016. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ampl.py +0 -87
  1017. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/apdlexer.py +0 -593
  1018. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/apl.py +0 -103
  1019. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/archetype.py +0 -315
  1020. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/arrow.py +0 -116
  1021. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/arturo.py +0 -249
  1022. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/asc.py +0 -55
  1023. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/asm.py +0 -1051
  1024. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/asn1.py +0 -178
  1025. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/automation.py +0 -379
  1026. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/bare.py +0 -101
  1027. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/basic.py +0 -656
  1028. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/bdd.py +0 -57
  1029. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/berry.py +0 -99
  1030. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/bibtex.py +0 -159
  1031. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/blueprint.py +0 -173
  1032. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/boa.py +0 -97
  1033. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/bqn.py +0 -112
  1034. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/business.py +0 -625
  1035. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/c_cpp.py +0 -414
  1036. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/c_like.py +0 -738
  1037. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/capnproto.py +0 -74
  1038. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/carbon.py +0 -95
  1039. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/cddl.py +0 -172
  1040. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/chapel.py +0 -139
  1041. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/clean.py +0 -180
  1042. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/codeql.py +0 -80
  1043. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/comal.py +0 -81
  1044. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/compiled.py +0 -35
  1045. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/configs.py +0 -1433
  1046. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/console.py +0 -114
  1047. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/cplint.py +0 -43
  1048. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/crystal.py +0 -364
  1049. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/csound.py +0 -466
  1050. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/css.py +0 -602
  1051. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/d.py +0 -259
  1052. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/dalvik.py +0 -126
  1053. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/data.py +0 -763
  1054. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/dax.py +0 -135
  1055. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/devicetree.py +0 -108
  1056. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/diff.py +0 -169
  1057. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/dns.py +0 -109
  1058. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/dotnet.py +0 -873
  1059. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/dsls.py +0 -970
  1060. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/dylan.py +0 -279
  1061. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ecl.py +0 -144
  1062. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/eiffel.py +0 -68
  1063. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/elm.py +0 -123
  1064. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/elpi.py +0 -175
  1065. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/email.py +0 -132
  1066. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/erlang.py +0 -526
  1067. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/esoteric.py +0 -300
  1068. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ezhil.py +0 -76
  1069. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/factor.py +0 -363
  1070. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/fantom.py +0 -251
  1071. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/felix.py +0 -275
  1072. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/fift.py +0 -68
  1073. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/floscript.py +0 -81
  1074. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/forth.py +0 -178
  1075. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/fortran.py +0 -212
  1076. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/foxpro.py +0 -427
  1077. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/freefem.py +0 -893
  1078. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/func.py +0 -110
  1079. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/functional.py +0 -21
  1080. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/futhark.py +0 -105
  1081. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/gcodelexer.py +0 -35
  1082. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/gdscript.py +0 -189
  1083. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/gleam.py +0 -74
  1084. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/go.py +0 -97
  1085. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/grammar_notation.py +0 -262
  1086. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/graph.py +0 -108
  1087. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/graphics.py +0 -794
  1088. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/graphql.py +0 -176
  1089. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/graphviz.py +0 -58
  1090. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/gsql.py +0 -103
  1091. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/hare.py +0 -73
  1092. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/haskell.py +0 -866
  1093. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/haxe.py +0 -935
  1094. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/hdl.py +0 -466
  1095. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/hexdump.py +0 -102
  1096. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/html.py +0 -670
  1097. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/idl.py +0 -284
  1098. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/igor.py +0 -435
  1099. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/inferno.py +0 -95
  1100. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/installers.py +0 -352
  1101. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/int_fiction.py +0 -1370
  1102. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/iolang.py +0 -61
  1103. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/j.py +0 -151
  1104. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/javascript.py +0 -1591
  1105. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/jmespath.py +0 -69
  1106. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/jslt.py +0 -94
  1107. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/json5.py +0 -83
  1108. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/jsonnet.py +0 -169
  1109. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/jsx.py +0 -100
  1110. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/julia.py +0 -294
  1111. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/jvm.py +0 -1802
  1112. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/kuin.py +0 -332
  1113. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/kusto.py +0 -93
  1114. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ldap.py +0 -155
  1115. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/lean.py +0 -241
  1116. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/lilypond.py +0 -225
  1117. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/lisp.py +0 -3146
  1118. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/macaulay2.py +0 -1814
  1119. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/make.py +0 -212
  1120. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/maple.py +0 -291
  1121. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/markup.py +0 -1654
  1122. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/math.py +0 -21
  1123. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/matlab.py +0 -3307
  1124. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/maxima.py +0 -84
  1125. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/meson.py +0 -139
  1126. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/mime.py +0 -210
  1127. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/minecraft.py +0 -391
  1128. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/mips.py +0 -130
  1129. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ml.py +0 -958
  1130. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/modeling.py +0 -366
  1131. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/modula2.py +0 -1579
  1132. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/mojo.py +0 -707
  1133. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/monte.py +0 -203
  1134. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/mosel.py +0 -447
  1135. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ncl.py +0 -894
  1136. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/nimrod.py +0 -199
  1137. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/nit.py +0 -63
  1138. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/nix.py +0 -144
  1139. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/numbair.py +0 -63
  1140. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/oberon.py +0 -120
  1141. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/objective.py +0 -513
  1142. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ooc.py +0 -84
  1143. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/openscad.py +0 -96
  1144. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/other.py +0 -41
  1145. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/parasail.py +0 -78
  1146. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/parsers.py +0 -798
  1147. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/pascal.py +0 -644
  1148. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/pawn.py +0 -202
  1149. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/pddl.py +0 -82
  1150. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/perl.py +0 -733
  1151. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/phix.py +0 -363
  1152. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/php.py +0 -334
  1153. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/pointless.py +0 -70
  1154. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/pony.py +0 -93
  1155. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/praat.py +0 -303
  1156. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/procfile.py +0 -41
  1157. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/prolog.py +0 -318
  1158. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/promql.py +0 -176
  1159. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/prql.py +0 -251
  1160. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ptx.py +0 -119
  1161. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/python.py +0 -1201
  1162. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/q.py +0 -187
  1163. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/qlik.py +0 -117
  1164. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/qvt.py +0 -153
  1165. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/r.py +0 -196
  1166. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/rdf.py +0 -468
  1167. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/rebol.py +0 -419
  1168. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/rego.py +0 -57
  1169. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/resource.py +0 -83
  1170. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ride.py +0 -138
  1171. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/rita.py +0 -42
  1172. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/rnc.py +0 -66
  1173. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/roboconf.py +0 -81
  1174. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/robotframework.py +0 -551
  1175. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ruby.py +0 -518
  1176. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/rust.py +0 -222
  1177. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/sas.py +0 -227
  1178. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/savi.py +0 -171
  1179. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/scdoc.py +0 -85
  1180. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/scripting.py +0 -1614
  1181. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/sgf.py +0 -59
  1182. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/shell.py +0 -902
  1183. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/sieve.py +0 -78
  1184. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/slash.py +0 -183
  1185. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/smalltalk.py +0 -194
  1186. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/smithy.py +0 -77
  1187. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/smv.py +0 -78
  1188. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/snobol.py +0 -82
  1189. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/solidity.py +0 -87
  1190. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/soong.py +0 -78
  1191. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/sophia.py +0 -102
  1192. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/special.py +0 -122
  1193. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/spice.py +0 -70
  1194. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/sql.py +0 -1203
  1195. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/srcinfo.py +0 -62
  1196. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/stata.py +0 -170
  1197. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/supercollider.py +0 -94
  1198. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/tablegen.py +0 -177
  1199. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/tact.py +0 -303
  1200. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/tal.py +0 -77
  1201. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/tcl.py +0 -148
  1202. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/teal.py +0 -88
  1203. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/templates.py +0 -2355
  1204. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/teraterm.py +0 -325
  1205. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/testing.py +0 -209
  1206. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/text.py +0 -27
  1207. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/textedit.py +0 -205
  1208. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/textfmts.py +0 -436
  1209. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/theorem.py +0 -410
  1210. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/thingsdb.py +0 -140
  1211. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/tlb.py +0 -59
  1212. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/tls.py +0 -54
  1213. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/tnt.py +0 -270
  1214. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/trafficscript.py +0 -51
  1215. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/typoscript.py +0 -216
  1216. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/typst.py +0 -160
  1217. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/ul4.py +0 -309
  1218. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/unicon.py +0 -413
  1219. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/urbi.py +0 -145
  1220. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/usd.py +0 -85
  1221. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/varnish.py +0 -189
  1222. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/verification.py +0 -113
  1223. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/verifpal.py +0 -65
  1224. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/vip.py +0 -150
  1225. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/vyper.py +0 -140
  1226. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/web.py +0 -24
  1227. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/webassembly.py +0 -119
  1228. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/webidl.py +0 -298
  1229. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/webmisc.py +0 -1006
  1230. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/wgsl.py +0 -406
  1231. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/whiley.py +0 -115
  1232. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/wowtoc.py +0 -120
  1233. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/wren.py +0 -98
  1234. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/x10.py +0 -66
  1235. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/xorg.py +0 -38
  1236. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/yang.py +0 -103
  1237. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/yara.py +0 -69
  1238. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/lexers/zig.py +0 -125
  1239. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/modeline.py +0 -43
  1240. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/plugin.py +0 -72
  1241. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/regexopt.py +0 -91
  1242. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/scanner.py +0 -104
  1243. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/sphinxext.py +0 -247
  1244. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/style.py +0 -203
  1245. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/__init__.py +0 -61
  1246. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/_mapping.py +0 -54
  1247. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/abap.py +0 -32
  1248. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/algol.py +0 -65
  1249. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/algol_nu.py +0 -65
  1250. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/arduino.py +0 -100
  1251. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/autumn.py +0 -67
  1252. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/borland.py +0 -53
  1253. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/bw.py +0 -52
  1254. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/coffee.py +0 -80
  1255. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/colorful.py +0 -83
  1256. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/default.py +0 -76
  1257. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/dracula.py +0 -90
  1258. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/emacs.py +0 -75
  1259. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/friendly.py +0 -76
  1260. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/friendly_grayscale.py +0 -80
  1261. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/fruity.py +0 -47
  1262. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/gh_dark.py +0 -113
  1263. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/gruvbox.py +0 -118
  1264. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/igor.py +0 -32
  1265. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/inkpot.py +0 -72
  1266. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/lightbulb.py +0 -110
  1267. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/lilypond.py +0 -62
  1268. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/lovelace.py +0 -100
  1269. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/manni.py +0 -79
  1270. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/material.py +0 -124
  1271. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/monokai.py +0 -112
  1272. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/murphy.py +0 -82
  1273. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/native.py +0 -70
  1274. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/nord.py +0 -156
  1275. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/onedark.py +0 -63
  1276. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/paraiso_dark.py +0 -124
  1277. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/paraiso_light.py +0 -124
  1278. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/pastie.py +0 -78
  1279. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/perldoc.py +0 -73
  1280. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/rainbow_dash.py +0 -95
  1281. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/rrt.py +0 -40
  1282. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/sas.py +0 -46
  1283. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/solarized.py +0 -144
  1284. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/staroffice.py +0 -31
  1285. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/stata_dark.py +0 -42
  1286. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/stata_light.py +0 -42
  1287. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/tango.py +0 -143
  1288. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/trac.py +0 -66
  1289. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/vim.py +0 -67
  1290. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/vs.py +0 -41
  1291. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/xcode.py +0 -53
  1292. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/styles/zenburn.py +0 -83
  1293. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/token.py +0 -214
  1294. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/unistring.py +0 -153
  1295. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/pygments/util.py +0 -324
  1296. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/readme_renderer/__init__.py +0 -13
  1297. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/readme_renderer/__main__.py +0 -66
  1298. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/readme_renderer/clean.py +0 -89
  1299. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/readme_renderer/markdown.py +0 -123
  1300. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/readme_renderer/rst.py +0 -135
  1301. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/readme_renderer/txt.py +0 -24
  1302. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/__init__.py +0 -184
  1303. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/__version__.py +0 -14
  1304. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/_internal_utils.py +0 -50
  1305. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/adapters.py +0 -719
  1306. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/api.py +0 -157
  1307. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/auth.py +0 -314
  1308. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/certs.py +0 -17
  1309. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/compat.py +0 -94
  1310. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/cookies.py +0 -561
  1311. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/exceptions.py +0 -151
  1312. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/help.py +0 -134
  1313. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/hooks.py +0 -33
  1314. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/models.py +0 -1037
  1315. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/packages.py +0 -23
  1316. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/sessions.py +0 -831
  1317. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/status_codes.py +0 -128
  1318. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/structures.py +0 -99
  1319. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests/utils.py +0 -1096
  1320. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/__init__.py +0 -34
  1321. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/_compat.py +0 -302
  1322. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/adapters/__init__.py +0 -15
  1323. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/adapters/appengine.py +0 -206
  1324. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/adapters/fingerprint.py +0 -48
  1325. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/adapters/host_header_ssl.py +0 -43
  1326. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/adapters/socket_options.py +0 -129
  1327. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/adapters/source.py +0 -67
  1328. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/adapters/ssl.py +0 -66
  1329. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/adapters/x509.py +0 -196
  1330. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/auth/__init__.py +0 -0
  1331. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/auth/_digest_auth_compat.py +0 -29
  1332. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/auth/guess.py +0 -146
  1333. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/auth/handler.py +0 -142
  1334. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/auth/http_proxy_digest.py +0 -103
  1335. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/cookies/__init__.py +0 -0
  1336. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/cookies/forgetful.py +0 -7
  1337. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/downloadutils/__init__.py +0 -0
  1338. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/downloadutils/stream.py +0 -176
  1339. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/downloadutils/tee.py +0 -123
  1340. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/exceptions.py +0 -25
  1341. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/multipart/__init__.py +0 -31
  1342. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/multipart/decoder.py +0 -156
  1343. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/multipart/encoder.py +0 -655
  1344. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/sessions.py +0 -89
  1345. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/streaming_iterator.py +0 -116
  1346. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/threaded/__init__.py +0 -97
  1347. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/threaded/pool.py +0 -211
  1348. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/threaded/thread.py +0 -53
  1349. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/utils/__init__.py +0 -0
  1350. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/utils/deprecated.py +0 -91
  1351. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/utils/dump.py +0 -198
  1352. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/utils/formdata.py +0 -108
  1353. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/requests_toolbelt/utils/user_agent.py +0 -143
  1354. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/__init__.py +0 -53
  1355. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/_mixin.py +0 -373
  1356. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/abnf_regexp.py +0 -275
  1357. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/api.py +0 -104
  1358. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/builder.py +0 -388
  1359. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/compat.py +0 -59
  1360. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/exceptions.py +0 -120
  1361. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/iri.py +0 -161
  1362. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/misc.py +0 -131
  1363. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/normalizers.py +0 -171
  1364. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/parseresult.py +0 -474
  1365. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/uri.py +0 -160
  1366. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rfc3986/validators.py +0 -440
  1367. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/__init__.py +0 -177
  1368. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/__main__.py +0 -273
  1369. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_cell_widths.py +0 -454
  1370. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_emoji_codes.py +0 -3610
  1371. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_emoji_replace.py +0 -32
  1372. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_export_format.py +0 -76
  1373. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_extension.py +0 -10
  1374. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_fileno.py +0 -24
  1375. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_inspect.py +0 -268
  1376. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_log_render.py +0 -94
  1377. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_loop.py +0 -43
  1378. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_null_file.py +0 -69
  1379. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_palettes.py +0 -309
  1380. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_pick.py +0 -17
  1381. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_ratio.py +0 -159
  1382. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_spinners.py +0 -482
  1383. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_stack.py +0 -16
  1384. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_timer.py +0 -19
  1385. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_win32_console.py +0 -661
  1386. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_windows.py +0 -71
  1387. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_windows_renderer.py +0 -56
  1388. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/_wrap.py +0 -93
  1389. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/abc.py +0 -33
  1390. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/align.py +0 -312
  1391. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/ansi.py +0 -241
  1392. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/bar.py +0 -93
  1393. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/box.py +0 -480
  1394. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/cells.py +0 -174
  1395. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/color.py +0 -621
  1396. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/color_triplet.py +0 -38
  1397. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/columns.py +0 -187
  1398. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/console.py +0 -2661
  1399. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/constrain.py +0 -37
  1400. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/containers.py +0 -167
  1401. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/control.py +0 -225
  1402. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/default_styles.py +0 -191
  1403. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/diagnose.py +0 -37
  1404. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/emoji.py +0 -96
  1405. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/errors.py +0 -34
  1406. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/file_proxy.py +0 -57
  1407. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/filesize.py +0 -88
  1408. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/highlighter.py +0 -232
  1409. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/json.py +0 -139
  1410. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/jupyter.py +0 -101
  1411. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/layout.py +0 -442
  1412. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/live.py +0 -375
  1413. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/live_render.py +0 -112
  1414. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/logging.py +0 -297
  1415. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/markdown.py +0 -784
  1416. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/markup.py +0 -251
  1417. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/measure.py +0 -151
  1418. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/padding.py +0 -141
  1419. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/pager.py +0 -34
  1420. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/palette.py +0 -100
  1421. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/panel.py +0 -318
  1422. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/pretty.py +0 -1016
  1423. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/progress.py +0 -1715
  1424. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/progress_bar.py +0 -223
  1425. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/prompt.py +0 -400
  1426. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/protocol.py +0 -42
  1427. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/region.py +0 -10
  1428. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/repr.py +0 -149
  1429. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/rule.py +0 -130
  1430. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/scope.py +0 -86
  1431. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/screen.py +0 -54
  1432. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/segment.py +0 -752
  1433. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/spinner.py +0 -138
  1434. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/status.py +0 -131
  1435. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/style.py +0 -796
  1436. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/styled.py +0 -42
  1437. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/syntax.py +0 -966
  1438. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/table.py +0 -1007
  1439. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/terminal_theme.py +0 -153
  1440. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/text.py +0 -1361
  1441. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/theme.py +0 -115
  1442. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/themes.py +0 -5
  1443. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/traceback.py +0 -797
  1444. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/rich/tree.py +0 -257
  1445. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/secretstorage/__init__.py +0 -93
  1446. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/secretstorage/collection.py +0 -224
  1447. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/secretstorage/defines.py +0 -20
  1448. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/secretstorage/dhcrypto.py +0 -59
  1449. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/secretstorage/exceptions.py +0 -50
  1450. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/secretstorage/item.py +0 -145
  1451. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/secretstorage/util.py +0 -179
  1452. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/__init__.py +0 -286
  1453. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_core_metadata.py +0 -321
  1454. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/__init__.py +0 -14
  1455. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/_log.py +0 -3
  1456. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/_macos_compat.py +0 -12
  1457. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/_modified.py +0 -73
  1458. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py +0 -604
  1459. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py +0 -264
  1460. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py +0 -1263
  1461. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/cmd.py +0 -462
  1462. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/__init__.py +0 -23
  1463. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/_framework_compat.py +0 -54
  1464. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/bdist.py +0 -156
  1465. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_dumb.py +0 -140
  1466. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_rpm.py +0 -597
  1467. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/build.py +0 -157
  1468. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/build_clib.py +0 -208
  1469. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/build_ext.py +0 -800
  1470. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/build_py.py +0 -406
  1471. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/build_scripts.py +0 -171
  1472. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/check.py +0 -152
  1473. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/clean.py +0 -76
  1474. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/config.py +0 -369
  1475. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install.py +0 -811
  1476. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install_data.py +0 -93
  1477. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install_egg_info.py +0 -91
  1478. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install_headers.py +0 -46
  1479. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install_lib.py +0 -234
  1480. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/install_scripts.py +0 -61
  1481. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py +0 -515
  1482. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py +0 -13
  1483. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py +0 -66
  1484. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/core.py +0 -289
  1485. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/cygwinccompiler.py +0 -339
  1486. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/debug.py +0 -5
  1487. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/dep_util.py +0 -14
  1488. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/dir_util.py +0 -244
  1489. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/dist.py +0 -1317
  1490. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/errors.py +0 -124
  1491. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/extension.py +0 -255
  1492. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/fancy_getopt.py +0 -471
  1493. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/file_util.py +0 -236
  1494. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/filelist.py +0 -366
  1495. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/log.py +0 -56
  1496. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/spawn.py +0 -117
  1497. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py +0 -583
  1498. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/__init__.py +0 -42
  1499. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__init__.py +0 -0
  1500. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/py39.py +0 -40
  1501. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/support.py +0 -134
  1502. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_archive_util.py +0 -353
  1503. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist.py +0 -47
  1504. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py +0 -78
  1505. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py +0 -127
  1506. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build.py +0 -49
  1507. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_clib.py +0 -134
  1508. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_ext.py +0 -560
  1509. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_py.py +0 -196
  1510. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_scripts.py +0 -96
  1511. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_ccompiler.py +0 -93
  1512. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_check.py +0 -194
  1513. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_clean.py +0 -45
  1514. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cmd.py +0 -107
  1515. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config_cmd.py +0 -87
  1516. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_core.py +0 -130
  1517. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cygwinccompiler.py +0 -81
  1518. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dir_util.py +0 -139
  1519. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dist.py +0 -552
  1520. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_extension.py +0 -117
  1521. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_file_util.py +0 -95
  1522. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_filelist.py +0 -336
  1523. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install.py +0 -245
  1524. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_data.py +0 -74
  1525. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_headers.py +0 -33
  1526. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_lib.py +0 -110
  1527. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_scripts.py +0 -52
  1528. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_log.py +0 -12
  1529. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_mingwccompiler.py +0 -56
  1530. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_modified.py +0 -126
  1531. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_msvccompiler.py +0 -137
  1532. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sdist.py +0 -470
  1533. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_spawn.py +0 -141
  1534. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sysconfig.py +0 -319
  1535. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_text_file.py +0 -127
  1536. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_unixccompiler.py +0 -350
  1537. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_util.py +0 -243
  1538. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_version.py +0 -80
  1539. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/test_versionpredicate.py +0 -0
  1540. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/tests/unix_compat.py +0 -17
  1541. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/text_file.py +0 -286
  1542. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py +0 -402
  1543. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/util.py +0 -502
  1544. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/version.py +0 -348
  1545. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py +0 -175
  1546. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_distutils/zosccompiler.py +0 -229
  1547. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_entry_points.py +0 -90
  1548. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_imp.py +0 -87
  1549. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_importlib.py +0 -9
  1550. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_itertools.py +0 -23
  1551. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_normalization.py +0 -144
  1552. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_path.py +0 -84
  1553. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_reqs.py +0 -42
  1554. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_shutil.py +0 -53
  1555. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_static.py +0 -188
  1556. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__init__.py +0 -27
  1557. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoasync.py +0 -142
  1558. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autocommand.py +0 -70
  1559. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/automain.py +0 -59
  1560. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoparse.py +0 -333
  1561. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/autocommand/errors.py +0 -23
  1562. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/backports/__init__.py +0 -1
  1563. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__init__.py +0 -2937
  1564. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__main__.py +0 -5
  1565. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py +0 -0
  1566. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py +0 -24
  1567. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +0 -1083
  1568. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +0 -83
  1569. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +0 -30
  1570. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +0 -57
  1571. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +0 -104
  1572. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +0 -73
  1573. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +0 -67
  1574. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py +0 -99
  1575. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py +0 -0
  1576. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py +0 -22
  1577. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py +0 -36
  1578. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py +0 -21
  1579. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/inflect/__init__.py +0 -3986
  1580. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__init__.py +0 -0
  1581. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/py38.py +0 -7
  1582. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/collections/__init__.py +0 -1091
  1583. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context.py +0 -361
  1584. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.py +0 -633
  1585. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py +0 -624
  1586. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/layouts.py +0 -25
  1587. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py +0 -33
  1588. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py +0 -21
  1589. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py +0 -6
  1590. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py +0 -6
  1591. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.py +0 -6
  1592. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.py +0 -4806
  1593. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.py +0 -1046
  1594. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py +0 -15
  1595. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_elffile.py +0 -110
  1596. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_manylinux.py +0 -263
  1597. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_musllinux.py +0 -85
  1598. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_parser.py +0 -354
  1599. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_structures.py +0 -61
  1600. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py +0 -194
  1601. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__init__.py +0 -145
  1602. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/_spdx.py +0 -759
  1603. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py +0 -331
  1604. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/metadata.py +0 -863
  1605. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py +0 -91
  1606. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py +0 -1020
  1607. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py +0 -617
  1608. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py +0 -163
  1609. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py +0 -582
  1610. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__init__.py +0 -627
  1611. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__main__.py +0 -55
  1612. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/android.py +0 -249
  1613. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/api.py +0 -292
  1614. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/macos.py +0 -130
  1615. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/unix.py +0 -275
  1616. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/version.py +0 -16
  1617. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/windows.py +0 -272
  1618. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py +0 -11
  1619. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py +0 -691
  1620. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py +0 -107
  1621. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py +0 -10
  1622. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__init__.py +0 -48
  1623. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_checkers.py +0 -993
  1624. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_config.py +0 -108
  1625. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_decorators.py +0 -235
  1626. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_exceptions.py +0 -42
  1627. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_functions.py +0 -308
  1628. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_importhook.py +0 -213
  1629. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_memo.py +0 -48
  1630. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_pytest_plugin.py +0 -127
  1631. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_suppression.py +0 -86
  1632. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_transformer.py +0 -1229
  1633. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_union_transformer.py +0 -55
  1634. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_utils.py +0 -173
  1635. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions.py +0 -3641
  1636. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/__init__.py +0 -3
  1637. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/__main__.py +0 -23
  1638. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +0 -26
  1639. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +0 -595
  1640. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__init__.py +0 -155
  1641. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/convert.py +0 -273
  1642. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/pack.py +0 -85
  1643. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/tags.py +0 -139
  1644. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/unpack.py +0 -30
  1645. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +0 -469
  1646. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/metadata.py +0 -180
  1647. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/util.py +0 -26
  1648. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/__init__.py +0 -0
  1649. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__init__.py +0 -0
  1650. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_elffile.py +0 -108
  1651. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_manylinux.py +0 -260
  1652. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_musllinux.py +0 -83
  1653. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_parser.py +0 -356
  1654. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_structures.py +0 -61
  1655. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_tokenizer.py +0 -192
  1656. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/markers.py +0 -253
  1657. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/requirements.py +0 -90
  1658. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/specifiers.py +0 -1011
  1659. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/tags.py +0 -571
  1660. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/utils.py +0 -172
  1661. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/version.py +0 -561
  1662. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/wheel/wheelfile.py +0 -196
  1663. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/zipp/__init__.py +0 -501
  1664. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__init__.py +0 -0
  1665. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py310.py +0 -11
  1666. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/_vendor/zipp/glob.py +0 -106
  1667. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/archive_util.py +0 -219
  1668. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/build_meta.py +0 -560
  1669. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/__init__.py +0 -21
  1670. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/_requirestxt.py +0 -131
  1671. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/alias.py +0 -77
  1672. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/bdist_egg.py +0 -479
  1673. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/bdist_rpm.py +0 -42
  1674. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py +0 -610
  1675. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/build.py +0 -135
  1676. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/build_clib.py +0 -103
  1677. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/build_ext.py +0 -469
  1678. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/build_py.py +0 -400
  1679. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/develop.py +0 -195
  1680. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/dist_info.py +0 -103
  1681. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/easy_install.py +0 -2365
  1682. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/editable_wheel.py +0 -925
  1683. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/egg_info.py +0 -720
  1684. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/install.py +0 -183
  1685. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/install_egg_info.py +0 -58
  1686. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/install_lib.py +0 -137
  1687. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/install_scripts.py +0 -73
  1688. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/rotate.py +0 -65
  1689. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/saveopts.py +0 -21
  1690. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/sdist.py +0 -217
  1691. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/setopt.py +0 -141
  1692. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/command/test.py +0 -45
  1693. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/compat/__init__.py +0 -0
  1694. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/compat/py310.py +0 -9
  1695. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/compat/py311.py +0 -27
  1696. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/compat/py312.py +0 -13
  1697. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/compat/py39.py +0 -9
  1698. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/__init__.py +0 -43
  1699. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py +0 -488
  1700. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__init__.py +0 -34
  1701. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +0 -336
  1702. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +0 -52
  1703. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +0 -51
  1704. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +0 -1319
  1705. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/formats.py +0 -375
  1706. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/expand.py +0 -452
  1707. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py +0 -468
  1708. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/config/setupcfg.py +0 -780
  1709. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/depends.py +0 -185
  1710. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/discovery.py +0 -614
  1711. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/dist.py +0 -1004
  1712. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/errors.py +0 -67
  1713. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/extension.py +0 -177
  1714. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/glob.py +0 -185
  1715. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/installer.py +0 -150
  1716. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/launch.py +0 -36
  1717. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/logging.py +0 -40
  1718. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/modified.py +0 -18
  1719. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/monkey.py +0 -126
  1720. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/msvc.py +0 -1527
  1721. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/namespaces.py +0 -106
  1722. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/package_index.py +0 -1137
  1723. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/sandbox.py +0 -536
  1724. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/__init__.py +0 -13
  1725. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/compat/__init__.py +0 -0
  1726. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/compat/py39.py +0 -3
  1727. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/__init__.py +0 -0
  1728. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/downloads/__init__.py +0 -59
  1729. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/downloads/preload.py +0 -18
  1730. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +0 -539
  1731. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/test_expand.py +0 -247
  1732. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml.py +0 -396
  1733. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py +0 -109
  1734. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/config/test_setupcfg.py +0 -965
  1735. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/contexts.py +0 -145
  1736. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/environment.py +0 -95
  1737. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/fixtures.py +0 -157
  1738. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/integration/__init__.py +0 -0
  1739. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/integration/helpers.py +0 -77
  1740. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +0 -223
  1741. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/mod_with_constant.py +0 -1
  1742. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/namespaces.py +0 -90
  1743. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/script-with-bom.py +0 -1
  1744. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/server.py +0 -86
  1745. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_archive_util.py +0 -36
  1746. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_bdist_deprecations.py +0 -28
  1747. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_bdist_egg.py +0 -73
  1748. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_bdist_wheel.py +0 -623
  1749. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_build.py +0 -33
  1750. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_build_clib.py +0 -84
  1751. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_build_ext.py +0 -293
  1752. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_build_meta.py +0 -970
  1753. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_build_py.py +0 -480
  1754. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_config_discovery.py +0 -647
  1755. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_core_metadata.py +0 -577
  1756. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_depends.py +0 -15
  1757. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_develop.py +0 -175
  1758. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_dist.py +0 -278
  1759. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_dist_info.py +0 -210
  1760. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_distutils_adoption.py +0 -198
  1761. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_easy_install.py +0 -1472
  1762. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_editable_install.py +0 -1289
  1763. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_egg_info.py +0 -1280
  1764. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_extern.py +0 -15
  1765. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_find_packages.py +0 -218
  1766. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_find_py_modules.py +0 -73
  1767. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_glob.py +0 -45
  1768. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_install_scripts.py +0 -89
  1769. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_logging.py +0 -76
  1770. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_manifest.py +0 -622
  1771. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_namespaces.py +0 -138
  1772. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_packageindex.py +0 -267
  1773. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_sandbox.py +0 -134
  1774. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_sdist.py +0 -972
  1775. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_setopt.py +0 -40
  1776. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_setuptools.py +0 -290
  1777. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_shutil_wrapper.py +0 -23
  1778. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_unicode_utils.py +0 -10
  1779. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_virtualenv.py +0 -113
  1780. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_warnings.py +0 -106
  1781. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_wheel.py +0 -714
  1782. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/test_windows_wrappers.py +0 -259
  1783. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/text.py +0 -4
  1784. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/tests/textwrap.py +0 -6
  1785. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/unicode_utils.py +0 -102
  1786. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/version.py +0 -6
  1787. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/warnings.py +0 -110
  1788. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/wheel.py +0 -236
  1789. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/setuptools/windows_support.py +0 -30
  1790. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/__init__.py +0 -53
  1791. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/__main__.py +0 -54
  1792. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/auth.py +0 -208
  1793. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/cli.py +0 -139
  1794. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/commands/__init__.py +0 -93
  1795. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/commands/check.py +0 -195
  1796. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/commands/register.py +0 -87
  1797. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/commands/upload.py +0 -258
  1798. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/distribution.py +0 -8
  1799. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/exceptions.py +0 -131
  1800. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/package.py +0 -418
  1801. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/repository.py +0 -229
  1802. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/sdist.py +0 -83
  1803. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/settings.py +0 -341
  1804. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/utils.py +0 -380
  1805. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/twine/wheel.py +0 -81
  1806. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/__init__.py +0 -211
  1807. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/_base_connection.py +0 -165
  1808. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/_collections.py +0 -479
  1809. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/_request_methods.py +0 -278
  1810. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/_version.py +0 -16
  1811. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/connection.py +0 -1044
  1812. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/connectionpool.py +0 -1178
  1813. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/contrib/__init__.py +0 -0
  1814. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/contrib/emscripten/__init__.py +0 -16
  1815. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/contrib/emscripten/connection.py +0 -255
  1816. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/contrib/emscripten/fetch.py +0 -708
  1817. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/contrib/emscripten/request.py +0 -22
  1818. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/contrib/emscripten/response.py +0 -285
  1819. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/contrib/pyopenssl.py +0 -554
  1820. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/contrib/socks.py +0 -228
  1821. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/exceptions.py +0 -327
  1822. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/fields.py +0 -341
  1823. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/filepost.py +0 -89
  1824. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/http2/__init__.py +0 -53
  1825. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/http2/connection.py +0 -356
  1826. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/http2/probe.py +0 -87
  1827. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/poolmanager.py +0 -637
  1828. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/response.py +0 -1278
  1829. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/__init__.py +0 -42
  1830. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/connection.py +0 -137
  1831. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/proxy.py +0 -43
  1832. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/request.py +0 -258
  1833. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/response.py +0 -101
  1834. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/retry.py +0 -533
  1835. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/ssl_.py +0 -504
  1836. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/ssl_match_hostname.py +0 -159
  1837. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/ssltransport.py +0 -271
  1838. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/timeout.py +0 -275
  1839. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/url.py +0 -469
  1840. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/util.py +0 -42
  1841. testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/urllib3/util/wait.py +0 -124
  1842. testgres-1.10.5/testgres/plugins/pg_probackup2/__init__.py +0 -0
  1843. testgres-1.10.5/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/__init__.py +0 -0
  1844. testgres-1.10.5/testgres/plugins/pg_probackup2/build/lib/pg_probackup2/storage/__init__.py +0 -0
  1845. testgres-1.10.5/testgres/plugins/pg_probackup2/pg_probackup2/__init__.py +0 -0
  1846. testgres-1.10.5/testgres/plugins/pg_probackup2/pg_probackup2/app.py +0 -815
  1847. testgres-1.10.5/testgres/plugins/pg_probackup2/pg_probackup2/gdb.py +0 -349
  1848. testgres-1.10.5/testgres/plugins/pg_probackup2/pg_probackup2/init_helpers.py +0 -223
  1849. testgres-1.10.5/testgres/plugins/pg_probackup2/pg_probackup2/storage/__init__.py +0 -0
  1850. testgres-1.10.5/testgres/plugins/pg_probackup2/pg_probackup2/storage/fs_backup.py +0 -104
  1851. testgres-1.10.5/testgres/plugins/pg_probackup2/pg_probackup2/tests/basic_test.py +0 -80
  1852. testgres-1.10.5/testgres.egg-info/SOURCES.txt +0 -1865
  1853. testgres-1.10.5/tests/__init__.py +0 -0
  1854. testgres-1.10.5/tests/helpers/__init__.py +0 -0
  1855. testgres-1.10.5/tests/test_local.py +0 -258
  1856. testgres-1.10.5/tests/test_remote.py +0 -394
  1857. testgres-1.10.5/tests/test_simple.py +0 -1326
  1858. testgres-1.10.5/tests/test_simple_remote.py +0 -1016
  1859. {testgres-1.10.5 → testgres-1.11.0}/LICENSE +0 -0
  1860. {testgres-1.10.5 → testgres-1.11.0}/MANIFEST.in +0 -0
  1861. {testgres-1.10.5 → testgres-1.11.0}/setup.cfg +0 -0
  1862. {testgres-1.10.5 → testgres-1.11.0}/testgres/config.py +0 -0
  1863. {testgres-1.10.5 → testgres-1.11.0}/testgres/decorators.py +0 -0
  1864. {testgres-1.10.5 → testgres-1.11.0}/testgres/defaults.py +0 -0
  1865. {testgres-1.10.5 → testgres-1.11.0}/testgres/enums.py +0 -0
  1866. {testgres-1.10.5 → testgres-1.11.0}/testgres/logger.py +0 -0
  1867. {testgres-1.10.5/testgres/helpers → testgres-1.11.0/testgres/operations}/__init__.py +0 -0
  1868. {testgres-1.10.5/testgres/operations → testgres-1.11.0/testgres/plugins/pg_probackup2}/__init__.py +0 -0
  1869. {testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jaraco/classes → testgres-1.11.0/testgres/plugins/pg_probackup2/pg_probackup2}/__init__.py +0 -0
  1870. {testgres-1.10.5/testgres/plugins/pg_probackup2/build/lib → testgres-1.11.0/testgres/plugins/pg_probackup2}/pg_probackup2/gdb.py +0 -0
  1871. {testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney/io/tests → testgres-1.11.0/testgres/plugins/pg_probackup2/pg_probackup2/storage}/__init__.py +0 -0
  1872. {testgres-1.10.5/testgres/plugins/pg_probackup2/build/lib → testgres-1.11.0/testgres/plugins/pg_probackup2}/pg_probackup2/storage/fs_backup.py +0 -0
  1873. {testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/jeepney → testgres-1.11.0/testgres/plugins/pg_probackup2/pg_probackup2}/tests/__init__.py +0 -0
  1874. {testgres-1.10.5 → testgres-1.11.0}/testgres/pubsub.py +0 -0
  1875. {testgres-1.10.5 → testgres-1.11.0}/testgres/standby.py +0 -0
  1876. {testgres-1.10.5 → testgres-1.11.0}/testgres.egg-info/dependency_links.txt +0 -0
  1877. {testgres-1.10.5 → testgres-1.11.0}/testgres.egg-info/requires.txt +0 -0
  1878. {testgres-1.10.5 → testgres-1.11.0}/testgres.egg-info/top_level.txt +0 -0
  1879. {testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/backends → testgres-1.11.0/tests}/__init__.py +0 -0
  1880. {testgres-1.10.5/testgres/plugins/pg_probackup2/.venv/lib/python3.12/site-packages/keyring/testing → testgres-1.11.0/tests/helpers}/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: testgres
3
- Version: 1.10.5
3
+ Version: 1.11.0
4
4
  Summary: Testing utility for PostgreSQL and its extensions
5
5
  Home-page: https://github.com/postgrespro/testgres
6
6
  Author: Postgres Professional
@@ -21,10 +21,11 @@ Dynamic: description-content-type
21
21
  Dynamic: home-page
22
22
  Dynamic: keywords
23
23
  Dynamic: license
24
+ Dynamic: license-file
24
25
  Dynamic: requires-dist
25
26
  Dynamic: summary
26
27
 
27
- [![Build Status](https://travis-ci.com/postgrespro/testgres.svg?branch=master)](https://app.travis-ci.com/github/postgrespro/testgres/branches)
28
+ [![Build Status](https://api.travis-ci.com/postgrespro/testgres.svg?branch=master)](https://travis-ci.com/github/postgrespro/testgres)
28
29
  [![codecov](https://codecov.io/gh/postgrespro/testgres/branch/master/graph/badge.svg)](https://codecov.io/gh/postgrespro/testgres)
29
30
  [![PyPI version](https://badge.fury.io/py/testgres.svg)](https://badge.fury.io/py/testgres)
30
31
 
@@ -1,4 +1,4 @@
1
- [![Build Status](https://travis-ci.com/postgrespro/testgres.svg?branch=master)](https://app.travis-ci.com/github/postgrespro/testgres/branches)
1
+ [![Build Status](https://api.travis-ci.com/postgrespro/testgres.svg?branch=master)](https://travis-ci.com/github/postgrespro/testgres)
2
2
  [![codecov](https://codecov.io/gh/postgrespro/testgres/branch/master/graph/badge.svg)](https://codecov.io/gh/postgrespro/testgres)
3
3
  [![PyPI version](https://badge.fury.io/py/testgres.svg)](https://badge.fury.io/py/testgres)
4
4
 
@@ -27,9 +27,9 @@ with open('README.md', 'r') as f:
27
27
  readme = f.read()
28
28
 
29
29
  setup(
30
- version='1.10.5',
30
+ version='1.11.0',
31
31
  name='testgres',
32
- packages=['testgres', 'testgres.operations', 'testgres.helpers'],
32
+ packages=['testgres', 'testgres.operations'],
33
33
  description='Testing utility for PostgreSQL and its extensions',
34
34
  url='https://github.com/postgrespro/testgres',
35
35
  long_description=readme,
@@ -34,6 +34,7 @@ from .enums import \
34
34
  DumpFormat
35
35
 
36
36
  from .node import PostgresNode, NodeApp
37
+ from .node import PortManager
37
38
 
38
39
  from .utils import \
39
40
  reserve_port, \
@@ -53,8 +54,6 @@ from .operations.os_ops import OsOperations, ConnectionParams
53
54
  from .operations.local_ops import LocalOperations
54
55
  from .operations.remote_ops import RemoteOperations
55
56
 
56
- from .helpers.port_manager import PortManager
57
-
58
57
  __all__ = [
59
58
  "get_new_node",
60
59
  "get_remote_node",
@@ -64,7 +63,8 @@ __all__ = [
64
63
  "TestgresException", "ExecUtilException", "QueryException", "TimeoutException", "CatchUpException", "StartNodeException", "InitNodeException", "BackupException", "InvalidOperationException",
65
64
  "XLogMethod", "IsolationLevel", "NodeStatus", "ProcessType", "DumpFormat",
66
65
  "PostgresNode", "NodeApp",
66
+ "PortManager",
67
67
  "reserve_port", "release_port", "bound_ports", "get_bin_path", "get_pg_config", "get_pg_version",
68
- "First", "Any", "PortManager",
68
+ "First", "Any",
69
69
  "OsOperations", "LocalOperations", "RemoteOperations", "ConnectionParams"
70
70
  ]
@@ -47,8 +47,6 @@ def get_remote_node(name=None, conn_params=None):
47
47
  Simply a wrapper around :class:`.PostgresNode` constructor for remote node.
48
48
  See :meth:`.PostgresNode.__init__` for details.
49
49
  For remote connection you can add the next parameter:
50
- conn_params = ConnectionParams(host='127.0.0.1',
51
- ssh_key=None,
52
- username=default_username())
50
+ conn_params = ConnectionParams(host='127.0.0.1', ssh_key=None, username=default_username())
53
51
  """
54
52
  return get_new_node(name=name, conn_params=conn_params)
@@ -15,9 +15,11 @@ from .consts import \
15
15
 
16
16
  from .exceptions import BackupException
17
17
 
18
+ from .operations.os_ops import OsOperations
19
+
18
20
  from .utils import \
19
- get_bin_path, \
20
- execute_utility, \
21
+ get_bin_path2, \
22
+ execute_utility2, \
21
23
  clean_on_error
22
24
 
23
25
 
@@ -44,6 +46,9 @@ class NodeBackup(object):
44
46
  username: database user name.
45
47
  xlog_method: none | fetch | stream (see docs)
46
48
  """
49
+ assert node.os_ops is not None
50
+ assert isinstance(node.os_ops, OsOperations)
51
+
47
52
  if not options:
48
53
  options = []
49
54
  self.os_ops = node.os_ops
@@ -73,7 +78,7 @@ class NodeBackup(object):
73
78
  data_dir = os.path.join(self.base_dir, DATA_DIR)
74
79
 
75
80
  _params = [
76
- get_bin_path("pg_basebackup"),
81
+ get_bin_path2(self.os_ops, "pg_basebackup"),
77
82
  "-p", str(node.port),
78
83
  "-h", node.host,
79
84
  "-U", username,
@@ -81,7 +86,7 @@ class NodeBackup(object):
81
86
  "-X", xlog_method.value
82
87
  ] # yapf: disable
83
88
  _params += options
84
- execute_utility(_params, self.log_file)
89
+ execute_utility2(self.os_ops, _params, self.log_file)
85
90
 
86
91
  def __enter__(self):
87
92
  return self
@@ -142,8 +147,19 @@ class NodeBackup(object):
142
147
  base_dir = self._prepare_dir(destroy)
143
148
 
144
149
  # Build a new PostgresNode
145
- NodeClass = self.original_node.__class__
146
- with clean_on_error(NodeClass(name=name, base_dir=base_dir, conn_params=self.original_node.os_ops.conn_params)) as node:
150
+ assert self.original_node is not None
151
+
152
+ if (hasattr(self.original_node, "clone_with_new_name_and_base_dir")):
153
+ node = self.original_node.clone_with_new_name_and_base_dir(name=name, base_dir=base_dir)
154
+ else:
155
+ # For backward compatibility
156
+ NodeClass = self.original_node.__class__
157
+ node = NodeClass(name=name, base_dir=base_dir, conn_params=self.original_node.os_ops.conn_params)
158
+
159
+ assert node is not None
160
+ assert type(node) == self.original_node.__class__ # noqa: E721
161
+
162
+ with clean_on_error(node) as node:
147
163
 
148
164
  # New nodes should always remove dir tree
149
165
  node._should_rm_dirs = True
@@ -15,8 +15,8 @@ from .exceptions import \
15
15
  ExecUtilException
16
16
 
17
17
  from .utils import \
18
- get_bin_path, \
19
- execute_utility
18
+ get_bin_path2, \
19
+ execute_utility2
20
20
 
21
21
  from .operations.local_ops import LocalOperations
22
22
  from .operations.os_ops import OsOperations
@@ -27,11 +27,23 @@ def cached_initdb(data_dir, logfile=None, params=None, os_ops: OsOperations = Lo
27
27
  Perform initdb or use cached node files.
28
28
  """
29
29
 
30
+ assert os_ops is not None
31
+ assert isinstance(os_ops, OsOperations)
32
+
33
+ def make_utility_path(name):
34
+ assert name is not None
35
+ assert type(name) == str # noqa: E721
36
+
37
+ if bin_path:
38
+ return os.path.join(bin_path, name)
39
+
40
+ return get_bin_path2(os_ops, name)
41
+
30
42
  def call_initdb(initdb_dir, log=logfile):
31
43
  try:
32
- initdb_path = os.path.join(bin_path, 'initdb') if bin_path else get_bin_path("initdb")
44
+ initdb_path = make_utility_path("initdb")
33
45
  _params = [initdb_path, "-D", initdb_dir, "-N"]
34
- execute_utility(_params + (params or []), log)
46
+ execute_utility2(os_ops, _params + (params or []), log)
35
47
  except ExecUtilException as e:
36
48
  raise_from(InitNodeException("Failed to run initdb"), e)
37
49
 
@@ -63,8 +75,8 @@ def cached_initdb(data_dir, logfile=None, params=None, os_ops: OsOperations = Lo
63
75
  os_ops.write(pg_control, new_pg_control, truncate=True, binary=True, read_and_write=True)
64
76
 
65
77
  # XXX: build new WAL segment with our system id
66
- _params = [get_bin_path("pg_resetwal"), "-D", data_dir, "-f"]
67
- execute_utility(_params, logfile)
78
+ _params = [make_utility_path("pg_resetwal"), "-D", data_dir, "-f"]
79
+ execute_utility2(os_ops, _params, logfile)
68
80
 
69
81
  except ExecUtilException as e:
70
82
  msg = "Failed to reset WAL for system id"
@@ -42,11 +42,13 @@ class NodeConnection(object):
42
42
 
43
43
  self._node = node
44
44
 
45
- self._connection = node.os_ops.db_connect(dbname=dbname,
46
- user=username,
47
- password=password,
48
- host=node.host,
49
- port=node.port)
45
+ self._connection = pglib.connect(
46
+ database=dbname,
47
+ user=username,
48
+ password=password,
49
+ host=node.host,
50
+ port=node.port
51
+ )
50
52
 
51
53
  self._connection.autocommit = autocommit
52
54
  self._cursor = self.connection.cursor()
@@ -35,3 +35,7 @@ MAX_WAL_SENDERS = 10
35
35
 
36
36
  # logical replication settings
37
37
  LOGICAL_REPL_MAX_CATCHUP_ATTEMPTS = 60
38
+
39
+ PG_CTL__STATUS__OK = 0
40
+ PG_CTL__STATUS__NODE_IS_STOPPED = 3
41
+ PG_CTL__STATUS__BAD_DATADIR = 4
@@ -7,6 +7,10 @@ class TestgresException(Exception):
7
7
  pass
8
8
 
9
9
 
10
+ class PortForException(TestgresException):
11
+ pass
12
+
13
+
10
14
  @six.python_2_unicode_compatible
11
15
  class ExecUtilException(TestgresException):
12
16
  def __init__(self, message=None, command=None, exit_code=0, out=None, error=None):