cli-ih 0.6.3__py3-none-any.whl → 0.6.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (424) hide show
  1. cli_ih/asyncClient.py +13 -7
  2. cli_ih/client.py +13 -6
  3. {cli_ih-0.6.3.dist-info → cli_ih-0.6.3.1.dist-info}/METADATA +1 -1
  4. cli_ih-0.6.3.1.dist-info/RECORD +425 -0
  5. {cli_ih-0.6.3.dist-info → cli_ih-0.6.3.1.dist-info}/WHEEL +1 -1
  6. {cli_ih-0.6.3.dist-info → cli_ih-0.6.3.1.dist-info}/top_level.txt +1 -0
  7. venv/Lib/site-packages/__editable___cli_ih_0_6_3_1_finder.py +85 -0
  8. venv/Lib/site-packages/pip/__init__.py +13 -0
  9. venv/Lib/site-packages/pip/__main__.py +24 -0
  10. venv/Lib/site-packages/pip/__pip-runner__.py +50 -0
  11. venv/Lib/site-packages/pip/_internal/__init__.py +18 -0
  12. venv/Lib/site-packages/pip/_internal/build_env.py +349 -0
  13. venv/Lib/site-packages/pip/_internal/cache.py +291 -0
  14. venv/Lib/site-packages/pip/_internal/cli/__init__.py +3 -0
  15. venv/Lib/site-packages/pip/_internal/cli/autocompletion.py +184 -0
  16. venv/Lib/site-packages/pip/_internal/cli/base_command.py +244 -0
  17. venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py +1138 -0
  18. venv/Lib/site-packages/pip/_internal/cli/command_context.py +28 -0
  19. venv/Lib/site-packages/pip/_internal/cli/index_command.py +175 -0
  20. venv/Lib/site-packages/pip/_internal/cli/main.py +80 -0
  21. venv/Lib/site-packages/pip/_internal/cli/main_parser.py +134 -0
  22. venv/Lib/site-packages/pip/_internal/cli/parser.py +298 -0
  23. venv/Lib/site-packages/pip/_internal/cli/progress_bars.py +151 -0
  24. venv/Lib/site-packages/pip/_internal/cli/req_command.py +351 -0
  25. venv/Lib/site-packages/pip/_internal/cli/spinners.py +235 -0
  26. venv/Lib/site-packages/pip/_internal/cli/status_codes.py +6 -0
  27. venv/Lib/site-packages/pip/_internal/commands/__init__.py +139 -0
  28. venv/Lib/site-packages/pip/_internal/commands/cache.py +231 -0
  29. venv/Lib/site-packages/pip/_internal/commands/check.py +66 -0
  30. venv/Lib/site-packages/pip/_internal/commands/completion.py +135 -0
  31. venv/Lib/site-packages/pip/_internal/commands/configuration.py +288 -0
  32. venv/Lib/site-packages/pip/_internal/commands/debug.py +203 -0
  33. venv/Lib/site-packages/pip/_internal/commands/download.py +145 -0
  34. venv/Lib/site-packages/pip/_internal/commands/freeze.py +107 -0
  35. venv/Lib/site-packages/pip/_internal/commands/hash.py +58 -0
  36. venv/Lib/site-packages/pip/_internal/commands/help.py +40 -0
  37. venv/Lib/site-packages/pip/_internal/commands/index.py +159 -0
  38. venv/Lib/site-packages/pip/_internal/commands/inspect.py +92 -0
  39. venv/Lib/site-packages/pip/_internal/commands/install.py +798 -0
  40. venv/Lib/site-packages/pip/_internal/commands/list.py +400 -0
  41. venv/Lib/site-packages/pip/_internal/commands/lock.py +170 -0
  42. venv/Lib/site-packages/pip/_internal/commands/search.py +178 -0
  43. venv/Lib/site-packages/pip/_internal/commands/show.py +231 -0
  44. venv/Lib/site-packages/pip/_internal/commands/uninstall.py +113 -0
  45. venv/Lib/site-packages/pip/_internal/commands/wheel.py +181 -0
  46. venv/Lib/site-packages/pip/_internal/configuration.py +397 -0
  47. venv/Lib/site-packages/pip/_internal/distributions/__init__.py +21 -0
  48. venv/Lib/site-packages/pip/_internal/distributions/base.py +55 -0
  49. venv/Lib/site-packages/pip/_internal/distributions/installed.py +33 -0
  50. venv/Lib/site-packages/pip/_internal/distributions/sdist.py +165 -0
  51. venv/Lib/site-packages/pip/_internal/distributions/wheel.py +44 -0
  52. venv/Lib/site-packages/pip/_internal/exceptions.py +881 -0
  53. venv/Lib/site-packages/pip/_internal/index/__init__.py +1 -0
  54. venv/Lib/site-packages/pip/_internal/index/collector.py +489 -0
  55. venv/Lib/site-packages/pip/_internal/index/package_finder.py +1059 -0
  56. venv/Lib/site-packages/pip/_internal/index/sources.py +287 -0
  57. venv/Lib/site-packages/pip/_internal/locations/__init__.py +441 -0
  58. venv/Lib/site-packages/pip/_internal/locations/_distutils.py +173 -0
  59. venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py +215 -0
  60. venv/Lib/site-packages/pip/_internal/locations/base.py +82 -0
  61. venv/Lib/site-packages/pip/_internal/main.py +12 -0
  62. venv/Lib/site-packages/pip/_internal/metadata/__init__.py +164 -0
  63. venv/Lib/site-packages/pip/_internal/metadata/_json.py +87 -0
  64. venv/Lib/site-packages/pip/_internal/metadata/base.py +685 -0
  65. venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  66. venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  67. venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py +223 -0
  68. venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
  69. venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  70. venv/Lib/site-packages/pip/_internal/models/__init__.py +1 -0
  71. venv/Lib/site-packages/pip/_internal/models/candidate.py +25 -0
  72. venv/Lib/site-packages/pip/_internal/models/direct_url.py +227 -0
  73. venv/Lib/site-packages/pip/_internal/models/format_control.py +78 -0
  74. venv/Lib/site-packages/pip/_internal/models/index.py +28 -0
  75. venv/Lib/site-packages/pip/_internal/models/installation_report.py +57 -0
  76. venv/Lib/site-packages/pip/_internal/models/link.py +613 -0
  77. venv/Lib/site-packages/pip/_internal/models/pylock.py +188 -0
  78. venv/Lib/site-packages/pip/_internal/models/scheme.py +25 -0
  79. venv/Lib/site-packages/pip/_internal/models/search_scope.py +126 -0
  80. venv/Lib/site-packages/pip/_internal/models/selection_prefs.py +53 -0
  81. venv/Lib/site-packages/pip/_internal/models/target_python.py +122 -0
  82. venv/Lib/site-packages/pip/_internal/models/wheel.py +141 -0
  83. venv/Lib/site-packages/pip/_internal/network/__init__.py +1 -0
  84. venv/Lib/site-packages/pip/_internal/network/auth.py +564 -0
  85. venv/Lib/site-packages/pip/_internal/network/cache.py +133 -0
  86. venv/Lib/site-packages/pip/_internal/network/download.py +342 -0
  87. venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py +213 -0
  88. venv/Lib/site-packages/pip/_internal/network/session.py +528 -0
  89. venv/Lib/site-packages/pip/_internal/network/utils.py +98 -0
  90. venv/Lib/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  91. venv/Lib/site-packages/pip/_internal/operations/__init__.py +0 -0
  92. venv/Lib/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  93. venv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  94. venv/Lib/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  95. venv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  96. venv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py +73 -0
  97. venv/Lib/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  98. venv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  99. venv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py +119 -0
  100. venv/Lib/site-packages/pip/_internal/operations/check.py +175 -0
  101. venv/Lib/site-packages/pip/_internal/operations/freeze.py +259 -0
  102. venv/Lib/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  103. venv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py +48 -0
  104. venv/Lib/site-packages/pip/_internal/operations/install/wheel.py +746 -0
  105. venv/Lib/site-packages/pip/_internal/operations/prepare.py +742 -0
  106. venv/Lib/site-packages/pip/_internal/pyproject.py +182 -0
  107. venv/Lib/site-packages/pip/_internal/req/__init__.py +105 -0
  108. venv/Lib/site-packages/pip/_internal/req/constructors.py +562 -0
  109. venv/Lib/site-packages/pip/_internal/req/req_dependency_group.py +75 -0
  110. venv/Lib/site-packages/pip/_internal/req/req_file.py +620 -0
  111. venv/Lib/site-packages/pip/_internal/req/req_install.py +937 -0
  112. venv/Lib/site-packages/pip/_internal/req/req_set.py +81 -0
  113. venv/Lib/site-packages/pip/_internal/req/req_uninstall.py +639 -0
  114. venv/Lib/site-packages/pip/_internal/resolution/__init__.py +0 -0
  115. venv/Lib/site-packages/pip/_internal/resolution/base.py +20 -0
  116. venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  117. venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  118. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  119. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
  120. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py +582 -0
  121. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py +814 -0
  122. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  123. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py +276 -0
  124. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py +85 -0
  125. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py +247 -0
  126. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py +336 -0
  127. venv/Lib/site-packages/pip/_internal/self_outdated_check.py +254 -0
  128. venv/Lib/site-packages/pip/_internal/utils/__init__.py +0 -0
  129. venv/Lib/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  130. venv/Lib/site-packages/pip/_internal/utils/_log.py +38 -0
  131. venv/Lib/site-packages/pip/_internal/utils/appdirs.py +52 -0
  132. venv/Lib/site-packages/pip/_internal/utils/compat.py +85 -0
  133. venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  134. venv/Lib/site-packages/pip/_internal/utils/datetime.py +10 -0
  135. venv/Lib/site-packages/pip/_internal/utils/deprecation.py +126 -0
  136. venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
  137. venv/Lib/site-packages/pip/_internal/utils/egg_link.py +81 -0
  138. venv/Lib/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  139. venv/Lib/site-packages/pip/_internal/utils/filesystem.py +152 -0
  140. venv/Lib/site-packages/pip/_internal/utils/filetypes.py +24 -0
  141. venv/Lib/site-packages/pip/_internal/utils/glibc.py +102 -0
  142. venv/Lib/site-packages/pip/_internal/utils/hashes.py +150 -0
  143. venv/Lib/site-packages/pip/_internal/utils/logging.py +364 -0
  144. venv/Lib/site-packages/pip/_internal/utils/misc.py +765 -0
  145. venv/Lib/site-packages/pip/_internal/utils/packaging.py +44 -0
  146. venv/Lib/site-packages/pip/_internal/utils/retry.py +45 -0
  147. venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py +149 -0
  148. venv/Lib/site-packages/pip/_internal/utils/subprocess.py +248 -0
  149. venv/Lib/site-packages/pip/_internal/utils/temp_dir.py +294 -0
  150. venv/Lib/site-packages/pip/_internal/utils/unpacking.py +337 -0
  151. venv/Lib/site-packages/pip/_internal/utils/urls.py +55 -0
  152. venv/Lib/site-packages/pip/_internal/utils/virtualenv.py +105 -0
  153. venv/Lib/site-packages/pip/_internal/utils/wheel.py +132 -0
  154. venv/Lib/site-packages/pip/_internal/vcs/__init__.py +15 -0
  155. venv/Lib/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  156. venv/Lib/site-packages/pip/_internal/vcs/git.py +571 -0
  157. venv/Lib/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  158. venv/Lib/site-packages/pip/_internal/vcs/subversion.py +335 -0
  159. venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py +693 -0
  160. venv/Lib/site-packages/pip/_internal/wheel_builder.py +334 -0
  161. venv/Lib/site-packages/pip/_vendor/__init__.py +117 -0
  162. venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py +29 -0
  163. venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  164. venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py +168 -0
  165. venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  166. venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  167. venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  168. venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  169. venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  170. venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py +119 -0
  171. venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  172. venv/Lib/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  173. venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  174. venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  175. venv/Lib/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  176. venv/Lib/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  177. venv/Lib/site-packages/pip/_vendor/certifi/core.py +83 -0
  178. venv/Lib/site-packages/pip/_vendor/certifi/py.typed +0 -0
  179. venv/Lib/site-packages/pip/_vendor/dependency_groups/__init__.py +13 -0
  180. venv/Lib/site-packages/pip/_vendor/dependency_groups/__main__.py +65 -0
  181. venv/Lib/site-packages/pip/_vendor/dependency_groups/_implementation.py +209 -0
  182. venv/Lib/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
  183. venv/Lib/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
  184. venv/Lib/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
  185. venv/Lib/site-packages/pip/_vendor/dependency_groups/py.typed +0 -0
  186. venv/Lib/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  187. venv/Lib/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  188. venv/Lib/site-packages/pip/_vendor/distlib/resources.py +358 -0
  189. venv/Lib/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  190. venv/Lib/site-packages/pip/_vendor/distlib/util.py +1984 -0
  191. venv/Lib/site-packages/pip/_vendor/distro/__init__.py +54 -0
  192. venv/Lib/site-packages/pip/_vendor/distro/__main__.py +4 -0
  193. venv/Lib/site-packages/pip/_vendor/distro/distro.py +1403 -0
  194. venv/Lib/site-packages/pip/_vendor/distro/py.typed +0 -0
  195. venv/Lib/site-packages/pip/_vendor/idna/__init__.py +45 -0
  196. venv/Lib/site-packages/pip/_vendor/idna/codec.py +122 -0
  197. venv/Lib/site-packages/pip/_vendor/idna/compat.py +15 -0
  198. venv/Lib/site-packages/pip/_vendor/idna/core.py +437 -0
  199. venv/Lib/site-packages/pip/_vendor/idna/idnadata.py +4243 -0
  200. venv/Lib/site-packages/pip/_vendor/idna/intranges.py +57 -0
  201. venv/Lib/site-packages/pip/_vendor/idna/package_data.py +1 -0
  202. venv/Lib/site-packages/pip/_vendor/idna/py.typed +0 -0
  203. venv/Lib/site-packages/pip/_vendor/idna/uts46data.py +8681 -0
  204. venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  205. venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  206. venv/Lib/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  207. venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  208. venv/Lib/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  209. venv/Lib/site-packages/pip/_vendor/packaging/_elffile.py +109 -0
  210. venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  211. venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  212. venv/Lib/site-packages/pip/_vendor/packaging/_parser.py +353 -0
  213. venv/Lib/site-packages/pip/_vendor/packaging/_structures.py +61 -0
  214. venv/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py +195 -0
  215. venv/Lib/site-packages/pip/_vendor/packaging/licenses/__init__.py +145 -0
  216. venv/Lib/site-packages/pip/_vendor/packaging/licenses/_spdx.py +759 -0
  217. venv/Lib/site-packages/pip/_vendor/packaging/markers.py +362 -0
  218. venv/Lib/site-packages/pip/_vendor/packaging/metadata.py +862 -0
  219. venv/Lib/site-packages/pip/_vendor/packaging/py.typed +0 -0
  220. venv/Lib/site-packages/pip/_vendor/packaging/requirements.py +91 -0
  221. venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py +1019 -0
  222. venv/Lib/site-packages/pip/_vendor/packaging/tags.py +656 -0
  223. venv/Lib/site-packages/pip/_vendor/packaging/utils.py +163 -0
  224. venv/Lib/site-packages/pip/_vendor/packaging/version.py +582 -0
  225. venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  226. venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  227. venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  228. venv/Lib/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  229. venv/Lib/site-packages/pip/_vendor/platformdirs/api.py +299 -0
  230. venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py +144 -0
  231. venv/Lib/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  232. venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
  233. venv/Lib/site-packages/pip/_vendor/platformdirs/version.py +21 -0
  234. venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py +272 -0
  235. venv/Lib/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  236. venv/Lib/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  237. venv/Lib/site-packages/pip/_vendor/pygments/console.py +70 -0
  238. venv/Lib/site-packages/pip/_vendor/pygments/filter.py +70 -0
  239. venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  240. venv/Lib/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  241. venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  242. venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  243. venv/Lib/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  244. venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  245. venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  246. venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
  247. venv/Lib/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  248. venv/Lib/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  249. venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  250. venv/Lib/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  251. venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  252. venv/Lib/site-packages/pip/_vendor/pygments/style.py +203 -0
  253. venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  254. venv/Lib/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  255. venv/Lib/site-packages/pip/_vendor/pygments/token.py +214 -0
  256. venv/Lib/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  257. venv/Lib/site-packages/pip/_vendor/pygments/util.py +324 -0
  258. venv/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  259. venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  260. venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  261. venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  262. venv/Lib/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  263. venv/Lib/site-packages/pip/_vendor/requests/__init__.py +179 -0
  264. venv/Lib/site-packages/pip/_vendor/requests/__version__.py +14 -0
  265. venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
  266. venv/Lib/site-packages/pip/_vendor/requests/adapters.py +719 -0
  267. venv/Lib/site-packages/pip/_vendor/requests/api.py +157 -0
  268. venv/Lib/site-packages/pip/_vendor/requests/auth.py +314 -0
  269. venv/Lib/site-packages/pip/_vendor/requests/certs.py +17 -0
  270. venv/Lib/site-packages/pip/_vendor/requests/compat.py +90 -0
  271. venv/Lib/site-packages/pip/_vendor/requests/cookies.py +561 -0
  272. venv/Lib/site-packages/pip/_vendor/requests/exceptions.py +151 -0
  273. venv/Lib/site-packages/pip/_vendor/requests/help.py +127 -0
  274. venv/Lib/site-packages/pip/_vendor/requests/hooks.py +33 -0
  275. venv/Lib/site-packages/pip/_vendor/requests/models.py +1039 -0
  276. venv/Lib/site-packages/pip/_vendor/requests/packages.py +25 -0
  277. venv/Lib/site-packages/pip/_vendor/requests/sessions.py +831 -0
  278. venv/Lib/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  279. venv/Lib/site-packages/pip/_vendor/requests/structures.py +99 -0
  280. venv/Lib/site-packages/pip/_vendor/requests/utils.py +1086 -0
  281. venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  282. venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  283. venv/Lib/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  284. venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  285. venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  286. venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  287. venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  288. venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  289. venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +622 -0
  290. venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  291. venv/Lib/site-packages/pip/_vendor/rich/__init__.py +177 -0
  292. venv/Lib/site-packages/pip/_vendor/rich/__main__.py +245 -0
  293. venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  294. venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  295. venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  296. venv/Lib/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  297. venv/Lib/site-packages/pip/_vendor/rich/_extension.py +10 -0
  298. venv/Lib/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  299. venv/Lib/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  300. venv/Lib/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  301. venv/Lib/site-packages/pip/_vendor/rich/_loop.py +43 -0
  302. venv/Lib/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  303. venv/Lib/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  304. venv/Lib/site-packages/pip/_vendor/rich/_pick.py +17 -0
  305. venv/Lib/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  306. venv/Lib/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  307. venv/Lib/site-packages/pip/_vendor/rich/_stack.py +16 -0
  308. venv/Lib/site-packages/pip/_vendor/rich/_timer.py +19 -0
  309. venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  310. venv/Lib/site-packages/pip/_vendor/rich/_windows.py +71 -0
  311. venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  312. venv/Lib/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  313. venv/Lib/site-packages/pip/_vendor/rich/abc.py +33 -0
  314. venv/Lib/site-packages/pip/_vendor/rich/align.py +306 -0
  315. venv/Lib/site-packages/pip/_vendor/rich/ansi.py +241 -0
  316. venv/Lib/site-packages/pip/_vendor/rich/bar.py +93 -0
  317. venv/Lib/site-packages/pip/_vendor/rich/box.py +474 -0
  318. venv/Lib/site-packages/pip/_vendor/rich/cells.py +174 -0
  319. venv/Lib/site-packages/pip/_vendor/rich/color.py +621 -0
  320. venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  321. venv/Lib/site-packages/pip/_vendor/rich/columns.py +187 -0
  322. venv/Lib/site-packages/pip/_vendor/rich/console.py +2680 -0
  323. venv/Lib/site-packages/pip/_vendor/rich/constrain.py +37 -0
  324. venv/Lib/site-packages/pip/_vendor/rich/containers.py +167 -0
  325. venv/Lib/site-packages/pip/_vendor/rich/control.py +219 -0
  326. venv/Lib/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  327. venv/Lib/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  328. venv/Lib/site-packages/pip/_vendor/rich/emoji.py +91 -0
  329. venv/Lib/site-packages/pip/_vendor/rich/errors.py +34 -0
  330. venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  331. venv/Lib/site-packages/pip/_vendor/rich/filesize.py +88 -0
  332. venv/Lib/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  333. venv/Lib/site-packages/pip/_vendor/rich/json.py +139 -0
  334. venv/Lib/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  335. venv/Lib/site-packages/pip/_vendor/rich/layout.py +442 -0
  336. venv/Lib/site-packages/pip/_vendor/rich/live.py +400 -0
  337. venv/Lib/site-packages/pip/_vendor/rich/live_render.py +106 -0
  338. venv/Lib/site-packages/pip/_vendor/rich/logging.py +297 -0
  339. venv/Lib/site-packages/pip/_vendor/rich/markup.py +251 -0
  340. venv/Lib/site-packages/pip/_vendor/rich/measure.py +151 -0
  341. venv/Lib/site-packages/pip/_vendor/rich/padding.py +141 -0
  342. venv/Lib/site-packages/pip/_vendor/rich/pager.py +34 -0
  343. venv/Lib/site-packages/pip/_vendor/rich/palette.py +100 -0
  344. venv/Lib/site-packages/pip/_vendor/rich/panel.py +317 -0
  345. venv/Lib/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  346. venv/Lib/site-packages/pip/_vendor/rich/progress.py +1715 -0
  347. venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  348. venv/Lib/site-packages/pip/_vendor/rich/prompt.py +400 -0
  349. venv/Lib/site-packages/pip/_vendor/rich/protocol.py +42 -0
  350. venv/Lib/site-packages/pip/_vendor/rich/py.typed +0 -0
  351. venv/Lib/site-packages/pip/_vendor/rich/region.py +10 -0
  352. venv/Lib/site-packages/pip/_vendor/rich/repr.py +149 -0
  353. venv/Lib/site-packages/pip/_vendor/rich/rule.py +130 -0
  354. venv/Lib/site-packages/pip/_vendor/rich/scope.py +86 -0
  355. venv/Lib/site-packages/pip/_vendor/rich/screen.py +54 -0
  356. venv/Lib/site-packages/pip/_vendor/rich/segment.py +752 -0
  357. venv/Lib/site-packages/pip/_vendor/rich/spinner.py +132 -0
  358. venv/Lib/site-packages/pip/_vendor/rich/status.py +131 -0
  359. venv/Lib/site-packages/pip/_vendor/rich/style.py +796 -0
  360. venv/Lib/site-packages/pip/_vendor/rich/styled.py +42 -0
  361. venv/Lib/site-packages/pip/_vendor/rich/syntax.py +985 -0
  362. venv/Lib/site-packages/pip/_vendor/rich/table.py +1006 -0
  363. venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  364. venv/Lib/site-packages/pip/_vendor/rich/text.py +1361 -0
  365. venv/Lib/site-packages/pip/_vendor/rich/theme.py +115 -0
  366. venv/Lib/site-packages/pip/_vendor/rich/themes.py +5 -0
  367. venv/Lib/site-packages/pip/_vendor/rich/traceback.py +899 -0
  368. venv/Lib/site-packages/pip/_vendor/rich/tree.py +257 -0
  369. venv/Lib/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  370. venv/Lib/site-packages/pip/_vendor/tomli/_parser.py +770 -0
  371. venv/Lib/site-packages/pip/_vendor/tomli/_re.py +112 -0
  372. venv/Lib/site-packages/pip/_vendor/tomli/_types.py +10 -0
  373. venv/Lib/site-packages/pip/_vendor/tomli/py.typed +1 -0
  374. venv/Lib/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  375. venv/Lib/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  376. venv/Lib/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  377. venv/Lib/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  378. venv/Lib/site-packages/pip/_vendor/truststore/_api.py +333 -0
  379. venv/Lib/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  380. venv/Lib/site-packages/pip/_vendor/truststore/_openssl.py +66 -0
  381. venv/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  382. venv/Lib/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  383. venv/Lib/site-packages/pip/_vendor/truststore/py.typed +0 -0
  384. venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
  385. venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
  386. venv/Lib/site-packages/pip/_vendor/urllib3/_version.py +2 -0
  387. venv/Lib/site-packages/pip/_vendor/urllib3/connection.py +572 -0
  388. venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
  389. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  390. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
  391. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  392. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
  393. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
  394. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
  395. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
  396. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
  397. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
  398. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
  399. venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
  400. venv/Lib/site-packages/pip/_vendor/urllib3/fields.py +274 -0
  401. venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
  402. venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  403. venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  404. venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
  405. venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
  406. venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
  407. venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
  408. venv/Lib/site-packages/pip/_vendor/urllib3/request.py +191 -0
  409. venv/Lib/site-packages/pip/_vendor/urllib3/response.py +879 -0
  410. venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
  411. venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
  412. venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
  413. venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
  414. venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
  415. venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
  416. venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
  417. venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
  418. venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  419. venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
  420. venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
  421. venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
  422. venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
  423. venv/Lib/site-packages/pip/py.typed +4 -0
  424. cli_ih-0.6.3.dist-info/RECORD +0 -8
