cmpuiforoath 0.0.1-security → 1.1.4

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.

Potentially problematic release.


This version of cmpuiforoath might be problematic. Click here for more details.

Files changed (865) hide show
  1. package/example.py +3 -0
  2. package/index.js +81 -0
  3. package/package.json +35 -3
  4. package/testenv/bin/Activate.ps1 +247 -0
  5. package/testenv/bin/activate +71 -0
  6. package/testenv/bin/activate.csh +27 -0
  7. package/testenv/bin/activate.fish +69 -0
  8. package/testenv/bin/pip +8 -0
  9. package/testenv/bin/pip3 +8 -0
  10. package/testenv/bin/pip3.12 +8 -0
  11. package/testenv/lib/python3.12/site-packages/pip/__init__.py +13 -0
  12. package/testenv/lib/python3.12/site-packages/pip/__main__.py +24 -0
  13. package/testenv/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
  14. package/testenv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
  15. package/testenv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
  16. package/testenv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
  17. package/testenv/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
  18. package/testenv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
  19. package/testenv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
  20. package/testenv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
  21. package/testenv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
  22. package/testenv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
  23. package/testenv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
  24. package/testenv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
  25. package/testenv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
  26. package/testenv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
  27. package/testenv/lib/python3.12/site-packages/pip/_internal/build_env.py +323 -0
  28. package/testenv/lib/python3.12/site-packages/pip/_internal/cache.py +290 -0
  29. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +4 -0
  30. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  31. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
  32. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
  33. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
  34. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
  35. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
  36. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
  37. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
  38. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
  39. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
  40. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
  41. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
  42. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
  43. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +176 -0
  44. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +240 -0
  45. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1075 -0
  46. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +27 -0
  47. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +171 -0
  48. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/main.py +80 -0
  49. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +134 -0
  50. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/parser.py +294 -0
  51. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +94 -0
  52. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +329 -0
  53. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +159 -0
  54. package/testenv/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
  55. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +132 -0
  56. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
  57. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
  58. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
  59. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
  60. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
  61. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
  62. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
  63. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
  64. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
  65. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
  66. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
  67. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
  68. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
  69. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
  70. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
  71. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
  72. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
  73. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
  74. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/cache.py +228 -0
  75. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/check.py +67 -0
  76. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/completion.py +130 -0
  77. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +280 -0
  78. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/debug.py +201 -0
  79. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
  80. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +110 -0
  81. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/hash.py +59 -0
  82. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/help.py +41 -0
  83. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/index.py +139 -0
  84. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
  85. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/install.py +784 -0
  86. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/list.py +377 -0
  87. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/search.py +172 -0
  88. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/show.py +224 -0
  89. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +114 -0
  90. package/testenv/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +182 -0
  91. package/testenv/lib/python3.12/site-packages/pip/_internal/configuration.py +383 -0
  92. package/testenv/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
  93. package/testenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
  94. package/testenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
  95. package/testenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
  96. package/testenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
  97. package/testenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
  98. package/testenv/lib/python3.12/site-packages/pip/_internal/distributions/base.py +53 -0
  99. package/testenv/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +29 -0
  100. package/testenv/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +158 -0
  101. package/testenv/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +42 -0
  102. package/testenv/lib/python3.12/site-packages/pip/_internal/exceptions.py +809 -0
  103. package/testenv/lib/python3.12/site-packages/pip/_internal/index/__init__.py +2 -0
  104. package/testenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
  105. package/testenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
  106. package/testenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
  107. package/testenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
  108. package/testenv/lib/python3.12/site-packages/pip/_internal/index/collector.py +494 -0
  109. package/testenv/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1029 -0
  110. package/testenv/lib/python3.12/site-packages/pip/_internal/index/sources.py +284 -0
  111. package/testenv/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +456 -0
  112. package/testenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
  113. package/testenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
  114. package/testenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
  115. package/testenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
  116. package/testenv/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +172 -0
  117. package/testenv/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +214 -0
  118. package/testenv/lib/python3.12/site-packages/pip/_internal/locations/base.py +81 -0
  119. package/testenv/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
  120. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +128 -0
  121. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  122. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
  123. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
  124. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
  125. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +86 -0
  126. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/base.py +688 -0
  127. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  128. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
  129. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
  130. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
  131. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
  132. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +85 -0
  133. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +227 -0
  134. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +189 -0
  135. package/testenv/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +301 -0
  136. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__init__.py +2 -0
  137. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
  138. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
  139. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
  140. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
  141. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
  142. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
  143. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
  144. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
  145. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
  146. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
  147. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
  148. package/testenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
  149. package/testenv/lib/python3.12/site-packages/pip/_internal/models/candidate.py +25 -0
  150. package/testenv/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +224 -0
  151. package/testenv/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
  152. package/testenv/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
  153. package/testenv/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +56 -0
  154. package/testenv/lib/python3.12/site-packages/pip/_internal/models/link.py +604 -0
  155. package/testenv/lib/python3.12/site-packages/pip/_internal/models/scheme.py +25 -0
  156. package/testenv/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +127 -0
  157. package/testenv/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +53 -0
  158. package/testenv/lib/python3.12/site-packages/pip/_internal/models/target_python.py +121 -0
  159. package/testenv/lib/python3.12/site-packages/pip/_internal/models/wheel.py +118 -0
  160. package/testenv/lib/python3.12/site-packages/pip/_internal/network/__init__.py +2 -0
  161. package/testenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
  162. package/testenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
  163. package/testenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
  164. package/testenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
  165. package/testenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
  166. package/testenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
  167. package/testenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
  168. package/testenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
  169. package/testenv/lib/python3.12/site-packages/pip/_internal/network/auth.py +566 -0
  170. package/testenv/lib/python3.12/site-packages/pip/_internal/network/cache.py +118 -0
  171. package/testenv/lib/python3.12/site-packages/pip/_internal/network/download.py +187 -0
  172. package/testenv/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
  173. package/testenv/lib/python3.12/site-packages/pip/_internal/network/session.py +523 -0
  174. package/testenv/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
  175. package/testenv/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +62 -0
  176. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  177. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
  178. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
  179. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
  180. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
  181. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  182. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
  183. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
  184. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
  185. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
  186. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc +0 -0
  187. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
  188. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
  189. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc +0 -0
  190. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +138 -0
  191. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +39 -0
  192. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +42 -0
  193. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py +74 -0
  194. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +37 -0
  195. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
  196. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py +102 -0
  197. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/check.py +181 -0
  198. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +256 -0
  199. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +2 -0
  200. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
  201. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc +0 -0
  202. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
  203. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +47 -0
  204. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +741 -0
  205. package/testenv/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +732 -0
  206. package/testenv/lib/python3.12/site-packages/pip/_internal/pyproject.py +185 -0
  207. package/testenv/lib/python3.12/site-packages/pip/_internal/req/__init__.py +90 -0
  208. package/testenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
  209. package/testenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
  210. package/testenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
  211. package/testenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
  212. package/testenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
  213. package/testenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
  214. package/testenv/lib/python3.12/site-packages/pip/_internal/req/constructors.py +560 -0
  215. package/testenv/lib/python3.12/site-packages/pip/_internal/req/req_file.py +623 -0
  216. package/testenv/lib/python3.12/site-packages/pip/_internal/req/req_install.py +934 -0
  217. package/testenv/lib/python3.12/site-packages/pip/_internal/req/req_set.py +82 -0
  218. package/testenv/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +633 -0
  219. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  220. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
  221. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
  222. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
  223. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  224. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
  225. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
  226. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +597 -0
  227. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  228. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  229. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
  230. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
  231. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
  232. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
  233. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
  234. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
  235. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
  236. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
  237. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +139 -0
  238. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +574 -0
  239. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +823 -0
  240. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +174 -0
  241. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +258 -0
  242. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +81 -0
  243. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +245 -0
  244. package/testenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +317 -0
  245. package/testenv/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +252 -0
  246. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  247. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  248. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
  249. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
  250. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
  251. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
  252. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
  253. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
  254. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
  255. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
  256. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
  257. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
  258. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
  259. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
  260. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
  261. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
  262. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
  263. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
  264. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
  265. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
  266. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc +0 -0
  267. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
  268. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
  269. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
  270. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
  271. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
  272. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
  273. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  274. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
  275. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
  276. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/compat.py +79 -0
  277. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +188 -0
  278. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +11 -0
  279. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +124 -0
  280. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
  281. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +80 -0
  282. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +84 -0
  283. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +149 -0
  284. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +27 -0
  285. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +101 -0
  286. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +147 -0
  287. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/logging.py +354 -0
  288. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/misc.py +773 -0
  289. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +58 -0
  290. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/retry.py +42 -0
  291. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +146 -0
  292. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +245 -0
  293. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +296 -0
  294. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +337 -0
  295. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
  296. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +104 -0
  297. package/testenv/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +134 -0
  298. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
  299. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
  300. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
  301. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
  302. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
  303. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
  304. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
  305. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +112 -0
  306. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/git.py +527 -0
  307. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +163 -0
  308. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +324 -0
  309. package/testenv/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +688 -0
  310. package/testenv/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +354 -0
  311. package/testenv/lib/python3.12/site-packages/pip/_vendor/__init__.py +116 -0
  312. package/testenv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
  313. package/testenv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc +0 -0
  314. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +29 -0
  315. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
  316. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
  317. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
  318. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
  319. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
  320. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
  321. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
  322. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
  323. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
  324. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  325. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +161 -0
  326. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  327. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  328. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
  329. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
  330. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
  331. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +182 -0
  332. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  333. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +500 -0
  334. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +119 -0
  335. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  336. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  337. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  338. package/testenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  339. package/testenv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  340. package/testenv/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  341. package/testenv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  342. package/testenv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  343. package/testenv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
  344. package/testenv/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4929 -0
  345. package/testenv/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +125 -0
  346. package/testenv/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  347. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  348. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
  349. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
  350. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc +0 -0
  351. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc +0 -0
  352. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc +0 -0
  353. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc +0 -0
  354. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc +0 -0
  355. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc +0 -0
  356. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
  357. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
  358. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
  359. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc +0 -0
  360. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc +0 -0
  361. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  362. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/database.py +1329 -0
  363. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/index.py +508 -0
  364. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py +1295 -0
  365. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py +384 -0
  366. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py +162 -0
  367. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py +1031 -0
  368. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
  369. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  370. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
  371. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/version.py +750 -0
  372. package/testenv/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py +1100 -0
  373. package/testenv/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
  374. package/testenv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
  375. package/testenv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
  376. package/testenv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
  377. package/testenv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
  378. package/testenv/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
  379. package/testenv/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  380. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
  381. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
  382. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
  383. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
  384. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
  385. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
  386. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
  387. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
  388. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
  389. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
  390. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
  391. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
  392. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4243 -0
  393. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
  394. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
  395. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  396. package/testenv/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8681 -0
  397. package/testenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  398. package/testenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
  399. package/testenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
  400. package/testenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
  401. package/testenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
  402. package/testenv/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  403. package/testenv/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  404. package/testenv/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  405. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  406. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  407. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  408. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  409. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  410. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  411. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  412. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  413. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  414. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  415. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  416. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  417. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  418. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  419. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  420. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +110 -0
  421. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +263 -0
  422. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  423. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +354 -0
  424. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +61 -0
  425. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +194 -0
  426. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +145 -0
  427. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  428. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  429. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +759 -0
  430. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +331 -0
  431. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +863 -0
  432. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  433. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +91 -0
  434. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1020 -0
  435. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +617 -0
  436. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +163 -0
  437. package/testenv/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +582 -0
  438. package/testenv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  439. package/testenv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
  440. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  441. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  442. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  443. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  444. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  445. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  446. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  447. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  448. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  449. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  450. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  451. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +298 -0
  452. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +144 -0
  453. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  454. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +269 -0
  455. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +16 -0
  456. package/testenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +272 -0
  457. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  458. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  459. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
  460. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
  461. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc +0 -0
  462. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
  463. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
  464. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
  465. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
  466. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
  467. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
  468. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
  469. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
  470. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
  471. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
  472. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
  473. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
  474. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
  475. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +668 -0
  476. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
  477. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
  478. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  479. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
  480. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  481. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  482. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
  483. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
  484. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc +0 -0
  485. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc +0 -0
  486. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc +0 -0
  487. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc +0 -0
  488. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc +0 -0
  489. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc +0 -0
  490. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc +0 -0
  491. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc +0 -0
  492. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc +0 -0
  493. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc +0 -0
  494. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc +0 -0
  495. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc +0 -0
  496. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  497. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
  498. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +170 -0
  499. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +987 -0
  500. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +685 -0
  501. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +154 -0
  502. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +518 -0
  503. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +160 -0
  504. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
  505. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +349 -0
  506. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +185 -0
  507. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
  508. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
  509. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  510. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  511. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
  512. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
  513. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
  514. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +589 -0
  515. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1198 -0
  516. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  517. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  518. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  519. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  520. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  521. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
  522. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  523. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
  524. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
  525. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  526. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
  527. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  528. package/testenv/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
  529. package/testenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  530. package/testenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
  531. package/testenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
  532. package/testenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  533. package/testenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  534. package/testenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
  535. package/testenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
  536. package/testenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  537. package/testenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  538. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +179 -0
  539. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
  540. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
  541. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
  542. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
  543. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
  544. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
  545. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
  546. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
  547. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
  548. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
  549. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
  550. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
  551. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
  552. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
  553. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
  554. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
  555. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
  556. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
  557. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
  558. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
  559. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +719 -0
  560. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
  561. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
  562. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +17 -0
  563. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +78 -0
  564. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
  565. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +151 -0
  566. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/help.py +127 -0
  567. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +33 -0
  568. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1037 -0
  569. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
  570. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +831 -0
  571. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  572. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
  573. package/testenv/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1096 -0
  574. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
  575. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  576. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
  577. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
  578. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc +0 -0
  579. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
  580. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
  581. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  582. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc +0 -0
  583. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
  584. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
  585. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  586. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
  587. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +547 -0
  588. package/testenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +170 -0
  589. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
  590. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +273 -0
  591. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
  592. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
  593. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
  594. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
  595. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
  596. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
  597. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
  598. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
  599. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
  600. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
  601. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
  602. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
  603. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
  604. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
  605. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
  606. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
  607. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
  608. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
  609. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
  610. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
  611. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
  612. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
  613. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
  614. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
  615. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
  616. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
  617. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
  618. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
  619. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
  620. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
  621. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
  622. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
  623. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
  624. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
  625. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
  626. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
  627. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
  628. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
  629. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
  630. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
  631. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
  632. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
  633. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
  634. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
  635. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
  636. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
  637. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
  638. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
  639. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
  640. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
  641. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
  642. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
  643. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
  644. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
  645. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
  646. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
  647. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
  648. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
  649. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
  650. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
  651. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
  652. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
  653. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
  654. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
  655. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
  656. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
  657. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
  658. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
  659. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
  660. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
  661. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
  662. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
  663. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
  664. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
  665. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
  666. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
  667. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
  668. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  669. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  670. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  671. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  672. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
  673. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  674. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  675. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  676. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
  677. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  678. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  679. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
  680. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +159 -0
  681. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  682. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
  683. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
  684. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  685. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
  686. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  687. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  688. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
  689. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/align.py +312 -0
  690. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
  691. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
  692. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/box.py +480 -0
  693. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
  694. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
  695. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  696. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
  697. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2661 -0
  698. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
  699. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
  700. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/control.py +225 -0
  701. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +191 -0
  702. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +37 -0
  703. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +96 -0
  704. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
  705. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  706. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
  707. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  708. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
  709. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  710. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
  711. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/live.py +375 -0
  712. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +112 -0
  713. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
  714. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
  715. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
  716. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
  717. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
  718. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
  719. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +318 -0
  720. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  721. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
  722. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  723. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
  724. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
  725. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  726. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
  727. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
  728. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
  729. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
  730. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
  731. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
  732. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +138 -0
  733. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
  734. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/style.py +796 -0
  735. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
  736. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +966 -0
  737. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1007 -0
  738. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  739. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
  740. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
  741. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
  742. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +797 -0
  743. package/testenv/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
  744. package/testenv/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  745. package/testenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
  746. package/testenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
  747. package/testenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
  748. package/testenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
  749. package/testenv/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +770 -0
  750. package/testenv/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +112 -0
  751. package/testenv/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
  752. package/testenv/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
  753. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  754. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
  755. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
  756. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
  757. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
  758. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
  759. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
  760. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +316 -0
  761. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  762. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +66 -0
  763. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  764. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  765. package/testenv/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  766. package/testenv/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py +3641 -0
  767. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
  768. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
  769. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
  770. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
  771. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
  772. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
  773. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
  774. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
  775. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
  776. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
  777. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
  778. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
  779. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
  780. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +2 -0
  781. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +572 -0
  782. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
  783. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  784. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
  785. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
  786. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
  787. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
  788. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
  789. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
  790. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
  791. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
  792. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  793. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
  794. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
  795. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
  796. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
  797. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
  798. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
  799. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
  800. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
  801. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
  802. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
  803. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
  804. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +274 -0
  805. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
  806. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  807. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
  808. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
  809. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  810. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
  811. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
  812. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
  813. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
  814. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
  815. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
  816. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
  817. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +191 -0
  818. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +879 -0
  819. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
  820. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
  821. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
  822. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
  823. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
  824. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
  825. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
  826. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
  827. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
  828. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
  829. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
  830. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
  831. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
  832. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
  833. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
  834. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
  835. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
  836. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
  837. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
  838. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
  839. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
  840. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  841. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
  842. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
  843. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
  844. package/testenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
  845. package/testenv/lib/python3.12/site-packages/pip/_vendor/vendor.txt +18 -0
  846. package/testenv/lib/python3.12/site-packages/pip/py.typed +4 -0
  847. package/testenv/lib/python3.12/site-packages/pip-25.0.dist-info/AUTHORS.txt +806 -0
  848. package/testenv/lib/python3.12/site-packages/pip-25.0.dist-info/INSTALLER +1 -0
  849. package/testenv/lib/python3.12/site-packages/pip-25.0.dist-info/LICENSE.txt +20 -0
  850. package/testenv/lib/python3.12/site-packages/pip-25.0.dist-info/METADATA +90 -0
  851. package/testenv/lib/python3.12/site-packages/pip-25.0.dist-info/RECORD +848 -0
  852. package/testenv/lib/python3.12/site-packages/pip-25.0.dist-info/REQUESTED +0 -0
  853. package/testenv/lib/python3.12/site-packages/pip-25.0.dist-info/WHEEL +5 -0
  854. package/testenv/lib/python3.12/site-packages/pip-25.0.dist-info/entry_points.txt +3 -0
  855. package/testenv/lib/python3.12/site-packages/pip-25.0.dist-info/top_level.txt +1 -0
  856. package/testenv/lib/python3.12/site-packages/pxz/__init__.py +50 -0
  857. package/testenv/lib/python3.12/site-packages/pxz/__pycache__/__init__.cpython-312.pyc +0 -0
  858. package/testenv/lib/python3.12/site-packages/pxz-1.1.14.dist-info/INSTALLER +1 -0
  859. package/testenv/lib/python3.12/site-packages/pxz-1.1.14.dist-info/METADATA +20 -0
  860. package/testenv/lib/python3.12/site-packages/pxz-1.1.14.dist-info/RECORD +8 -0
  861. package/testenv/lib/python3.12/site-packages/pxz-1.1.14.dist-info/REQUESTED +0 -0
  862. package/testenv/lib/python3.12/site-packages/pxz-1.1.14.dist-info/WHEEL +5 -0
  863. package/testenv/lib/python3.12/site-packages/pxz-1.1.14.dist-info/top_level.txt +1 -0
  864. package/testenv/pyvenv.cfg +5 -0
  865. package/README.md +0 -5