@@ -0,0 +1,899 @@
1
+ import inspect
2
+ import linecache
3
+ import os
4
+ import sys
5
+ from dataclasses import dataclass, field
6
+ from itertools import islice
7
+ from traceback import walk_tb
8
+ from types import ModuleType, TracebackType
9
+ from typing import (
10
+ Any,
11
+ Callable,
12
+ Dict,
13
+ Iterable,
14
+ List,
15
+ Optional,
16
+ Sequence,
17
+ Set,
18
+ Tuple,
19
+ Type,
20
+ Union,
21
+ )
22
+
23
+ from pip._vendor.pygments.lexers import guess_lexer_for_filename
24
+ from pip._vendor.pygments.token import Comment, Keyword, Name, Number, Operator, String
25
+ from pip._vendor.pygments.token import Text as TextToken
26
+ from pip._vendor.pygments.token import Token
27
+ from pip._vendor.pygments.util import ClassNotFound
28
+
29
+ from . import pretty
30
+ from ._loop import loop_first_last, loop_last
31
+ from .columns import Columns
32
+ from .console import (
33
+ Console,
34
+ ConsoleOptions,
35
+ ConsoleRenderable,
36
+ Group,
37
+ RenderResult,
38
+ group,
39
+ )
40
+ from .constrain import Constrain
41
+ from .highlighter import RegexHighlighter, ReprHighlighter
42
+ from .panel import Panel
43
+ from .scope import render_scope
44
+ from .style import Style
45
+ from .syntax import Syntax, SyntaxPosition
46
+ from .text import Text
47
+ from .theme import Theme
48
+
49
+ WINDOWS = sys.platform == "win32"
50
+
51
+ LOCALS_MAX_LENGTH = 10
52
+ LOCALS_MAX_STRING = 80
53
+
54
+
55
+ def _iter_syntax_lines(
56
+ start: SyntaxPosition, end: SyntaxPosition
57
+ ) -> Iterable[Tuple[int, int, int]]:
58
+ """Yield start and end positions per line.
59
+
60
+ Args:
61
+ start: Start position.
62
+ end: End position.
63
+
64
+ Returns:
65
+ Iterable of (LINE, COLUMN1, COLUMN2).
66
+ """
67
+
68
+ line1, column1 = start
69
+ line2, column2 = end
70
+
71
+ if line1 == line2:
72
+ yield line1, column1, column2
73
+ else:
74
+ for first, last, line_no in loop_first_last(range(line1, line2 + 1)):
75
+ if first:
76
+ yield line_no, column1, -1
77
+ elif last:
78
+ yield line_no, 0, column2
79
+ else:
80
+ yield line_no, 0, -1
81
+
82
+
83
+ def install(
84
+ *,
85
+ console: Optional[Console] = None,
86
+ width: Optional[int] = 100,
87
+ code_width: Optional[int] = 88,
88
+ extra_lines: int = 3,
89
+ theme: Optional[str] = None,
90
+ word_wrap: bool = False,
91
+ show_locals: bool = False,
92
+ locals_max_length: int = LOCALS_MAX_LENGTH,
93
+ locals_max_string: int = LOCALS_MAX_STRING,
94
+ locals_hide_dunder: bool = True,
95
+ locals_hide_sunder: Optional[bool] = None,
96
+ indent_guides: bool = True,
97
+ suppress: Iterable[Union[str, ModuleType]] = (),
98
+ max_frames: int = 100,
99
+ ) -> Callable[[Type[BaseException], BaseException, Optional[TracebackType]], Any]:
100
+ """Install a rich traceback handler.
101
+
102
+ Once installed, any tracebacks will be printed with syntax highlighting and rich formatting.
103
+
104
+
105
+ Args:
106
+ console (Optional[Console], optional): Console to write exception to. Default uses internal Console instance.
107
+ width (Optional[int], optional): Width (in characters) of traceback. Defaults to 100.
108
+ code_width (Optional[int], optional): Code width (in characters) of traceback. Defaults to 88.
109
+ extra_lines (int, optional): Extra lines of code. Defaults to 3.
110
+ theme (Optional[str], optional): Pygments theme to use in traceback. Defaults to ``None`` which will pick
111
+ a theme appropriate for the platform.
112
+ word_wrap (bool, optional): Enable word wrapping of long lines. Defaults to False.
113
+ show_locals (bool, optional): Enable display of local variables. Defaults to False.
114
+ locals_max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation.
115
+ Defaults to 10.
116
+ locals_max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to 80.
117
+ locals_hide_dunder (bool, optional): Hide locals prefixed with double underscore. Defaults to True.
118
+ locals_hide_sunder (bool, optional): Hide locals prefixed with single underscore. Defaults to False.
119
+ indent_guides (bool, optional): Enable indent guides in code and locals. Defaults to True.
120
+ suppress (Sequence[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback.
121
+
122
+ Returns:
123
+ Callable: The previous exception handler that was replaced.
124
+
125
+ """
126
+ traceback_console = Console(stderr=True) if console is None else console
127
+
128
+ locals_hide_sunder = (
129
+ True
130
+ if (traceback_console.is_jupyter and locals_hide_sunder is None)
131
+ else locals_hide_sunder
132
+ )
133
+
134
+ def excepthook(
135
+ type_: Type[BaseException],
136
+ value: BaseException,
137
+ traceback: Optional[TracebackType],
138
+ ) -> None:
139
+ exception_traceback = Traceback.from_exception(
140
+ type_,
141
+ value,
142
+ traceback,
143
+ width=width,
144
+ code_width=code_width,
145
+ extra_lines=extra_lines,
146
+ theme=theme,
147
+ word_wrap=word_wrap,
148
+ show_locals=show_locals,
149
+ locals_max_length=locals_max_length,
150
+ locals_max_string=locals_max_string,
151
+ locals_hide_dunder=locals_hide_dunder,
152
+ locals_hide_sunder=bool(locals_hide_sunder),
153
+ indent_guides=indent_guides,
154
+ suppress=suppress,
155
+ max_frames=max_frames,
156
+ )
157
+ traceback_console.print(exception_traceback)
158
+
159
+ def ipy_excepthook_closure(ip: Any) -> None: # pragma: no cover
160
+ tb_data = {} # store information about showtraceback call
161
+ default_showtraceback = ip.showtraceback # keep reference of default traceback
162
+
163
+ def ipy_show_traceback(*args: Any, **kwargs: Any) -> None:
164
+ """wrap the default ip.showtraceback to store info for ip._showtraceback"""
165
+ nonlocal tb_data
166
+ tb_data = kwargs
167
+ default_showtraceback(*args, **kwargs)
168
+
169
+ def ipy_display_traceback(
170
+ *args: Any, is_syntax: bool = False, **kwargs: Any
171
+ ) -> None:
172
+ """Internally called traceback from ip._showtraceback"""
173
+ nonlocal tb_data
174
+ exc_tuple = ip._get_exc_info()
175
+
176
+ # do not display trace on syntax error
177
+ tb: Optional[TracebackType] = None if is_syntax else exc_tuple[2]
178
+
179
+ # determine correct tb_offset
180
+ compiled = tb_data.get("running_compiled_code", False)
181
+ tb_offset = tb_data.get("tb_offset")
182
+ if tb_offset is None:
183
+ tb_offset = 1 if compiled else 0
184
+ # remove ipython internal frames from trace with tb_offset
185
+ for _ in range(tb_offset):
186
+ if tb is None:
187
+ break
188
+ tb = tb.tb_next
189
+
190
+ excepthook(exc_tuple[0], exc_tuple[1], tb)
191
+ tb_data = {} # clear data upon usage
192
+
193
+ # replace _showtraceback instead of showtraceback to allow ipython features such as debugging to work
194
+ # this is also what the ipython docs recommends to modify when subclassing InteractiveShell
195
+ ip._showtraceback = ipy_display_traceback
196
+ # add wrapper to capture tb_data
197
+ ip.showtraceback = ipy_show_traceback
198
+ ip.showsyntaxerror = lambda *args, **kwargs: ipy_display_traceback(
199
+ *args, is_syntax=True, **kwargs
200
+ )
201
+
202
+ try: # pragma: no cover
203
+ # if within ipython, use customized traceback
204
+ ip = get_ipython() # type: ignore[name-defined]
205
+ ipy_excepthook_closure(ip)
206
+ return sys.excepthook
207
+ except Exception:
208
+ # otherwise use default system hook
209
+ old_excepthook = sys.excepthook
210
+ sys.excepthook = excepthook
211
+ return old_excepthook
212
+
213
+
214
+ @dataclass
215
+ class Frame:
216
+ filename: str
217
+ lineno: int
218
+ name: str
219
+ line: str = ""
220
+ locals: Optional[Dict[str, pretty.Node]] = None
221
+ last_instruction: Optional[Tuple[Tuple[int, int], Tuple[int, int]]] = None
222
+
223
+
224
+ @dataclass
225
+ class _SyntaxError:
226
+ offset: int
227
+ filename: str
228
+ line: str
229
+ lineno: int
230
+ msg: str
231
+ notes: List[str] = field(default_factory=list)
232
+
233
+
234
+ @dataclass
235
+ class Stack:
236
+ exc_type: str
237
+ exc_value: str
238
+ syntax_error: Optional[_SyntaxError] = None
239
+ is_cause: bool = False
240
+ frames: List[Frame] = field(default_factory=list)
241
+ notes: List[str] = field(default_factory=list)
242
+ is_group: bool = False
243
+ exceptions: List["Trace"] = field(default_factory=list)
244
+
245
+
246
+ @dataclass
247
+ class Trace:
248
+ stacks: List[Stack]
249
+
250
+
251
+ class PathHighlighter(RegexHighlighter):
252
+ highlights = [r"(?P<dim>.*/)(?P<bold>.+)"]
253
+
254
+
255
+ class Traceback:
256
+ """A Console renderable that renders a traceback.
257
+
258
+ Args:
259
+ trace (Trace, optional): A `Trace` object produced from `extract`. Defaults to None, which uses
260
+ the last exception.
261
+ width (Optional[int], optional): Number of characters used to traceback. Defaults to 100.
262
+ code_width (Optional[int], optional): Number of code characters used to traceback. Defaults to 88.
263
+ extra_lines (int, optional): Additional lines of code to render. Defaults to 3.
264
+ theme (str, optional): Override pygments theme used in traceback.
265
+ word_wrap (bool, optional): Enable word wrapping of long lines. Defaults to False.
266
+ show_locals (bool, optional): Enable display of local variables. Defaults to False.
267
+ indent_guides (bool, optional): Enable indent guides in code and locals. Defaults to True.
268
+ locals_max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation.
269
+ Defaults to 10.
270
+ locals_max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to 80.
271
+ locals_hide_dunder (bool, optional): Hide locals prefixed with double underscore. Defaults to True.
272
+ locals_hide_sunder (bool, optional): Hide locals prefixed with single underscore. Defaults to False.
273
+ suppress (Sequence[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback.
274
+ max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100.
275
+
276
+ """
277
+
278
+ LEXERS = {
279
+ "": "text",
280
+ ".py": "python",
281
+ ".pxd": "cython",
282
+ ".pyx": "cython",
283
+ ".pxi": "pyrex",
284
+ }
285
+
286
+ def __init__(
287
+ self,
288
+ trace: Optional[Trace] = None,
289
+ *,
290
+ width: Optional[int] = 100,
291
+ code_width: Optional[int] = 88,
292
+ extra_lines: int = 3,
293
+ theme: Optional[str] = None,
294
+ word_wrap: bool = False,
295
+ show_locals: bool = False,
296
+ locals_max_length: int = LOCALS_MAX_LENGTH,
297
+ locals_max_string: int = LOCALS_MAX_STRING,
298
+ locals_hide_dunder: bool = True,
299
+ locals_hide_sunder: bool = False,
300
+ indent_guides: bool = True,
301
+ suppress: Iterable[Union[str, ModuleType]] = (),
302
+ max_frames: int = 100,
303
+ ):
304
+ if trace is None:
305
+ exc_type, exc_value, traceback = sys.exc_info()
306
+ if exc_type is None or exc_value is None or traceback is None:
307
+ raise ValueError(
308
+ "Value for 'trace' required if not called in except: block"
309
+ )
310
+ trace = self.extract(
311
+ exc_type, exc_value, traceback, show_locals=show_locals
312
+ )
313
+ self.trace = trace
314
+ self.width = width
315
+ self.code_width = code_width
316
+ self.extra_lines = extra_lines
317
+ self.theme = Syntax.get_theme(theme or "ansi_dark")
318
+ self.word_wrap = word_wrap
319
+ self.show_locals = show_locals
320
+ self.indent_guides = indent_guides
321
+ self.locals_max_length = locals_max_length
322
+ self.locals_max_string = locals_max_string
323
+ self.locals_hide_dunder = locals_hide_dunder
324
+ self.locals_hide_sunder = locals_hide_sunder
325
+
326
+ self.suppress: Sequence[str] = []
327
+ for suppress_entity in suppress:
328
+ if not isinstance(suppress_entity, str):
329
+ assert (
330
+ suppress_entity.__file__ is not None
331
+ ), f"{suppress_entity!r} must be a module with '__file__' attribute"
332
+ path = os.path.dirname(suppress_entity.__file__)
333
+ else:
334
+ path = suppress_entity
335
+ path = os.path.normpath(os.path.abspath(path))
336
+ self.suppress.append(path)
337
+ self.max_frames = max(4, max_frames) if max_frames > 0 else 0
338
+
339
+ @classmethod
340
+ def from_exception(
341
+ cls,
342
+ exc_type: Type[Any],
343
+ exc_value: BaseException,
344
+ traceback: Optional[TracebackType],
345
+ *,
346
+ width: Optional[int] = 100,
347
+ code_width: Optional[int] = 88,
348
+ extra_lines: int = 3,
349
+ theme: Optional[str] = None,
350
+ word_wrap: bool = False,
351
+ show_locals: bool = False,
352
+ locals_max_length: int = LOCALS_MAX_LENGTH,
353
+ locals_max_string: int = LOCALS_MAX_STRING,
354
+ locals_hide_dunder: bool = True,
355
+ locals_hide_sunder: bool = False,
356
+ indent_guides: bool = True,
357
+ suppress: Iterable[Union[str, ModuleType]] = (),
358
+ max_frames: int = 100,
359
+ ) -> "Traceback":
360
+ """Create a traceback from exception info
361
+
362
+ Args:
363
+ exc_type (Type[BaseException]): Exception type.
364
+ exc_value (BaseException): Exception value.
365
+ traceback (TracebackType): Python Traceback object.
366
+ width (Optional[int], optional): Number of characters used to traceback. Defaults to 100.
367
+ code_width (Optional[int], optional): Number of code characters used to traceback. Defaults to 88.
368
+ extra_lines (int, optional): Additional lines of code to render. Defaults to 3.
369
+ theme (str, optional): Override pygments theme used in traceback.
370
+ word_wrap (bool, optional): Enable word wrapping of long lines. Defaults to False.
371
+ show_locals (bool, optional): Enable display of local variables. Defaults to False.
372
+ indent_guides (bool, optional): Enable indent guides in code and locals. Defaults to True.
373
+ locals_max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation.
374
+ Defaults to 10.
375
+ locals_max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to 80.
376
+ locals_hide_dunder (bool, optional): Hide locals prefixed with double underscore. Defaults to True.
377
+ locals_hide_sunder (bool, optional): Hide locals prefixed with single underscore. Defaults to False.
378
+ suppress (Iterable[Union[str, ModuleType]]): Optional sequence of modules or paths to exclude from traceback.
379
+ max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100.
380
+
381
+ Returns:
382
+ Traceback: A Traceback instance that may be printed.
383
+ """
384
+ rich_traceback = cls.extract(
385
+ exc_type,
386
+ exc_value,
387
+ traceback,
388
+ show_locals=show_locals,
389
+ locals_max_length=locals_max_length,
390
+ locals_max_string=locals_max_string,
391
+ locals_hide_dunder=locals_hide_dunder,
392
+ locals_hide_sunder=locals_hide_sunder,
393
+ )
394
+
395
+ return cls(
396
+ rich_traceback,
397
+ width=width,
398
+ code_width=code_width,
399
+ extra_lines=extra_lines,
400
+ theme=theme,
401
+ word_wrap=word_wrap,
402
+ show_locals=show_locals,
403
+ indent_guides=indent_guides,
404
+ locals_max_length=locals_max_length,
405
+ locals_max_string=locals_max_string,
406
+ locals_hide_dunder=locals_hide_dunder,
407
+ locals_hide_sunder=locals_hide_sunder,
408
+ suppress=suppress,
409
+ max_frames=max_frames,
410
+ )
411
+
412
+ @classmethod
413
+ def extract(
414
+ cls,
415
+ exc_type: Type[BaseException],
416
+ exc_value: BaseException,
417
+ traceback: Optional[TracebackType],
418
+ *,
419
+ show_locals: bool = False,
420
+ locals_max_length: int = LOCALS_MAX_LENGTH,
421
+ locals_max_string: int = LOCALS_MAX_STRING,
422
+ locals_hide_dunder: bool = True,
423
+ locals_hide_sunder: bool = False,
424
+ _visited_exceptions: Optional[Set[BaseException]] = None,
425
+ ) -> Trace:
426
+ """Extract traceback information.
427
+
428
+ Args:
429
+ exc_type (Type[BaseException]): Exception type.
430
+ exc_value (BaseException): Exception value.
431
+ traceback (TracebackType): Python Traceback object.
432
+ show_locals (bool, optional): Enable display of local variables. Defaults to False.
433
+ locals_max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation.
434
+ Defaults to 10.
435
+ locals_max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to 80.
436
+ locals_hide_dunder (bool, optional): Hide locals prefixed with double underscore. Defaults to True.
437
+ locals_hide_sunder (bool, optional): Hide locals prefixed with single underscore. Defaults to False.
438
+
439
+ Returns:
440
+ Trace: A Trace instance which you can use to construct a `Traceback`.
441
+ """
442
+
443
+ stacks: List[Stack] = []
444
+ is_cause = False
445
+
446
+ from pip._vendor.rich import _IMPORT_CWD
447
+
448
+ notes: List[str] = getattr(exc_value, "__notes__", None) or []
449
+
450
+ grouped_exceptions: Set[BaseException] = (
451
+ set() if _visited_exceptions is None else _visited_exceptions
452
+ )
453
+
454
+ def safe_str(_object: Any) -> str:
455
+ """Don't allow exceptions from __str__ to propagate."""
456
+ try:
457
+ return str(_object)
458
+ except Exception:
459
+ return "<exception str() failed>"
460
+
461
+ while True:
462
+ stack = Stack(
463
+ exc_type=safe_str(exc_type.__name__),
464
+ exc_value=safe_str(exc_value),
465
+ is_cause=is_cause,
466
+ notes=notes,
467
+ )
468
+
469
+ if sys.version_info >= (3, 11):
470
+ if isinstance(exc_value, (BaseExceptionGroup, ExceptionGroup)):
471
+ stack.is_group = True
472
+ for exception in exc_value.exceptions:
473
+ if exception in grouped_exceptions:
474
+ continue
475
+ grouped_exceptions.add(exception)
476
+ stack.exceptions.append(
477
+ Traceback.extract(
478
+ type(exception),
479
+ exception,
480
+ exception.__traceback__,
481
+ show_locals=show_locals,
482
+ locals_max_length=locals_max_length,
483
+ locals_hide_dunder=locals_hide_dunder,
484
+ locals_hide_sunder=locals_hide_sunder,
485
+ _visited_exceptions=grouped_exceptions,
486
+ )
487
+ )
488
+
489
+ if isinstance(exc_value, SyntaxError):
490
+ stack.syntax_error = _SyntaxError(
491
+ offset=exc_value.offset or 0,
492
+ filename=exc_value.filename or "?",
493
+ lineno=exc_value.lineno or 0,
494
+ line=exc_value.text or "",
495
+ msg=exc_value.msg,
496
+ notes=notes,
497
+ )
498
+
499
+ stacks.append(stack)
500
+ append = stack.frames.append
501
+
502
+ def get_locals(
503
+ iter_locals: Iterable[Tuple[str, object]],
504
+ ) -> Iterable[Tuple[str, object]]:
505
+ """Extract locals from an iterator of key pairs."""
506
+ if not (locals_hide_dunder or locals_hide_sunder):
507
+ yield from iter_locals
508
+ return
509
+ for key, value in iter_locals:
510
+ if locals_hide_dunder and key.startswith("__"):
511
+ continue
512
+ if locals_hide_sunder and key.startswith("_"):
513
+ continue
514
+ yield key, value
515
+
516
+ for frame_summary, line_no in walk_tb(traceback):
517
+ filename = frame_summary.f_code.co_filename
518
+
519
+ last_instruction: Optional[Tuple[Tuple[int, int], Tuple[int, int]]]
520
+ last_instruction = None
521
+ if sys.version_info >= (3, 11):
522
+ instruction_index = frame_summary.f_lasti // 2
523
+ instruction_position = next(
524
+ islice(
525
+ frame_summary.f_code.co_positions(),
526
+ instruction_index,
527
+ instruction_index + 1,
528
+ )
529
+ )
530
+ (
531
+ start_line,
532
+ end_line,
533
+ start_column,
534
+ end_column,
535
+ ) = instruction_position
536
+ if (
537
+ start_line is not None
538
+ and end_line is not None
539
+ and start_column is not None
540
+ and end_column is not None
541
+ ):
542
+ last_instruction = (
543
+ (start_line, start_column),
544
+ (end_line, end_column),
545
+ )
546
+
547
+ if filename and not filename.startswith("<"):
548
+ if not os.path.isabs(filename):
549
+ filename = os.path.join(_IMPORT_CWD, filename)
550
+ if frame_summary.f_locals.get("_rich_traceback_omit", False):
551
+ continue
552
+
553
+ frame = Frame(
554
+ filename=filename or "?",
555
+ lineno=line_no,
556
+ name=frame_summary.f_code.co_name,
557
+ locals=(
558
+ {
559
+ key: pretty.traverse(
560
+ value,
561
+ max_length=locals_max_length,
562
+ max_string=locals_max_string,
563
+ )
564
+ for key, value in get_locals(frame_summary.f_locals.items())
565
+ if not (inspect.isfunction(value) or inspect.isclass(value))
566
+ }
567
+ if show_locals
568
+ else None
569
+ ),
570
+ last_instruction=last_instruction,
571
+ )
572
+ append(frame)
573
+ if frame_summary.f_locals.get("_rich_traceback_guard", False):
574
+ del stack.frames[:]
575
+
576
+ if not grouped_exceptions:
577
+ cause = getattr(exc_value, "__cause__", None)
578
+ if cause is not None and cause is not exc_value:
579
+ exc_type = cause.__class__
580
+ exc_value = cause
581
+ # __traceback__ can be None, e.g. for exceptions raised by the
582
+ # 'multiprocessing' module
583
+ traceback = cause.__traceback__
584
+ is_cause = True
585
+ continue
586
+
587
+ cause = exc_value.__context__
588
+ if cause is not None and not getattr(
589
+ exc_value, "__suppress_context__", False
590
+ ):
591
+ exc_type = cause.__class__
592
+ exc_value = cause
593
+ traceback = cause.__traceback__
594
+ is_cause = False
595
+ continue
596
+ # No cover, code is reached but coverage doesn't recognize it.
597
+ break # pragma: no cover
598
+
599
+ trace = Trace(stacks=stacks)
600
+
601
+ return trace
602
+
603
+ def __rich_console__(
604
+ self, console: Console, options: ConsoleOptions
605
+ ) -> RenderResult:
606
+ theme = self.theme
607
+ background_style = theme.get_background_style()
608
+ token_style = theme.get_style_for_token
609
+
610
+ traceback_theme = Theme(
611
+ {
612
+ "pretty": token_style(TextToken),
613
+ "pygments.text": token_style(Token),
614
+ "pygments.string": token_style(String),
615
+ "pygments.function": token_style(Name.Function),
616
+ "pygments.number": token_style(Number),
617
+ "repr.indent": token_style(Comment) + Style(dim=True),
618
+ "repr.str": token_style(String),
619
+ "repr.brace": token_style(TextToken) + Style(bold=True),
620
+ "repr.number": token_style(Number),
621
+ "repr.bool_true": token_style(Keyword.Constant),
622
+ "repr.bool_false": token_style(Keyword.Constant),
623
+ "repr.none": token_style(Keyword.Constant),
624
+ "scope.border": token_style(String.Delimiter),
625
+ "scope.equals": token_style(Operator),
626
+ "scope.key": token_style(Name),
627
+ "scope.key.special": token_style(Name.Constant) + Style(dim=True),
628
+ },
629
+ inherit=False,
630
+ )
631
+
632
+ highlighter = ReprHighlighter()
633
+
634
+ @group()
635
+ def render_stack(stack: Stack, last: bool) -> RenderResult:
636
+ if stack.frames:
637
+ stack_renderable: ConsoleRenderable = Panel(
638
+ self._render_stack(stack),
639
+ title="[traceback.title]Traceback [dim](most recent call last)",
640
+ style=background_style,
641
+ border_style="traceback.border",
642
+ expand=True,
643
+ padding=(0, 1),
644
+ )
645
+ stack_renderable = Constrain(stack_renderable, self.width)
646
+ with console.use_theme(traceback_theme):
647
+ yield stack_renderable
648
+
649
+ if stack.syntax_error is not None:
650
+ with console.use_theme(traceback_theme):
651
+ yield Constrain(
652
+ Panel(
653
+ self._render_syntax_error(stack.syntax_error),
654
+ style=background_style,
655
+ border_style="traceback.border.syntax_error",
656
+ expand=True,
657
+ padding=(0, 1),
658
+ width=self.width,
659
+ ),
660
+ self.width,
661
+ )
662
+ yield Text.assemble(
663
+ (f"{stack.exc_type}: ", "traceback.exc_type"),
664
+ highlighter(stack.syntax_error.msg),
665
+ )
666
+ elif stack.exc_value:
667
+ yield Text.assemble(
668
+ (f"{stack.exc_type}: ", "traceback.exc_type"),
669
+ highlighter(stack.exc_value),
670
+ )
671
+ else:
672
+ yield Text.assemble((f"{stack.exc_type}", "traceback.exc_type"))
673
+
674
+ for note in stack.notes:
675
+ yield Text.assemble(("[NOTE] ", "traceback.note"), highlighter(note))
676
+
677
+ if stack.is_group:
678
+ for group_no, group_exception in enumerate(stack.exceptions, 1):
679
+ grouped_exceptions: List[Group] = []
680
+ for group_last, group_stack in loop_last(group_exception.stacks):
681
+ grouped_exceptions.append(render_stack(group_stack, group_last))
682
+ yield ""
683
+ yield Constrain(
684
+ Panel(
685
+ Group(*grouped_exceptions),
686
+ title=f"Sub-exception #{group_no}",
687
+ border_style="traceback.group.border",
688
+ ),
689
+ self.width,
690
+ )
691
+
692
+ if not last:
693
+ if stack.is_cause:
694
+ yield Text.from_markup(
695
+ "\n[i]The above exception was the direct cause of the following exception:\n",
696
+ )
697
+ else:
698
+ yield Text.from_markup(
699
+ "\n[i]During handling of the above exception, another exception occurred:\n",
700
+ )
701
+
702
+ for last, stack in loop_last(reversed(self.trace.stacks)):
703
+ yield render_stack(stack, last)
704
+
705
+ @group()
706
+ def _render_syntax_error(self, syntax_error: _SyntaxError) -> RenderResult:
707
+ highlighter = ReprHighlighter()
708
+ path_highlighter = PathHighlighter()
709
+ if syntax_error.filename != "<stdin>":
710
+ if os.path.exists(syntax_error.filename):
711
+ text = Text.assemble(
712
+ (f" {syntax_error.filename}", "pygments.string"),
713
+ (":", "pygments.text"),
714
+ (str(syntax_error.lineno), "pygments.number"),
715
+ style="pygments.text",
716
+ )
717
+ yield path_highlighter(text)
718
+ syntax_error_text = highlighter(syntax_error.line.rstrip())
719
+ syntax_error_text.no_wrap = True
720
+ offset = min(syntax_error.offset - 1, len(syntax_error_text))
721
+ syntax_error_text.stylize("bold underline", offset, offset)
722
+ syntax_error_text += Text.from_markup(
723
+ "\n" + " " * offset + "[traceback.offset]▲[/]",
724
+ style="pygments.text",
725
+ )
726
+ yield syntax_error_text
727
+
728
+ @classmethod
729
+ def _guess_lexer(cls, filename: str, code: str) -> str:
730
+ ext = os.path.splitext(filename)[-1]
731
+ if not ext:
732
+ # No extension, look at first line to see if it is a hashbang
733
+ # Note, this is an educated guess and not a guarantee
734
+ # If it fails, the only downside is that the code is highlighted strangely
735
+ new_line_index = code.index("\n")
736
+ first_line = code[:new_line_index] if new_line_index != -1 else code
737
+ if first_line.startswith("#!") and "python" in first_line.lower():
738
+ return "python"
739
+ try:
740
+ return cls.LEXERS.get(ext) or guess_lexer_for_filename(filename, code).name
741
+ except ClassNotFound:
742
+ return "text"
743
+
744
+ @group()
745
+ def _render_stack(self, stack: Stack) -> RenderResult:
746
+ path_highlighter = PathHighlighter()
747
+ theme = self.theme
748
+
749
+ def render_locals(frame: Frame) -> Iterable[ConsoleRenderable]:
750
+ if frame.locals:
751
+ yield render_scope(
752
+ frame.locals,
753
+ title="locals",
754
+ indent_guides=self.indent_guides,
755
+ max_length=self.locals_max_length,
756
+ max_string=self.locals_max_string,
757
+ )
758
+
759
+ exclude_frames: Optional[range] = None
760
+ if self.max_frames != 0:
761
+ exclude_frames = range(
762
+ self.max_frames // 2,
763
+ len(stack.frames) - self.max_frames // 2,
764
+ )
765
+
766
+ excluded = False
767
+ for frame_index, frame in enumerate(stack.frames):
768
+ if exclude_frames and frame_index in exclude_frames:
769
+ excluded = True
770
+ continue
771
+
772
+ if excluded:
773
+ assert exclude_frames is not None
774
+ yield Text(
775
+ f"\n... {len(exclude_frames)} frames hidden ...",
776
+ justify="center",
777
+ style="traceback.error",
778
+ )
779
+ excluded = False
780
+
781
+ first = frame_index == 0
782
+ frame_filename = frame.filename
783
+ suppressed = any(frame_filename.startswith(path) for path in self.suppress)
784
+
785
+ if os.path.exists(frame.filename):
786
+ text = Text.assemble(
787
+ path_highlighter(Text(frame.filename, style="pygments.string")),
788
+ (":", "pygments.text"),
789
+ (str(frame.lineno), "pygments.number"),
790
+ " in ",
791
+ (frame.name, "pygments.function"),
792
+ style="pygments.text",
793
+ )
794
+ else:
795
+ text = Text.assemble(
796
+ "in ",
797
+ (frame.name, "pygments.function"),
798
+ (":", "pygments.text"),
799
+ (str(frame.lineno), "pygments.number"),
800
+ style="pygments.text",
801
+ )
802
+ if not frame.filename.startswith("<") and not first:
803
+ yield ""
804
+ yield text
805
+ if frame.filename.startswith("<"):
806
+ yield from render_locals(frame)
807
+ continue
808
+ if not suppressed:
809
+ try:
810
+ code_lines = linecache.getlines(frame.filename)
811
+ code = "".join(code_lines)
812
+ if not code:
813
+ # code may be an empty string if the file doesn't exist, OR
814
+ # if the traceback filename is generated dynamically
815
+ continue
816
+ lexer_name = self._guess_lexer(frame.filename, code)
817
+ syntax = Syntax(
818
+ code,
819
+ lexer_name,
820
+ theme=theme,
821
+ line_numbers=True,
822
+ line_range=(
823
+ frame.lineno - self.extra_lines,
824
+ frame.lineno + self.extra_lines,
825
+ ),
826
+ highlight_lines={frame.lineno},
827
+ word_wrap=self.word_wrap,
828
+ code_width=self.code_width,
829
+ indent_guides=self.indent_guides,
830
+ dedent=False,
831
+ )
832
+ yield ""
833
+ except Exception as error:
834
+ yield Text.assemble(
835
+ (f"\n{error}", "traceback.error"),
836
+ )
837
+ else:
838
+ if frame.last_instruction is not None:
839
+ start, end = frame.last_instruction
840
+
841
+ # Stylize a line at a time
842
+ # So that indentation isn't underlined (which looks bad)
843
+ for line1, column1, column2 in _iter_syntax_lines(start, end):
844
+ try:
845
+ if column1 == 0:
846
+ line = code_lines[line1 - 1]
847
+ column1 = len(line) - len(line.lstrip())
848
+ if column2 == -1:
849
+ column2 = len(code_lines[line1 - 1])
850
+ except IndexError:
851
+ # Being defensive here
852
+ # If last_instruction reports a line out-of-bounds, we don't want to crash
853
+ continue
854
+
855
+ syntax.stylize_range(
856
+ style="traceback.error_range",
857
+ start=(line1, column1),
858
+ end=(line1, column2),
859
+ )
860
+ yield (
861
+ Columns(
862
+ [
863
+ syntax,
864
+ *render_locals(frame),
865
+ ],
866
+ padding=1,
867
+ )
868
+ if frame.locals
869
+ else syntax
870
+ )
871
+
872
+
873
+ if __name__ == "__main__": # pragma: no cover
874
+ install(show_locals=True)
875
+ import sys
876
+
877
+ def bar(
878
+ a: Any,
879
+ ) -> None: # 这是对亚洲语言支持的测试。面对模棱两可的想法,拒绝猜测的诱惑
880
+ one = 1
881
+ print(one / a)
882
+
883
+ def foo(a: Any) -> None:
884
+ _rich_traceback_guard = True
885
+ zed = {
886
+ "characters": {
887
+ "Paul Atreides",
888
+ "Vladimir Harkonnen",
889
+ "Thufir Hawat",
890
+ "Duncan Idaho",
891
+ },
892
+ "atomic_types": (None, False, True),
893
+ }
894
+ bar(a)
895
+
896
+ def error() -> None:
897
+ foo(0)
898
+
899
+ error()