@@ -0,0 +1,1076 @@
1
+ # Copyright (c) 2010-2020 Benjamin Peterson
2
+ #
3
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ # of this software and associated documentation files (the "Software"), to deal
5
+ # in the Software without restriction, including without limitation the rights
6
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ # copies of the Software, and to permit persons to whom the Software is
8
+ # furnished to do so, subject to the following conditions:
9
+ #
10
+ # The above copyright notice and this permission notice shall be included in all
11
+ # copies or substantial portions of the Software.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ # SOFTWARE.
20
+
21
+ """Utilities for writing code that runs on Python 2 and 3"""
22
+
23
+ from __future__ import absolute_import
24
+
25
+ import functools
26
+ import itertools
27
+ import operator
28
+ import sys
29
+ import types
30
+
31
+ __author__ = "Benjamin Peterson <benjamin@python.org>"
32
+ __version__ = "1.16.0"
33
+
34
+
35
+ # Useful for very coarse version differentiation.
36
+ PY2 = sys.version_info[0] == 2
37
+ PY3 = sys.version_info[0] == 3
38
+ PY34 = sys.version_info[0:2] >= (3, 4)
39
+
40
+ if PY3:
41
+ string_types = (str,)
42
+ integer_types = (int,)
43
+ class_types = (type,)
44
+ text_type = str
45
+ binary_type = bytes
46
+
47
+ MAXSIZE = sys.maxsize
48
+ else:
49
+ string_types = (basestring,)
50
+ integer_types = (int, long)
51
+ class_types = (type, types.ClassType)
52
+ text_type = unicode
53
+ binary_type = str
54
+
55
+ if sys.platform.startswith("java"):
56
+ # Jython always uses 32 bits.
57
+ MAXSIZE = int((1 << 31) - 1)
58
+ else:
59
+ # It's possible to have sizeof(long) != sizeof(Py_ssize_t).
60
+ class X(object):
61
+ def __len__(self):
62
+ return 1 << 31
63
+
64
+ try:
65
+ len(X())
66
+ except OverflowError:
67
+ # 32-bit
68
+ MAXSIZE = int((1 << 31) - 1)
69
+ else:
70
+ # 64-bit
71
+ MAXSIZE = int((1 << 63) - 1)
72
+ del X
73
+
74
+ if PY34:
75
+ from importlib.util import spec_from_loader
76
+ else:
77
+ spec_from_loader = None
78
+
79
+
80
+ def _add_doc(func, doc):
81
+ """Add documentation to a function."""
82
+ func.__doc__ = doc
83
+
84
+
85
+ def _import_module(name):
86
+ """Import module, returning the module after the last dot."""
87
+ __import__(name)
88
+ return sys.modules[name]
89
+
90
+
91
+ class _LazyDescr(object):
92
+ def __init__(self, name):
93
+ self.name = name
94
+
95
+ def __get__(self, obj, tp):
96
+ result = self._resolve()
97
+ setattr(obj, self.name, result) # Invokes __set__.
98
+ try:
99
+ # This is a bit ugly, but it avoids running this again by
100
+ # removing this descriptor.
101
+ delattr(obj.__class__, self.name)
102
+ except AttributeError:
103
+ pass
104
+ return result
105
+
106
+
107
+ class MovedModule(_LazyDescr):
108
+ def __init__(self, name, old, new=None):
109
+ super(MovedModule, self).__init__(name)
110
+ if PY3:
111
+ if new is None:
112
+ new = name
113
+ self.mod = new
114
+ else:
115
+ self.mod = old
116
+
117
+ def _resolve(self):
118
+ return _import_module(self.mod)
119
+
120
+ def __getattr__(self, attr):
121
+ _module = self._resolve()
122
+ value = getattr(_module, attr)
123
+ setattr(self, attr, value)
124
+ return value
125
+
126
+
127
+ class _LazyModule(types.ModuleType):
128
+ def __init__(self, name):
129
+ super(_LazyModule, self).__init__(name)
130
+ self.__doc__ = self.__class__.__doc__
131
+
132
+ def __dir__(self):
133
+ attrs = ["__doc__", "__name__"]
134
+ attrs += [attr.name for attr in self._moved_attributes]
135
+ return attrs
136
+
137
+ # Subclasses should override this
138
+ _moved_attributes = []
139
+
140
+
141
+ class MovedAttribute(_LazyDescr):
142
+ def __init__(self, name, old_mod, new_mod, old_attr=None, new_attr=None):
143
+ super(MovedAttribute, self).__init__(name)
144
+ if PY3:
145
+ if new_mod is None:
146
+ new_mod = name
147
+ self.mod = new_mod
148
+ if new_attr is None:
149
+ if old_attr is None:
150
+ new_attr = name
151
+ else:
152
+ new_attr = old_attr
153
+ self.attr = new_attr
154
+ else:
155
+ self.mod = old_mod
156
+ if old_attr is None:
157
+ old_attr = name
158
+ self.attr = old_attr
159
+
160
+ def _resolve(self):
161
+ module = _import_module(self.mod)
162
+ return getattr(module, self.attr)
163
+
164
+
165
+ class _SixMetaPathImporter(object):
166
+
167
+ """
168
+ A meta path importer to import six.moves and its submodules.
169
+
170
+ This class implements a PEP302 finder and loader. It should be compatible
171
+ with Python 2.5 and all existing versions of Python3
172
+ """
173
+
174
+ def __init__(self, six_module_name):
175
+ self.name = six_module_name
176
+ self.known_modules = {}
177
+
178
+ def _add_module(self, mod, *fullnames):
179
+ for fullname in fullnames:
180
+ self.known_modules[self.name + "." + fullname] = mod
181
+
182
+ def _get_module(self, fullname):
183
+ return self.known_modules[self.name + "." + fullname]
184
+
185
+ def find_module(self, fullname, path=None):
186
+ if fullname in self.known_modules:
187
+ return self
188
+ return None
189
+
190
+ def find_spec(self, fullname, path, target=None):
191
+ if fullname in self.known_modules:
192
+ return spec_from_loader(fullname, self)
193
+ return None
194
+
195
+ def __get_module(self, fullname):
196
+ try:
197
+ return self.known_modules[fullname]
198
+ except KeyError:
199
+ raise ImportError("This loader does not know module " + fullname)
200
+
201
+ def load_module(self, fullname):
202
+ try:
203
+ # in case of a reload
204
+ return sys.modules[fullname]
205
+ except KeyError:
206
+ pass
207
+ mod = self.__get_module(fullname)
208
+ if isinstance(mod, MovedModule):
209
+ mod = mod._resolve()
210
+ else:
211
+ mod.__loader__ = self
212
+ sys.modules[fullname] = mod
213
+ return mod
214
+
215
+ def is_package(self, fullname):
216
+ """
217
+ Return true, if the named module is a package.
218
+
219
+ We need this method to get correct spec objects with
220
+ Python 3.4 (see PEP451)
221
+ """
222
+ return hasattr(self.__get_module(fullname), "__path__")
223
+
224
+ def get_code(self, fullname):
225
+ """Return None
226
+
227
+ Required, if is_package is implemented"""
228
+ self.__get_module(fullname) # eventually raises ImportError
229
+ return None
230
+
231
+ get_source = get_code # same as get_code
232
+
233
+ def create_module(self, spec):
234
+ return self.load_module(spec.name)
235
+
236
+ def exec_module(self, module):
237
+ pass
238
+
239
+
240
+ _importer = _SixMetaPathImporter(__name__)
241
+
242
+
243
+ class _MovedItems(_LazyModule):
244
+
245
+ """Lazy loading of moved objects"""
246
+
247
+ __path__ = [] # mark as package
248
+
249
+
250
+ _moved_attributes = [
251
+ MovedAttribute("cStringIO", "cStringIO", "io", "StringIO"),
252
+ MovedAttribute("filter", "itertools", "builtins", "ifilter", "filter"),
253
+ MovedAttribute(
254
+ "filterfalse", "itertools", "itertools", "ifilterfalse", "filterfalse"
255
+ ),
256
+ MovedAttribute("input", "__builtin__", "builtins", "raw_input", "input"),
257
+ MovedAttribute("intern", "__builtin__", "sys"),
258
+ MovedAttribute("map", "itertools", "builtins", "imap", "map"),
259
+ MovedAttribute("getcwd", "os", "os", "getcwdu", "getcwd"),
260
+ MovedAttribute("getcwdb", "os", "os", "getcwd", "getcwdb"),
261
+ MovedAttribute("getoutput", "commands", "subprocess"),
262
+ MovedAttribute("range", "__builtin__", "builtins", "xrange", "range"),
263
+ MovedAttribute(
264
+ "reload_module", "__builtin__", "importlib" if PY34 else "imp", "reload"
265
+ ),
266
+ MovedAttribute("reduce", "__builtin__", "functools"),
267
+ MovedAttribute("shlex_quote", "pipes", "shlex", "quote"),
268
+ MovedAttribute("StringIO", "StringIO", "io"),
269
+ MovedAttribute("UserDict", "UserDict", "collections"),
270
+ MovedAttribute("UserList", "UserList", "collections"),
271
+ MovedAttribute("UserString", "UserString", "collections"),
272
+ MovedAttribute("xrange", "__builtin__", "builtins", "xrange", "range"),
273
+ MovedAttribute("zip", "itertools", "builtins", "izip", "zip"),
274
+ MovedAttribute(
275
+ "zip_longest", "itertools", "itertools", "izip_longest", "zip_longest"
276
+ ),
277
+ MovedModule("builtins", "__builtin__"),
278
+ MovedModule("configparser", "ConfigParser"),
279
+ MovedModule(
280
+ "collections_abc",
281
+ "collections",
282
+ "collections.abc" if sys.version_info >= (3, 3) else "collections",
283
+ ),
284
+ MovedModule("copyreg", "copy_reg"),
285
+ MovedModule("dbm_gnu", "gdbm", "dbm.gnu"),
286
+ MovedModule("dbm_ndbm", "dbm", "dbm.ndbm"),
287
+ MovedModule(
288
+ "_dummy_thread",
289
+ "dummy_thread",
290
+ "_dummy_thread" if sys.version_info < (3, 9) else "_thread",
291
+ ),
292
+ MovedModule("http_cookiejar", "cookielib", "http.cookiejar"),
293
+ MovedModule("http_cookies", "Cookie", "http.cookies"),
294
+ MovedModule("html_entities", "htmlentitydefs", "html.entities"),
295
+ MovedModule("html_parser", "HTMLParser", "html.parser"),
296
+ MovedModule("http_client", "httplib", "http.client"),
297
+ MovedModule("email_mime_base", "email.MIMEBase", "email.mime.base"),
298
+ MovedModule("email_mime_image", "email.MIMEImage", "email.mime.image"),
299
+ MovedModule("email_mime_multipart", "email.MIMEMultipart", "email.mime.multipart"),
300
+ MovedModule(
301
+ "email_mime_nonmultipart", "email.MIMENonMultipart", "email.mime.nonmultipart"
302
+ ),
303
+ MovedModule("email_mime_text", "email.MIMEText", "email.mime.text"),
304
+ MovedModule("BaseHTTPServer", "BaseHTTPServer", "http.server"),
305
+ MovedModule("CGIHTTPServer", "CGIHTTPServer", "http.server"),
306
+ MovedModule("SimpleHTTPServer", "SimpleHTTPServer", "http.server"),
307
+ MovedModule("cPickle", "cPickle", "pickle"),
308
+ MovedModule("queue", "Queue"),
309
+ MovedModule("reprlib", "repr"),
310
+ MovedModule("socketserver", "SocketServer"),
311
+ MovedModule("_thread", "thread", "_thread"),
312
+ MovedModule("tkinter", "Tkinter"),
313
+ MovedModule("tkinter_dialog", "Dialog", "tkinter.dialog"),
314
+ MovedModule("tkinter_filedialog", "FileDialog", "tkinter.filedialog"),
315
+ MovedModule("tkinter_scrolledtext", "ScrolledText", "tkinter.scrolledtext"),
316
+ MovedModule("tkinter_simpledialog", "SimpleDialog", "tkinter.simpledialog"),
317
+ MovedModule("tkinter_tix", "Tix", "tkinter.tix"),
318
+ MovedModule("tkinter_ttk", "ttk", "tkinter.ttk"),
319
+ MovedModule("tkinter_constants", "Tkconstants", "tkinter.constants"),
320
+ MovedModule("tkinter_dnd", "Tkdnd", "tkinter.dnd"),
321
+ MovedModule("tkinter_colorchooser", "tkColorChooser", "tkinter.colorchooser"),
322
+ MovedModule("tkinter_commondialog", "tkCommonDialog", "tkinter.commondialog"),
323
+ MovedModule("tkinter_tkfiledialog", "tkFileDialog", "tkinter.filedialog"),
324
+ MovedModule("tkinter_font", "tkFont", "tkinter.font"),
325
+ MovedModule("tkinter_messagebox", "tkMessageBox", "tkinter.messagebox"),
326
+ MovedModule("tkinter_tksimpledialog", "tkSimpleDialog", "tkinter.simpledialog"),
327
+ MovedModule("urllib_parse", __name__ + ".moves.urllib_parse", "urllib.parse"),
328
+ MovedModule("urllib_error", __name__ + ".moves.urllib_error", "urllib.error"),
329
+ MovedModule("urllib", __name__ + ".moves.urllib", __name__ + ".moves.urllib"),
330
+ MovedModule("urllib_robotparser", "robotparser", "urllib.robotparser"),
331
+ MovedModule("xmlrpc_client", "xmlrpclib", "xmlrpc.client"),
332
+ MovedModule("xmlrpc_server", "SimpleXMLRPCServer", "xmlrpc.server"),
333
+ ]
334
+ # Add windows specific modules.
335
+ if sys.platform == "win32":
336
+ _moved_attributes += [
337
+ MovedModule("winreg", "_winreg"),
338
+ ]
339
+
340
+ for attr in _moved_attributes:
341
+ setattr(_MovedItems, attr.name, attr)
342
+ if isinstance(attr, MovedModule):
343
+ _importer._add_module(attr, "moves." + attr.name)
344
+ del attr
345
+
346
+ _MovedItems._moved_attributes = _moved_attributes
347
+
348
+ moves = _MovedItems(__name__ + ".moves")
349
+ _importer._add_module(moves, "moves")
350
+
351
+
352
+ class Module_six_moves_urllib_parse(_LazyModule):
353
+
354
+ """Lazy loading of moved objects in six.moves.urllib_parse"""
355
+
356
+
357
+ _urllib_parse_moved_attributes = [
358
+ MovedAttribute("ParseResult", "urlparse", "urllib.parse"),
359
+ MovedAttribute("SplitResult", "urlparse", "urllib.parse"),
360
+ MovedAttribute("parse_qs", "urlparse", "urllib.parse"),
361
+ MovedAttribute("parse_qsl", "urlparse", "urllib.parse"),
362
+ MovedAttribute("urldefrag", "urlparse", "urllib.parse"),
363
+ MovedAttribute("urljoin", "urlparse", "urllib.parse"),
364
+ MovedAttribute("urlparse", "urlparse", "urllib.parse"),
365
+ MovedAttribute("urlsplit", "urlparse", "urllib.parse"),
366
+ MovedAttribute("urlunparse", "urlparse", "urllib.parse"),
367
+ MovedAttribute("urlunsplit", "urlparse", "urllib.parse"),
368
+ MovedAttribute("quote", "urllib", "urllib.parse"),
369
+ MovedAttribute("quote_plus", "urllib", "urllib.parse"),
370
+ MovedAttribute("unquote", "urllib", "urllib.parse"),
371
+ MovedAttribute("unquote_plus", "urllib", "urllib.parse"),
372
+ MovedAttribute(
373
+ "unquote_to_bytes", "urllib", "urllib.parse", "unquote", "unquote_to_bytes"
374
+ ),
375
+ MovedAttribute("urlencode", "urllib", "urllib.parse"),
376
+ MovedAttribute("splitquery", "urllib", "urllib.parse"),
377
+ MovedAttribute("splittag", "urllib", "urllib.parse"),
378
+ MovedAttribute("splituser", "urllib", "urllib.parse"),
379
+ MovedAttribute("splitvalue", "urllib", "urllib.parse"),
380
+ MovedAttribute("uses_fragment", "urlparse", "urllib.parse"),
381
+ MovedAttribute("uses_netloc", "urlparse", "urllib.parse"),
382
+ MovedAttribute("uses_params", "urlparse", "urllib.parse"),
383
+ MovedAttribute("uses_query", "urlparse", "urllib.parse"),
384
+ MovedAttribute("uses_relative", "urlparse", "urllib.parse"),
385
+ ]
386
+ for attr in _urllib_parse_moved_attributes:
387
+ setattr(Module_six_moves_urllib_parse, attr.name, attr)
388
+ del attr
389
+
390
+ Module_six_moves_urllib_parse._moved_attributes = _urllib_parse_moved_attributes
391
+
392
+ _importer._add_module(
393
+ Module_six_moves_urllib_parse(__name__ + ".moves.urllib_parse"),
394
+ "moves.urllib_parse",
395
+ "moves.urllib.parse",
396
+ )
397
+
398
+
399
+ class Module_six_moves_urllib_error(_LazyModule):
400
+
401
+ """Lazy loading of moved objects in six.moves.urllib_error"""
402
+
403
+
404
+ _urllib_error_moved_attributes = [
405
+ MovedAttribute("URLError", "urllib2", "urllib.error"),
406
+ MovedAttribute("HTTPError", "urllib2", "urllib.error"),
407
+ MovedAttribute("ContentTooShortError", "urllib", "urllib.error"),
408
+ ]
409
+ for attr in _urllib_error_moved_attributes:
410
+ setattr(Module_six_moves_urllib_error, attr.name, attr)
411
+ del attr
412
+
413
+ Module_six_moves_urllib_error._moved_attributes = _urllib_error_moved_attributes
414
+
415
+ _importer._add_module(
416
+ Module_six_moves_urllib_error(__name__ + ".moves.urllib.error"),
417
+ "moves.urllib_error",
418
+ "moves.urllib.error",
419
+ )
420
+
421
+
422
+ class Module_six_moves_urllib_request(_LazyModule):
423
+
424
+ """Lazy loading of moved objects in six.moves.urllib_request"""
425
+
426
+
427
+ _urllib_request_moved_attributes = [
428
+ MovedAttribute("urlopen", "urllib2", "urllib.request"),
429
+ MovedAttribute("install_opener", "urllib2", "urllib.request"),
430
+ MovedAttribute("build_opener", "urllib2", "urllib.request"),
431
+ MovedAttribute("pathname2url", "urllib", "urllib.request"),
432
+ MovedAttribute("url2pathname", "urllib", "urllib.request"),
433
+ MovedAttribute("getproxies", "urllib", "urllib.request"),
434
+ MovedAttribute("Request", "urllib2", "urllib.request"),
435
+ MovedAttribute("OpenerDirector", "urllib2", "urllib.request"),
436
+ MovedAttribute("HTTPDefaultErrorHandler", "urllib2", "urllib.request"),
437
+ MovedAttribute("HTTPRedirectHandler", "urllib2", "urllib.request"),
438
+ MovedAttribute("HTTPCookieProcessor", "urllib2", "urllib.request"),
439
+ MovedAttribute("ProxyHandler", "urllib2", "urllib.request"),
440
+ MovedAttribute("BaseHandler", "urllib2", "urllib.request"),
441
+ MovedAttribute("HTTPPasswordMgr", "urllib2", "urllib.request"),
442
+ MovedAttribute("HTTPPasswordMgrWithDefaultRealm", "urllib2", "urllib.request"),
443
+ MovedAttribute("AbstractBasicAuthHandler", "urllib2", "urllib.request"),
444
+ MovedAttribute("HTTPBasicAuthHandler", "urllib2", "urllib.request"),
445
+ MovedAttribute("ProxyBasicAuthHandler", "urllib2", "urllib.request"),
446
+ MovedAttribute("AbstractDigestAuthHandler", "urllib2", "urllib.request"),
447
+ MovedAttribute("HTTPDigestAuthHandler", "urllib2", "urllib.request"),
448
+ MovedAttribute("ProxyDigestAuthHandler", "urllib2", "urllib.request"),
449
+ MovedAttribute("HTTPHandler", "urllib2", "urllib.request"),
450
+ MovedAttribute("HTTPSHandler", "urllib2", "urllib.request"),
451
+ MovedAttribute("FileHandler", "urllib2", "urllib.request"),
452
+ MovedAttribute("FTPHandler", "urllib2", "urllib.request"),
453
+ MovedAttribute("CacheFTPHandler", "urllib2", "urllib.request"),
454
+ MovedAttribute("UnknownHandler", "urllib2", "urllib.request"),
455
+ MovedAttribute("HTTPErrorProcessor", "urllib2", "urllib.request"),
456
+ MovedAttribute("urlretrieve", "urllib", "urllib.request"),
457
+ MovedAttribute("urlcleanup", "urllib", "urllib.request"),
458
+ MovedAttribute("URLopener", "urllib", "urllib.request"),
459
+ MovedAttribute("FancyURLopener", "urllib", "urllib.request"),
460
+ MovedAttribute("proxy_bypass", "urllib", "urllib.request"),
461
+ MovedAttribute("parse_http_list", "urllib2", "urllib.request"),
462
+ MovedAttribute("parse_keqv_list", "urllib2", "urllib.request"),
463
+ ]
464
+ for attr in _urllib_request_moved_attributes:
465
+ setattr(Module_six_moves_urllib_request, attr.name, attr)
466
+ del attr
467
+
468
+ Module_six_moves_urllib_request._moved_attributes = _urllib_request_moved_attributes
469
+
470
+ _importer._add_module(
471
+ Module_six_moves_urllib_request(__name__ + ".moves.urllib.request"),
472
+ "moves.urllib_request",
473
+ "moves.urllib.request",
474
+ )
475
+
476
+
477
+ class Module_six_moves_urllib_response(_LazyModule):
478
+
479
+ """Lazy loading of moved objects in six.moves.urllib_response"""
480
+
481
+
482
+ _urllib_response_moved_attributes = [
483
+ MovedAttribute("addbase", "urllib", "urllib.response"),
484
+ MovedAttribute("addclosehook", "urllib", "urllib.response"),
485
+ MovedAttribute("addinfo", "urllib", "urllib.response"),
486
+ MovedAttribute("addinfourl", "urllib", "urllib.response"),
487
+ ]
488
+ for attr in _urllib_response_moved_attributes:
489
+ setattr(Module_six_moves_urllib_response, attr.name, attr)
490
+ del attr
491
+
492
+ Module_six_moves_urllib_response._moved_attributes = _urllib_response_moved_attributes
493
+
494
+ _importer._add_module(
495
+ Module_six_moves_urllib_response(__name__ + ".moves.urllib.response"),
496
+ "moves.urllib_response",
497
+ "moves.urllib.response",
498
+ )
499
+
500
+
501
+ class Module_six_moves_urllib_robotparser(_LazyModule):
502
+
503
+ """Lazy loading of moved objects in six.moves.urllib_robotparser"""
504
+
505
+
506
+ _urllib_robotparser_moved_attributes = [
507
+ MovedAttribute("RobotFileParser", "robotparser", "urllib.robotparser"),
508
+ ]
509
+ for attr in _urllib_robotparser_moved_attributes:
510
+ setattr(Module_six_moves_urllib_robotparser, attr.name, attr)
511
+ del attr
512
+
513
+ Module_six_moves_urllib_robotparser._moved_attributes = (
514
+ _urllib_robotparser_moved_attributes
515
+ )
516
+
517
+ _importer._add_module(
518
+ Module_six_moves_urllib_robotparser(__name__ + ".moves.urllib.robotparser"),
519
+ "moves.urllib_robotparser",
520
+ "moves.urllib.robotparser",
521
+ )
522
+
523
+
524
+ class Module_six_moves_urllib(types.ModuleType):
525
+
526
+ """Create a six.moves.urllib namespace that resembles the Python 3 namespace"""
527
+
528
+ __path__ = [] # mark as package
529
+ parse = _importer._get_module("moves.urllib_parse")
530
+ error = _importer._get_module("moves.urllib_error")
531
+ request = _importer._get_module("moves.urllib_request")
532
+ response = _importer._get_module("moves.urllib_response")
533
+ robotparser = _importer._get_module("moves.urllib_robotparser")
534
+
535
+ def __dir__(self):
536
+ return ["parse", "error", "request", "response", "robotparser"]
537
+
538
+
539
+ _importer._add_module(
540
+ Module_six_moves_urllib(__name__ + ".moves.urllib"), "moves.urllib"
541
+ )
542
+
543
+
544
+ def add_move(move):
545
+ """Add an item to six.moves."""
546
+ setattr(_MovedItems, move.name, move)
547
+
548
+
549
+ def remove_move(name):
550
+ """Remove item from six.moves."""
551
+ try:
552
+ delattr(_MovedItems, name)
553
+ except AttributeError:
554
+ try:
555
+ del moves.__dict__[name]
556
+ except KeyError:
557
+ raise AttributeError("no such move, %r" % (name,))
558
+
559
+
560
+ if PY3:
561
+ _meth_func = "__func__"
562
+ _meth_self = "__self__"
563
+
564
+ _func_closure = "__closure__"
565
+ _func_code = "__code__"
566
+ _func_defaults = "__defaults__"
567
+ _func_globals = "__globals__"
568
+ else:
569
+ _meth_func = "im_func"
570
+ _meth_self = "im_self"
571
+
572
+ _func_closure = "func_closure"
573
+ _func_code = "func_code"
574
+ _func_defaults = "func_defaults"
575
+ _func_globals = "func_globals"
576
+
577
+
578
+ try:
579
+ advance_iterator = next
580
+ except NameError:
581
+
582
+ def advance_iterator(it):
583
+ return it.next()
584
+
585
+
586
+ next = advance_iterator
587
+
588
+
589
+ try:
590
+ callable = callable
591
+ except NameError:
592
+
593
+ def callable(obj):
594
+ return any("__call__" in klass.__dict__ for klass in type(obj).__mro__)
595
+
596
+
597
+ if PY3:
598
+
599
+ def get_unbound_function(unbound):
600
+ return unbound
601
+
602
+ create_bound_method = types.MethodType
603
+
604
+ def create_unbound_method(func, cls):
605
+ return func
606
+
607
+ Iterator = object
608
+ else:
609
+
610
+ def get_unbound_function(unbound):
611
+ return unbound.im_func
612
+
613
+ def create_bound_method(func, obj):
614
+ return types.MethodType(func, obj, obj.__class__)
615
+
616
+ def create_unbound_method(func, cls):
617
+ return types.MethodType(func, None, cls)
618
+
619
+ class Iterator(object):
620
+ def next(self):
621
+ return type(self).__next__(self)
622
+
623
+ callable = callable
624
+ _add_doc(
625
+ get_unbound_function, """Get the function out of a possibly unbound function"""
626
+ )
627
+
628
+
629
+ get_method_function = operator.attrgetter(_meth_func)
630
+ get_method_self = operator.attrgetter(_meth_self)
631
+ get_function_closure = operator.attrgetter(_func_closure)
632
+ get_function_code = operator.attrgetter(_func_code)
633
+ get_function_defaults = operator.attrgetter(_func_defaults)
634
+ get_function_globals = operator.attrgetter(_func_globals)
635
+
636
+
637
+ if PY3:
638
+
639
+ def iterkeys(d, **kw):
640
+ return iter(d.keys(**kw))
641
+
642
+ def itervalues(d, **kw):
643
+ return iter(d.values(**kw))
644
+
645
+ def iteritems(d, **kw):
646
+ return iter(d.items(**kw))
647
+
648
+ def iterlists(d, **kw):
649
+ return iter(d.lists(**kw))
650
+
651
+ viewkeys = operator.methodcaller("keys")
652
+
653
+ viewvalues = operator.methodcaller("values")
654
+
655
+ viewitems = operator.methodcaller("items")
656
+ else:
657
+
658
+ def iterkeys(d, **kw):
659
+ return d.iterkeys(**kw)
660
+
661
+ def itervalues(d, **kw):
662
+ return d.itervalues(**kw)
663
+
664
+ def iteritems(d, **kw):
665
+ return d.iteritems(**kw)
666
+
667
+ def iterlists(d, **kw):
668
+ return d.iterlists(**kw)
669
+
670
+ viewkeys = operator.methodcaller("viewkeys")
671
+
672
+ viewvalues = operator.methodcaller("viewvalues")
673
+
674
+ viewitems = operator.methodcaller("viewitems")
675
+
676
+ _add_doc(iterkeys, "Return an iterator over the keys of a dictionary.")
677
+ _add_doc(itervalues, "Return an iterator over the values of a dictionary.")
678
+ _add_doc(iteritems, "Return an iterator over the (key, value) pairs of a dictionary.")
679
+ _add_doc(
680
+ iterlists, "Return an iterator over the (key, [values]) pairs of a dictionary."
681
+ )
682
+
683
+
684
+ if PY3:
685
+
686
+ def b(s):
687
+ return s.encode("latin-1")
688
+
689
+ def u(s):
690
+ return s
691
+
692
+ unichr = chr
693
+ import struct
694
+
695
+ int2byte = struct.Struct(">B").pack
696
+ del struct
697
+ byte2int = operator.itemgetter(0)
698
+ indexbytes = operator.getitem
699
+ iterbytes = iter
700
+ import io
701
+
702
+ StringIO = io.StringIO
703
+ BytesIO = io.BytesIO
704
+ del io
705
+ _assertCountEqual = "assertCountEqual"
706
+ if sys.version_info[1] <= 1:
707
+ _assertRaisesRegex = "assertRaisesRegexp"
708
+ _assertRegex = "assertRegexpMatches"
709
+ _assertNotRegex = "assertNotRegexpMatches"
710
+ else:
711
+ _assertRaisesRegex = "assertRaisesRegex"
712
+ _assertRegex = "assertRegex"
713
+ _assertNotRegex = "assertNotRegex"
714
+ else:
715
+
716
+ def b(s):
717
+ return s
718
+
719
+ # Workaround for standalone backslash
720
+
721
+ def u(s):
722
+ return unicode(s.replace(r"\\", r"\\\\"), "unicode_escape")
723
+
724
+ unichr = unichr
725
+ int2byte = chr
726
+
727
+ def byte2int(bs):
728
+ return ord(bs[0])
729
+
730
+ def indexbytes(buf, i):
731
+ return ord(buf[i])
732
+
733
+ iterbytes = functools.partial(itertools.imap, ord)
734
+ import StringIO
735
+
736
+ StringIO = BytesIO = StringIO.StringIO
737
+ _assertCountEqual = "assertItemsEqual"
738
+ _assertRaisesRegex = "assertRaisesRegexp"
739
+ _assertRegex = "assertRegexpMatches"
740
+ _assertNotRegex = "assertNotRegexpMatches"
741
+ _add_doc(b, """Byte literal""")
742
+ _add_doc(u, """Text literal""")
743
+
744
+
745
+ def assertCountEqual(self, *args, **kwargs):
746
+ return getattr(self, _assertCountEqual)(*args, **kwargs)
747
+
748
+
749
+ def assertRaisesRegex(self, *args, **kwargs):
750
+ return getattr(self, _assertRaisesRegex)(*args, **kwargs)
751
+
752
+
753
+ def assertRegex(self, *args, **kwargs):
754
+ return getattr(self, _assertRegex)(*args, **kwargs)
755
+
756
+
757
+ def assertNotRegex(self, *args, **kwargs):
758
+ return getattr(self, _assertNotRegex)(*args, **kwargs)
759
+
760
+
761
+ if PY3:
762
+ exec_ = getattr(moves.builtins, "exec")
763
+
764
+ def reraise(tp, value, tb=None):
765
+ try:
766
+ if value is None:
767
+ value = tp()
768
+ if value.__traceback__ is not tb:
769
+ raise value.with_traceback(tb)
770
+ raise value
771
+ finally:
772
+ value = None
773
+ tb = None
774
+
775
+ else:
776
+
777
+ def exec_(_code_, _globs_=None, _locs_=None):
778
+ """Execute code in a namespace."""
779
+ if _globs_ is None:
780
+ frame = sys._getframe(1)
781
+ _globs_ = frame.f_globals
782
+ if _locs_ is None:
783
+ _locs_ = frame.f_locals
784
+ del frame
785
+ elif _locs_ is None:
786
+ _locs_ = _globs_
787
+ exec ("""exec _code_ in _globs_, _locs_""")
788
+
789
+ exec_(
790
+ """def reraise(tp, value, tb=None):
791
+ try:
792
+ raise tp, value, tb
793
+ finally:
794
+ tb = None
795
+ """
796
+ )
797
+
798
+
799
+ if sys.version_info[:2] > (3,):
800
+ exec_(
801
+ """def raise_from(value, from_value):
802
+ try:
803
+ raise value from from_value
804
+ finally:
805
+ value = None
806
+ """
807
+ )
808
+ else:
809
+
810
+ def raise_from(value, from_value):
811
+ raise value
812
+
813
+
814
+ print_ = getattr(moves.builtins, "print", None)
815
+ if print_ is None:
816
+
817
+ def print_(*args, **kwargs):
818
+ """The new-style print function for Python 2.4 and 2.5."""
819
+ fp = kwargs.pop("file", sys.stdout)
820
+ if fp is None:
821
+ return
822
+
823
+ def write(data):
824
+ if not isinstance(data, basestring):
825
+ data = str(data)
826
+ # If the file has an encoding, encode unicode with it.
827
+ if (
828
+ isinstance(fp, file)
829
+ and isinstance(data, unicode)
830
+ and fp.encoding is not None
831
+ ):
832
+ errors = getattr(fp, "errors", None)
833
+ if errors is None:
834
+ errors = "strict"
835
+ data = data.encode(fp.encoding, errors)
836
+ fp.write(data)
837
+
838
+ want_unicode = False
839
+ sep = kwargs.pop("sep", None)
840
+ if sep is not None:
841
+ if isinstance(sep, unicode):
842
+ want_unicode = True
843
+ elif not isinstance(sep, str):
844
+ raise TypeError("sep must be None or a string")
845
+ end = kwargs.pop("end", None)
846
+ if end is not None:
847
+ if isinstance(end, unicode):
848
+ want_unicode = True
849
+ elif not isinstance(end, str):
850
+ raise TypeError("end must be None or a string")
851
+ if kwargs:
852
+ raise TypeError("invalid keyword arguments to print()")
853
+ if not want_unicode:
854
+ for arg in args:
855
+ if isinstance(arg, unicode):
856
+ want_unicode = True
857
+ break
858
+ if want_unicode:
859
+ newline = unicode("\n")
860
+ space = unicode(" ")
861
+ else:
862
+ newline = "\n"
863
+ space = " "
864
+ if sep is None:
865
+ sep = space
866
+ if end is None:
867
+ end = newline
868
+ for i, arg in enumerate(args):
869
+ if i:
870
+ write(sep)
871
+ write(arg)
872
+ write(end)
873
+
874
+
875
+ if sys.version_info[:2] < (3, 3):
876
+ _print = print_
877
+
878
+ def print_(*args, **kwargs):
879
+ fp = kwargs.get("file", sys.stdout)
880
+ flush = kwargs.pop("flush", False)
881
+ _print(*args, **kwargs)
882
+ if flush and fp is not None:
883
+ fp.flush()
884
+
885
+
886
+ _add_doc(reraise, """Reraise an exception.""")
887
+
888
+ if sys.version_info[0:2] < (3, 4):
889
+ # This does exactly the same what the :func:`py3:functools.update_wrapper`
890
+ # function does on Python versions after 3.2. It sets the ``__wrapped__``
891
+ # attribute on ``wrapper`` object and it doesn't raise an error if any of
892
+ # the attributes mentioned in ``assigned`` and ``updated`` are missing on
893
+ # ``wrapped`` object.
894
+ def _update_wrapper(
895
+ wrapper,
896
+ wrapped,
897
+ assigned=functools.WRAPPER_ASSIGNMENTS,
898
+ updated=functools.WRAPPER_UPDATES,
899
+ ):
900
+ for attr in assigned:
901
+ try:
902
+ value = getattr(wrapped, attr)
903
+ except AttributeError:
904
+ continue
905
+ else:
906
+ setattr(wrapper, attr, value)
907
+ for attr in updated:
908
+ getattr(wrapper, attr).update(getattr(wrapped, attr, {}))
909
+ wrapper.__wrapped__ = wrapped
910
+ return wrapper
911
+
912
+ _update_wrapper.__doc__ = functools.update_wrapper.__doc__
913
+
914
+ def wraps(
915
+ wrapped,
916
+ assigned=functools.WRAPPER_ASSIGNMENTS,
917
+ updated=functools.WRAPPER_UPDATES,
918
+ ):
919
+ return functools.partial(
920
+ _update_wrapper, wrapped=wrapped, assigned=assigned, updated=updated
921
+ )
922
+
923
+ wraps.__doc__ = functools.wraps.__doc__
924
+
925
+ else:
926
+ wraps = functools.wraps
927
+
928
+
929
+ def with_metaclass(meta, *bases):
930
+ """Create a base class with a metaclass."""
931
+ # This requires a bit of explanation: the basic idea is to make a dummy
932
+ # metaclass for one level of class instantiation that replaces itself with
933
+ # the actual metaclass.
934
+ class metaclass(type):
935
+ def __new__(cls, name, this_bases, d):
936
+ if sys.version_info[:2] >= (3, 7):
937
+ # This version introduced PEP 560 that requires a bit
938
+ # of extra care (we mimic what is done by __build_class__).
939
+ resolved_bases = types.resolve_bases(bases)
940
+ if resolved_bases is not bases:
941
+ d["__orig_bases__"] = bases
942
+ else:
943
+ resolved_bases = bases
944
+ return meta(name, resolved_bases, d)
945
+
946
+ @classmethod
947
+ def __prepare__(cls, name, this_bases):
948
+ return meta.__prepare__(name, bases)
949
+
950
+ return type.__new__(metaclass, "temporary_class", (), {})
951
+
952
+
953
+ def add_metaclass(metaclass):
954
+ """Class decorator for creating a class with a metaclass."""
955
+
956
+ def wrapper(cls):
957
+ orig_vars = cls.__dict__.copy()
958
+ slots = orig_vars.get("__slots__")
959
+ if slots is not None:
960
+ if isinstance(slots, str):
961
+ slots = [slots]
962
+ for slots_var in slots:
963
+ orig_vars.pop(slots_var)
964
+ orig_vars.pop("__dict__", None)
965
+ orig_vars.pop("__weakref__", None)
966
+ if hasattr(cls, "__qualname__"):
967
+ orig_vars["__qualname__"] = cls.__qualname__
968
+ return metaclass(cls.__name__, cls.__bases__, orig_vars)
969
+
970
+ return wrapper
971
+
972
+
973
+ def ensure_binary(s, encoding="utf-8", errors="strict"):
974
+ """Coerce **s** to six.binary_type.
975
+
976
+ For Python 2:
977
+ - `unicode` -> encoded to `str`
978
+ - `str` -> `str`
979
+
980
+ For Python 3:
981
+ - `str` -> encoded to `bytes`
982
+ - `bytes` -> `bytes`
983
+ """
984
+ if isinstance(s, binary_type):
985
+ return s
986
+ if isinstance(s, text_type):
987
+ return s.encode(encoding, errors)
988
+ raise TypeError("not expecting type '%s'" % type(s))
989
+
990
+
991
+ def ensure_str(s, encoding="utf-8", errors="strict"):
992
+ """Coerce *s* to `str`.
993
+
994
+ For Python 2:
995
+ - `unicode` -> encoded to `str`
996
+ - `str` -> `str`
997
+
998
+ For Python 3:
999
+ - `str` -> `str`
1000
+ - `bytes` -> decoded to `str`
1001
+ """
1002
+ # Optimization: Fast return for the common case.
1003
+ if type(s) is str:
1004
+ return s
1005
+ if PY2 and isinstance(s, text_type):
1006
+ return s.encode(encoding, errors)
1007
+ elif PY3 and isinstance(s, binary_type):
1008
+ return s.decode(encoding, errors)
1009
+ elif not isinstance(s, (text_type, binary_type)):
1010
+ raise TypeError("not expecting type '%s'" % type(s))
1011
+ return s
1012
+
1013
+
1014
+ def ensure_text(s, encoding="utf-8", errors="strict"):
1015
+ """Coerce *s* to six.text_type.
1016
+
1017
+ For Python 2:
1018
+ - `unicode` -> `unicode`
1019
+ - `str` -> `unicode`
1020
+
1021
+ For Python 3:
1022
+ - `str` -> `str`
1023
+ - `bytes` -> decoded to `str`
1024
+ """
1025
+ if isinstance(s, binary_type):
1026
+ return s.decode(encoding, errors)
1027
+ elif isinstance(s, text_type):
1028
+ return s
1029
+ else:
1030
+ raise TypeError("not expecting type '%s'" % type(s))
1031
+
1032
+
1033
+ def python_2_unicode_compatible(klass):
1034
+ """
1035
+ A class decorator that defines __unicode__ and __str__ methods under Python 2.
1036
+ Under Python 3 it does nothing.
1037
+
1038
+ To support Python 2 and 3 with a single code base, define a __str__ method
1039
+ returning text and apply this decorator to the class.
1040
+ """
1041
+ if PY2:
1042
+ if "__str__" not in klass.__dict__:
1043
+ raise ValueError(
1044
+ "@python_2_unicode_compatible cannot be applied "
1045
+ "to %s because it doesn't define __str__()." % klass.__name__
1046
+ )
1047
+ klass.__unicode__ = klass.__str__
1048
+ klass.__str__ = lambda self: self.__unicode__().encode("utf-8")
1049
+ return klass
1050
+
1051
+
1052
+ # Complete the moves implementation.
1053
+ # This code is at the end of this module to speed up module loading.
1054
+ # Turn this module into a package.
1055
+ __path__ = [] # required for PEP 302 and PEP 451
1056
+ __package__ = __name__ # see PEP 366 @ReservedAssignment
1057
+ if globals().get("__spec__") is not None:
1058
+ __spec__.submodule_search_locations = [] # PEP 451 @UndefinedVariable
1059
+ # Remove other six meta path importers, since they cause problems. This can
1060
+ # happen if six is removed from sys.modules and then reloaded. (Setuptools does
1061
+ # this for some reason.)
1062
+ if sys.meta_path:
1063
+ for i, importer in enumerate(sys.meta_path):
1064
+ # Here's some real nastiness: Another "instance" of the six module might
1065
+ # be floating around. Therefore, we can't use isinstance() to check for
1066
+ # the six meta path importer, since the other six instance will have
1067
+ # inserted an importer with different class.
1068
+ if (
1069
+ type(importer).__name__ == "_SixMetaPathImporter"
1070
+ and importer.name == __name__
1071
+ ):
1072
+ del sys.meta_path[i]
1073
+ break
1074
+ del i, importer
1075
+ # Finally, add the importer to the meta path import hook.
1076
+ sys.meta_path.append(_importer)