@pairling/runtime-darwin-x64 0.1.0 → 0.2.0

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 (1238) hide show
  1. package/bin/pairling-connectd +0 -0
  2. package/manifest.json +9 -3
  3. package/package.json +1 -1
  4. package/python/bin/2to3-3.12 +7 -0
  5. package/python/bin/idle3.12 +7 -0
  6. package/python/bin/pip +8 -0
  7. package/python/bin/pip3 +8 -0
  8. package/python/bin/pip3.12 +8 -0
  9. package/python/bin/pydoc3.12 +7 -0
  10. package/python/bin/python3 +0 -0
  11. package/python/bin/python3.12 +0 -0
  12. package/python/bin/python3.12-config +76 -0
  13. package/python/include/python3.12/Python.h +109 -0
  14. package/python/include/python3.12/abstract.h +899 -0
  15. package/python/include/python3.12/bltinmodule.h +14 -0
  16. package/python/include/python3.12/boolobject.h +42 -0
  17. package/python/include/python3.12/bytearrayobject.h +44 -0
  18. package/python/include/python3.12/bytesobject.h +69 -0
  19. package/python/include/python3.12/ceval.h +168 -0
  20. package/python/include/python3.12/codecs.h +248 -0
  21. package/python/include/python3.12/compile.h +22 -0
  22. package/python/include/python3.12/complexobject.h +30 -0
  23. package/python/include/python3.12/cpython/abstract.h +206 -0
  24. package/python/include/python3.12/cpython/bytearrayobject.h +34 -0
  25. package/python/include/python3.12/cpython/bytesobject.h +133 -0
  26. package/python/include/python3.12/cpython/cellobject.h +44 -0
  27. package/python/include/python3.12/cpython/ceval.h +35 -0
  28. package/python/include/python3.12/cpython/classobject.h +71 -0
  29. package/python/include/python3.12/cpython/code.h +389 -0
  30. package/python/include/python3.12/cpython/compile.h +69 -0
  31. package/python/include/python3.12/cpython/complexobject.h +44 -0
  32. package/python/include/python3.12/cpython/context.h +78 -0
  33. package/python/include/python3.12/cpython/descrobject.h +64 -0
  34. package/python/include/python3.12/cpython/dictobject.h +118 -0
  35. package/python/include/python3.12/cpython/fileobject.h +19 -0
  36. package/python/include/python3.12/cpython/fileutils.h +8 -0
  37. package/python/include/python3.12/cpython/floatobject.h +27 -0
  38. package/python/include/python3.12/cpython/frameobject.h +29 -0
  39. package/python/include/python3.12/cpython/funcobject.h +190 -0
  40. package/python/include/python3.12/cpython/genobject.h +89 -0
  41. package/python/include/python3.12/cpython/import.h +46 -0
  42. package/python/include/python3.12/cpython/initconfig.h +256 -0
  43. package/python/include/python3.12/cpython/interpreteridobject.h +11 -0
  44. package/python/include/python3.12/cpython/listobject.h +47 -0
  45. package/python/include/python3.12/cpython/longintrepr.h +133 -0
  46. package/python/include/python3.12/cpython/longobject.h +100 -0
  47. package/python/include/python3.12/cpython/memoryobject.h +52 -0
  48. package/python/include/python3.12/cpython/methodobject.h +66 -0
  49. package/python/include/python3.12/cpython/modsupport.h +109 -0
  50. package/python/include/python3.12/cpython/object.h +575 -0
  51. package/python/include/python3.12/cpython/objimpl.h +95 -0
  52. package/python/include/python3.12/cpython/odictobject.h +43 -0
  53. package/python/include/python3.12/cpython/picklebufobject.h +31 -0
  54. package/python/include/python3.12/cpython/pthread_stubs.h +88 -0
  55. package/python/include/python3.12/cpython/pyctype.h +39 -0
  56. package/python/include/python3.12/cpython/pydebug.h +38 -0
  57. package/python/include/python3.12/cpython/pyerrors.h +178 -0
  58. package/python/include/python3.12/cpython/pyfpe.h +15 -0
  59. package/python/include/python3.12/cpython/pyframe.h +35 -0
  60. package/python/include/python3.12/cpython/pylifecycle.h +111 -0
  61. package/python/include/python3.12/cpython/pymem.h +98 -0
  62. package/python/include/python3.12/cpython/pystate.h +456 -0
  63. package/python/include/python3.12/cpython/pythonrun.h +121 -0
  64. package/python/include/python3.12/cpython/pythread.h +42 -0
  65. package/python/include/python3.12/cpython/pytime.h +331 -0
  66. package/python/include/python3.12/cpython/setobject.h +72 -0
  67. package/python/include/python3.12/cpython/sysmodule.h +16 -0
  68. package/python/include/python3.12/cpython/traceback.h +16 -0
  69. package/python/include/python3.12/cpython/tupleobject.h +39 -0
  70. package/python/include/python3.12/cpython/unicodeobject.h +976 -0
  71. package/python/include/python3.12/cpython/warnings.h +20 -0
  72. package/python/include/python3.12/cpython/weakrefobject.h +56 -0
  73. package/python/include/python3.12/datetime.h +267 -0
  74. package/python/include/python3.12/descrobject.h +100 -0
  75. package/python/include/python3.12/dictobject.h +97 -0
  76. package/python/include/python3.12/dynamic_annotations.h +499 -0
  77. package/python/include/python3.12/enumobject.h +17 -0
  78. package/python/include/python3.12/errcode.h +38 -0
  79. package/python/include/python3.12/exports.h +36 -0
  80. package/python/include/python3.12/fileobject.h +49 -0
  81. package/python/include/python3.12/fileutils.h +26 -0
  82. package/python/include/python3.12/floatobject.h +54 -0
  83. package/python/include/python3.12/frameobject.h +20 -0
  84. package/python/include/python3.12/genericaliasobject.h +14 -0
  85. package/python/include/python3.12/import.h +98 -0
  86. package/python/include/python3.12/internal/pycore_abstract.h +25 -0
  87. package/python/include/python3.12/internal/pycore_asdl.h +112 -0
  88. package/python/include/python3.12/internal/pycore_ast.h +922 -0
  89. package/python/include/python3.12/internal/pycore_ast_state.h +265 -0
  90. package/python/include/python3.12/internal/pycore_atexit.h +57 -0
  91. package/python/include/python3.12/internal/pycore_atomic.h +557 -0
  92. package/python/include/python3.12/internal/pycore_atomic_funcs.h +94 -0
  93. package/python/include/python3.12/internal/pycore_bitutils.h +186 -0
  94. package/python/include/python3.12/internal/pycore_blocks_output_buffer.h +317 -0
  95. package/python/include/python3.12/internal/pycore_bytes_methods.h +73 -0
  96. package/python/include/python3.12/internal/pycore_bytesobject.h +47 -0
  97. package/python/include/python3.12/internal/pycore_call.h +133 -0
  98. package/python/include/python3.12/internal/pycore_ceval.h +164 -0
  99. package/python/include/python3.12/internal/pycore_ceval_state.h +103 -0
  100. package/python/include/python3.12/internal/pycore_code.h +496 -0
  101. package/python/include/python3.12/internal/pycore_compile.h +118 -0
  102. package/python/include/python3.12/internal/pycore_condvar.h +99 -0
  103. package/python/include/python3.12/internal/pycore_context.h +71 -0
  104. package/python/include/python3.12/internal/pycore_descrobject.h +26 -0
  105. package/python/include/python3.12/internal/pycore_dict.h +199 -0
  106. package/python/include/python3.12/internal/pycore_dict_state.h +50 -0
  107. package/python/include/python3.12/internal/pycore_dtoa.h +69 -0
  108. package/python/include/python3.12/internal/pycore_emscripten_signal.h +25 -0
  109. package/python/include/python3.12/internal/pycore_exceptions.h +37 -0
  110. package/python/include/python3.12/internal/pycore_faulthandler.h +99 -0
  111. package/python/include/python3.12/internal/pycore_fileutils.h +292 -0
  112. package/python/include/python3.12/internal/pycore_fileutils_windows.h +98 -0
  113. package/python/include/python3.12/internal/pycore_floatobject.h +71 -0
  114. package/python/include/python3.12/internal/pycore_flowgraph.h +120 -0
  115. package/python/include/python3.12/internal/pycore_format.h +27 -0
  116. package/python/include/python3.12/internal/pycore_frame.h +283 -0
  117. package/python/include/python3.12/internal/pycore_function.h +26 -0
  118. package/python/include/python3.12/internal/pycore_gc.h +211 -0
  119. package/python/include/python3.12/internal/pycore_genobject.h +49 -0
  120. package/python/include/python3.12/internal/pycore_getopt.h +22 -0
  121. package/python/include/python3.12/internal/pycore_gil.h +50 -0
  122. package/python/include/python3.12/internal/pycore_global_objects.h +105 -0
  123. package/python/include/python3.12/internal/pycore_global_objects_fini_generated.h +1517 -0
  124. package/python/include/python3.12/internal/pycore_global_strings.h +777 -0
  125. package/python/include/python3.12/internal/pycore_hamt.h +134 -0
  126. package/python/include/python3.12/internal/pycore_hashtable.h +149 -0
  127. package/python/include/python3.12/internal/pycore_import.h +183 -0
  128. package/python/include/python3.12/internal/pycore_initconfig.h +179 -0
  129. package/python/include/python3.12/internal/pycore_instruments.h +106 -0
  130. package/python/include/python3.12/internal/pycore_interp.h +275 -0
  131. package/python/include/python3.12/internal/pycore_intrinsics.h +32 -0
  132. package/python/include/python3.12/internal/pycore_list.h +83 -0
  133. package/python/include/python3.12/internal/pycore_long.h +258 -0
  134. package/python/include/python3.12/internal/pycore_memoryobject.h +18 -0
  135. package/python/include/python3.12/internal/pycore_moduleobject.h +45 -0
  136. package/python/include/python3.12/internal/pycore_namespace.h +20 -0
  137. package/python/include/python3.12/internal/pycore_object.h +455 -0
  138. package/python/include/python3.12/internal/pycore_object_state.h +42 -0
  139. package/python/include/python3.12/internal/pycore_obmalloc.h +700 -0
  140. package/python/include/python3.12/internal/pycore_obmalloc_init.h +73 -0
  141. package/python/include/python3.12/internal/pycore_opcode.h +587 -0
  142. package/python/include/python3.12/internal/pycore_opcode_utils.h +92 -0
  143. package/python/include/python3.12/internal/pycore_parser.h +66 -0
  144. package/python/include/python3.12/internal/pycore_pathconfig.h +24 -0
  145. package/python/include/python3.12/internal/pycore_pyarena.h +64 -0
  146. package/python/include/python3.12/internal/pycore_pyerrors.h +129 -0
  147. package/python/include/python3.12/internal/pycore_pyhash.h +40 -0
  148. package/python/include/python3.12/internal/pycore_pylifecycle.h +99 -0
  149. package/python/include/python3.12/internal/pycore_pymath.h +205 -0
  150. package/python/include/python3.12/internal/pycore_pymem.h +98 -0
  151. package/python/include/python3.12/internal/pycore_pymem_init.h +85 -0
  152. package/python/include/python3.12/internal/pycore_pystate.h +180 -0
  153. package/python/include/python3.12/internal/pycore_pythread.h +81 -0
  154. package/python/include/python3.12/internal/pycore_range.h +21 -0
  155. package/python/include/python3.12/internal/pycore_runtime.h +235 -0
  156. package/python/include/python3.12/internal/pycore_runtime_init.h +188 -0
  157. package/python/include/python3.12/internal/pycore_runtime_init_generated.h +1511 -0
  158. package/python/include/python3.12/internal/pycore_signal.h +98 -0
  159. package/python/include/python3.12/internal/pycore_sliceobject.h +22 -0
  160. package/python/include/python3.12/internal/pycore_strhex.h +36 -0
  161. package/python/include/python3.12/internal/pycore_structseq.h +39 -0
  162. package/python/include/python3.12/internal/pycore_symtable.h +160 -0
  163. package/python/include/python3.12/internal/pycore_sysmodule.h +34 -0
  164. package/python/include/python3.12/internal/pycore_time.h +25 -0
  165. package/python/include/python3.12/internal/pycore_token.h +108 -0
  166. package/python/include/python3.12/internal/pycore_traceback.h +101 -0
  167. package/python/include/python3.12/internal/pycore_tracemalloc.h +123 -0
  168. package/python/include/python3.12/internal/pycore_tuple.h +79 -0
  169. package/python/include/python3.12/internal/pycore_typeobject.h +151 -0
  170. package/python/include/python3.12/internal/pycore_typevarobject.h +24 -0
  171. package/python/include/python3.12/internal/pycore_ucnhash.h +34 -0
  172. package/python/include/python3.12/internal/pycore_unicodeobject.h +86 -0
  173. package/python/include/python3.12/internal/pycore_unicodeobject_generated.h +2832 -0
  174. package/python/include/python3.12/internal/pycore_unionobject.h +23 -0
  175. package/python/include/python3.12/internal/pycore_warnings.h +29 -0
  176. package/python/include/python3.12/interpreteridobject.h +17 -0
  177. package/python/include/python3.12/intrcheck.h +30 -0
  178. package/python/include/python3.12/iterobject.h +27 -0
  179. package/python/include/python3.12/listobject.h +52 -0
  180. package/python/include/python3.12/longobject.h +108 -0
  181. package/python/include/python3.12/marshal.h +31 -0
  182. package/python/include/python3.12/memoryobject.h +34 -0
  183. package/python/include/python3.12/methodobject.h +132 -0
  184. package/python/include/python3.12/modsupport.h +168 -0
  185. package/python/include/python3.12/moduleobject.h +119 -0
  186. package/python/include/python3.12/object.h +993 -0
  187. package/python/include/python3.12/objimpl.h +234 -0
  188. package/python/include/python3.12/opcode.h +271 -0
  189. package/python/include/python3.12/osdefs.h +51 -0
  190. package/python/include/python3.12/osmodule.h +17 -0
  191. package/python/include/python3.12/patchlevel.h +35 -0
  192. package/python/include/python3.12/py_curses.h +99 -0
  193. package/python/include/python3.12/pybuffer.h +145 -0
  194. package/python/include/python3.12/pycapsule.h +59 -0
  195. package/python/include/python3.12/pyconfig.h +1943 -0
  196. package/python/include/python3.12/pydtrace.h +59 -0
  197. package/python/include/python3.12/pyerrors.h +337 -0
  198. package/python/include/python3.12/pyexpat.h +62 -0
  199. package/python/include/python3.12/pyframe.h +26 -0
  200. package/python/include/python3.12/pyhash.h +144 -0
  201. package/python/include/python3.12/pylifecycle.h +78 -0
  202. package/python/include/python3.12/pymacconfig.h +99 -0
  203. package/python/include/python3.12/pymacro.h +172 -0
  204. package/python/include/python3.12/pymath.h +62 -0
  205. package/python/include/python3.12/pymem.h +104 -0
  206. package/python/include/python3.12/pyport.h +782 -0
  207. package/python/include/python3.12/pystate.h +132 -0
  208. package/python/include/python3.12/pystats.h +110 -0
  209. package/python/include/python3.12/pystrcmp.h +23 -0
  210. package/python/include/python3.12/pystrtod.h +46 -0
  211. package/python/include/python3.12/pythonrun.h +49 -0
  212. package/python/include/python3.12/pythread.h +135 -0
  213. package/python/include/python3.12/pytypedefs.h +30 -0
  214. package/python/include/python3.12/rangeobject.h +27 -0
  215. package/python/include/python3.12/setobject.h +49 -0
  216. package/python/include/python3.12/sliceobject.h +65 -0
  217. package/python/include/python3.12/structmember.h +56 -0
  218. package/python/include/python3.12/structseq.h +49 -0
  219. package/python/include/python3.12/sysmodule.h +54 -0
  220. package/python/include/python3.12/traceback.h +26 -0
  221. package/python/include/python3.12/tracemalloc.h +77 -0
  222. package/python/include/python3.12/tupleobject.h +46 -0
  223. package/python/include/python3.12/typeslots.h +88 -0
  224. package/python/include/python3.12/unicodeobject.h +1020 -0
  225. package/python/include/python3.12/warnings.h +45 -0
  226. package/python/include/python3.12/weakrefobject.h +42 -0
  227. package/python/lib/libpython3.12.dylib +0 -0
  228. package/python/lib/python3.12/LICENSE.txt +279 -0
  229. package/python/lib/python3.12/__future__.py +147 -0
  230. package/python/lib/python3.12/__hello__.py +16 -0
  231. package/python/lib/python3.12/__phello__/__init__.py +7 -0
  232. package/python/lib/python3.12/__phello__/spam.py +7 -0
  233. package/python/lib/python3.12/_aix_support.py +108 -0
  234. package/python/lib/python3.12/_collections_abc.py +1173 -0
  235. package/python/lib/python3.12/_compat_pickle.py +252 -0
  236. package/python/lib/python3.12/_compression.py +162 -0
  237. package/python/lib/python3.12/_markupbase.py +396 -0
  238. package/python/lib/python3.12/_osx_support.py +579 -0
  239. package/python/lib/python3.12/_py_abc.py +147 -0
  240. package/python/lib/python3.12/_pydatetime.py +2643 -0
  241. package/python/lib/python3.12/_pydecimal.py +6339 -0
  242. package/python/lib/python3.12/_pyio.py +2698 -0
  243. package/python/lib/python3.12/_pylong.py +329 -0
  244. package/python/lib/python3.12/_sitebuiltins.py +103 -0
  245. package/python/lib/python3.12/_strptime.py +664 -0
  246. package/python/lib/python3.12/_sysconfigdata__darwin_darwin.py +984 -0
  247. package/python/lib/python3.12/_threading_local.py +242 -0
  248. package/python/lib/python3.12/_weakrefset.py +205 -0
  249. package/python/lib/python3.12/abc.py +188 -0
  250. package/python/lib/python3.12/aifc.py +984 -0
  251. package/python/lib/python3.12/antigravity.py +17 -0
  252. package/python/lib/python3.12/argparse.py +2650 -0
  253. package/python/lib/python3.12/ast.py +1840 -0
  254. package/python/lib/python3.12/asyncio/__init__.py +47 -0
  255. package/python/lib/python3.12/asyncio/__main__.py +128 -0
  256. package/python/lib/python3.12/asyncio/base_events.py +2024 -0
  257. package/python/lib/python3.12/asyncio/base_futures.py +67 -0
  258. package/python/lib/python3.12/asyncio/base_subprocess.py +285 -0
  259. package/python/lib/python3.12/asyncio/base_tasks.py +94 -0
  260. package/python/lib/python3.12/asyncio/constants.py +41 -0
  261. package/python/lib/python3.12/asyncio/coroutines.py +109 -0
  262. package/python/lib/python3.12/asyncio/events.py +868 -0
  263. package/python/lib/python3.12/asyncio/exceptions.py +62 -0
  264. package/python/lib/python3.12/asyncio/format_helpers.py +76 -0
  265. package/python/lib/python3.12/asyncio/futures.py +430 -0
  266. package/python/lib/python3.12/asyncio/locks.py +586 -0
  267. package/python/lib/python3.12/asyncio/log.py +7 -0
  268. package/python/lib/python3.12/asyncio/mixins.py +21 -0
  269. package/python/lib/python3.12/asyncio/proactor_events.py +897 -0
  270. package/python/lib/python3.12/asyncio/protocols.py +216 -0
  271. package/python/lib/python3.12/asyncio/queues.py +244 -0
  272. package/python/lib/python3.12/asyncio/runners.py +216 -0
  273. package/python/lib/python3.12/asyncio/selector_events.py +1324 -0
  274. package/python/lib/python3.12/asyncio/sslproto.py +929 -0
  275. package/python/lib/python3.12/asyncio/staggered.py +174 -0
  276. package/python/lib/python3.12/asyncio/streams.py +770 -0
  277. package/python/lib/python3.12/asyncio/subprocess.py +229 -0
  278. package/python/lib/python3.12/asyncio/taskgroups.py +268 -0
  279. package/python/lib/python3.12/asyncio/tasks.py +1065 -0
  280. package/python/lib/python3.12/asyncio/threads.py +25 -0
  281. package/python/lib/python3.12/asyncio/timeouts.py +168 -0
  282. package/python/lib/python3.12/asyncio/transports.py +335 -0
  283. package/python/lib/python3.12/asyncio/trsock.py +98 -0
  284. package/python/lib/python3.12/asyncio/unix_events.py +1500 -0
  285. package/python/lib/python3.12/asyncio/windows_events.py +901 -0
  286. package/python/lib/python3.12/asyncio/windows_utils.py +173 -0
  287. package/python/lib/python3.12/base64.py +586 -0
  288. package/python/lib/python3.12/bdb.py +920 -0
  289. package/python/lib/python3.12/bisect.py +118 -0
  290. package/python/lib/python3.12/bz2.py +344 -0
  291. package/python/lib/python3.12/cProfile.py +195 -0
  292. package/python/lib/python3.12/calendar.py +808 -0
  293. package/python/lib/python3.12/cgi.py +1014 -0
  294. package/python/lib/python3.12/cgitb.py +332 -0
  295. package/python/lib/python3.12/chunk.py +173 -0
  296. package/python/lib/python3.12/cmd.py +401 -0
  297. package/python/lib/python3.12/code.py +324 -0
  298. package/python/lib/python3.12/codecs.py +1129 -0
  299. package/python/lib/python3.12/codeop.py +161 -0
  300. package/python/lib/python3.12/collections/__init__.py +1592 -0
  301. package/python/lib/python3.12/collections/abc.py +3 -0
  302. package/python/lib/python3.12/colorsys.py +166 -0
  303. package/python/lib/python3.12/compileall.py +469 -0
  304. package/python/lib/python3.12/concurrent/__init__.py +1 -0
  305. package/python/lib/python3.12/concurrent/futures/__init__.py +54 -0
  306. package/python/lib/python3.12/concurrent/futures/_base.py +654 -0
  307. package/python/lib/python3.12/concurrent/futures/process.py +876 -0
  308. package/python/lib/python3.12/concurrent/futures/thread.py +240 -0
  309. package/python/lib/python3.12/config-3.12-darwin/Makefile +3224 -0
  310. package/python/lib/python3.12/config-3.12-darwin/Setup +303 -0
  311. package/python/lib/python3.12/config-3.12-darwin/Setup.bootstrap +36 -0
  312. package/python/lib/python3.12/config-3.12-darwin/Setup.local +90 -0
  313. package/python/lib/python3.12/config-3.12-darwin/Setup.stdlib +183 -0
  314. package/python/lib/python3.12/config-3.12-darwin/config.c +246 -0
  315. package/python/lib/python3.12/config-3.12-darwin/config.c.in +71 -0
  316. package/python/lib/python3.12/config-3.12-darwin/install-sh +541 -0
  317. package/python/lib/python3.12/config-3.12-darwin/makesetup +353 -0
  318. package/python/lib/python3.12/config-3.12-darwin/python-config.py +76 -0
  319. package/python/lib/python3.12/config-3.12-darwin/python.o +0 -0
  320. package/python/lib/python3.12/configparser.py +1333 -0
  321. package/python/lib/python3.12/contextlib.py +800 -0
  322. package/python/lib/python3.12/contextvars.py +4 -0
  323. package/python/lib/python3.12/copy.py +292 -0
  324. package/python/lib/python3.12/copyreg.py +217 -0
  325. package/python/lib/python3.12/crypt.py +124 -0
  326. package/python/lib/python3.12/csv.py +451 -0
  327. package/python/lib/python3.12/ctypes/__init__.py +582 -0
  328. package/python/lib/python3.12/ctypes/_aix.py +327 -0
  329. package/python/lib/python3.12/ctypes/_endian.py +78 -0
  330. package/python/lib/python3.12/ctypes/macholib/README.ctypes +7 -0
  331. package/python/lib/python3.12/ctypes/macholib/__init__.py +9 -0
  332. package/python/lib/python3.12/ctypes/macholib/dyld.py +165 -0
  333. package/python/lib/python3.12/ctypes/macholib/dylib.py +42 -0
  334. package/python/lib/python3.12/ctypes/macholib/fetch_macholib +2 -0
  335. package/python/lib/python3.12/ctypes/macholib/fetch_macholib.bat +1 -0
  336. package/python/lib/python3.12/ctypes/macholib/framework.py +42 -0
  337. package/python/lib/python3.12/ctypes/util.py +379 -0
  338. package/python/lib/python3.12/ctypes/wintypes.py +202 -0
  339. package/python/lib/python3.12/curses/__init__.py +101 -0
  340. package/python/lib/python3.12/curses/ascii.py +99 -0
  341. package/python/lib/python3.12/curses/has_key.py +192 -0
  342. package/python/lib/python3.12/curses/panel.py +6 -0
  343. package/python/lib/python3.12/curses/textpad.py +204 -0
  344. package/python/lib/python3.12/dataclasses.py +1588 -0
  345. package/python/lib/python3.12/datetime.py +9 -0
  346. package/python/lib/python3.12/dbm/__init__.py +190 -0
  347. package/python/lib/python3.12/dbm/dumb.py +317 -0
  348. package/python/lib/python3.12/dbm/gnu.py +3 -0
  349. package/python/lib/python3.12/dbm/ndbm.py +3 -0
  350. package/python/lib/python3.12/decimal.py +108 -0
  351. package/python/lib/python3.12/difflib.py +2056 -0
  352. package/python/lib/python3.12/dis.py +805 -0
  353. package/python/lib/python3.12/doctest.py +2845 -0
  354. package/python/lib/python3.12/email/__init__.py +61 -0
  355. package/python/lib/python3.12/email/_encoded_words.py +233 -0
  356. package/python/lib/python3.12/email/_header_value_parser.py +3108 -0
  357. package/python/lib/python3.12/email/_parseaddr.py +557 -0
  358. package/python/lib/python3.12/email/_policybase.py +382 -0
  359. package/python/lib/python3.12/email/architecture.rst +216 -0
  360. package/python/lib/python3.12/email/base64mime.py +115 -0
  361. package/python/lib/python3.12/email/charset.py +398 -0
  362. package/python/lib/python3.12/email/contentmanager.py +251 -0
  363. package/python/lib/python3.12/email/encoders.py +65 -0
  364. package/python/lib/python3.12/email/errors.py +117 -0
  365. package/python/lib/python3.12/email/feedparser.py +534 -0
  366. package/python/lib/python3.12/email/generator.py +530 -0
  367. package/python/lib/python3.12/email/header.py +573 -0
  368. package/python/lib/python3.12/email/headerregistry.py +604 -0
  369. package/python/lib/python3.12/email/iterators.py +68 -0
  370. package/python/lib/python3.12/email/message.py +1215 -0
  371. package/python/lib/python3.12/email/mime/__init__.py +0 -0
  372. package/python/lib/python3.12/email/mime/application.py +37 -0
  373. package/python/lib/python3.12/email/mime/audio.py +100 -0
  374. package/python/lib/python3.12/email/mime/base.py +29 -0
  375. package/python/lib/python3.12/email/mime/image.py +152 -0
  376. package/python/lib/python3.12/email/mime/message.py +33 -0
  377. package/python/lib/python3.12/email/mime/multipart.py +47 -0
  378. package/python/lib/python3.12/email/mime/nonmultipart.py +21 -0
  379. package/python/lib/python3.12/email/mime/text.py +40 -0
  380. package/python/lib/python3.12/email/parser.py +127 -0
  381. package/python/lib/python3.12/email/policy.py +232 -0
  382. package/python/lib/python3.12/email/quoprimime.py +300 -0
  383. package/python/lib/python3.12/email/utils.py +486 -0
  384. package/python/lib/python3.12/encodings/__init__.py +174 -0
  385. package/python/lib/python3.12/encodings/aliases.py +551 -0
  386. package/python/lib/python3.12/encodings/ascii.py +50 -0
  387. package/python/lib/python3.12/encodings/base64_codec.py +55 -0
  388. package/python/lib/python3.12/encodings/big5.py +39 -0
  389. package/python/lib/python3.12/encodings/big5hkscs.py +39 -0
  390. package/python/lib/python3.12/encodings/bz2_codec.py +78 -0
  391. package/python/lib/python3.12/encodings/charmap.py +69 -0
  392. package/python/lib/python3.12/encodings/cp037.py +307 -0
  393. package/python/lib/python3.12/encodings/cp1006.py +307 -0
  394. package/python/lib/python3.12/encodings/cp1026.py +307 -0
  395. package/python/lib/python3.12/encodings/cp1125.py +698 -0
  396. package/python/lib/python3.12/encodings/cp1140.py +307 -0
  397. package/python/lib/python3.12/encodings/cp1250.py +307 -0
  398. package/python/lib/python3.12/encodings/cp1251.py +307 -0
  399. package/python/lib/python3.12/encodings/cp1252.py +307 -0
  400. package/python/lib/python3.12/encodings/cp1253.py +307 -0
  401. package/python/lib/python3.12/encodings/cp1254.py +307 -0
  402. package/python/lib/python3.12/encodings/cp1255.py +307 -0
  403. package/python/lib/python3.12/encodings/cp1256.py +307 -0
  404. package/python/lib/python3.12/encodings/cp1257.py +307 -0
  405. package/python/lib/python3.12/encodings/cp1258.py +307 -0
  406. package/python/lib/python3.12/encodings/cp273.py +307 -0
  407. package/python/lib/python3.12/encodings/cp424.py +307 -0
  408. package/python/lib/python3.12/encodings/cp437.py +698 -0
  409. package/python/lib/python3.12/encodings/cp500.py +307 -0
  410. package/python/lib/python3.12/encodings/cp720.py +309 -0
  411. package/python/lib/python3.12/encodings/cp737.py +698 -0
  412. package/python/lib/python3.12/encodings/cp775.py +697 -0
  413. package/python/lib/python3.12/encodings/cp850.py +698 -0
  414. package/python/lib/python3.12/encodings/cp852.py +698 -0
  415. package/python/lib/python3.12/encodings/cp855.py +698 -0
  416. package/python/lib/python3.12/encodings/cp856.py +307 -0
  417. package/python/lib/python3.12/encodings/cp857.py +694 -0
  418. package/python/lib/python3.12/encodings/cp858.py +698 -0
  419. package/python/lib/python3.12/encodings/cp860.py +698 -0
  420. package/python/lib/python3.12/encodings/cp861.py +698 -0
  421. package/python/lib/python3.12/encodings/cp862.py +698 -0
  422. package/python/lib/python3.12/encodings/cp863.py +698 -0
  423. package/python/lib/python3.12/encodings/cp864.py +690 -0
  424. package/python/lib/python3.12/encodings/cp865.py +698 -0
  425. package/python/lib/python3.12/encodings/cp866.py +698 -0
  426. package/python/lib/python3.12/encodings/cp869.py +689 -0
  427. package/python/lib/python3.12/encodings/cp874.py +307 -0
  428. package/python/lib/python3.12/encodings/cp875.py +307 -0
  429. package/python/lib/python3.12/encodings/cp932.py +39 -0
  430. package/python/lib/python3.12/encodings/cp949.py +39 -0
  431. package/python/lib/python3.12/encodings/cp950.py +39 -0
  432. package/python/lib/python3.12/encodings/euc_jis_2004.py +39 -0
  433. package/python/lib/python3.12/encodings/euc_jisx0213.py +39 -0
  434. package/python/lib/python3.12/encodings/euc_jp.py +39 -0
  435. package/python/lib/python3.12/encodings/euc_kr.py +39 -0
  436. package/python/lib/python3.12/encodings/gb18030.py +39 -0
  437. package/python/lib/python3.12/encodings/gb2312.py +39 -0
  438. package/python/lib/python3.12/encodings/gbk.py +39 -0
  439. package/python/lib/python3.12/encodings/hex_codec.py +55 -0
  440. package/python/lib/python3.12/encodings/hp_roman8.py +314 -0
  441. package/python/lib/python3.12/encodings/hz.py +39 -0
  442. package/python/lib/python3.12/encodings/idna.py +317 -0
  443. package/python/lib/python3.12/encodings/iso2022_jp.py +39 -0
  444. package/python/lib/python3.12/encodings/iso2022_jp_1.py +39 -0
  445. package/python/lib/python3.12/encodings/iso2022_jp_2.py +39 -0
  446. package/python/lib/python3.12/encodings/iso2022_jp_2004.py +39 -0
  447. package/python/lib/python3.12/encodings/iso2022_jp_3.py +39 -0
  448. package/python/lib/python3.12/encodings/iso2022_jp_ext.py +39 -0
  449. package/python/lib/python3.12/encodings/iso2022_kr.py +39 -0
  450. package/python/lib/python3.12/encodings/iso8859_1.py +307 -0
  451. package/python/lib/python3.12/encodings/iso8859_10.py +307 -0
  452. package/python/lib/python3.12/encodings/iso8859_11.py +307 -0
  453. package/python/lib/python3.12/encodings/iso8859_13.py +307 -0
  454. package/python/lib/python3.12/encodings/iso8859_14.py +307 -0
  455. package/python/lib/python3.12/encodings/iso8859_15.py +307 -0
  456. package/python/lib/python3.12/encodings/iso8859_16.py +307 -0
  457. package/python/lib/python3.12/encodings/iso8859_2.py +307 -0
  458. package/python/lib/python3.12/encodings/iso8859_3.py +307 -0
  459. package/python/lib/python3.12/encodings/iso8859_4.py +307 -0
  460. package/python/lib/python3.12/encodings/iso8859_5.py +307 -0
  461. package/python/lib/python3.12/encodings/iso8859_6.py +307 -0
  462. package/python/lib/python3.12/encodings/iso8859_7.py +307 -0
  463. package/python/lib/python3.12/encodings/iso8859_8.py +307 -0
  464. package/python/lib/python3.12/encodings/iso8859_9.py +307 -0
  465. package/python/lib/python3.12/encodings/johab.py +39 -0
  466. package/python/lib/python3.12/encodings/koi8_r.py +307 -0
  467. package/python/lib/python3.12/encodings/koi8_t.py +308 -0
  468. package/python/lib/python3.12/encodings/koi8_u.py +307 -0
  469. package/python/lib/python3.12/encodings/kz1048.py +307 -0
  470. package/python/lib/python3.12/encodings/latin_1.py +50 -0
  471. package/python/lib/python3.12/encodings/mac_arabic.py +698 -0
  472. package/python/lib/python3.12/encodings/mac_croatian.py +307 -0
  473. package/python/lib/python3.12/encodings/mac_cyrillic.py +307 -0
  474. package/python/lib/python3.12/encodings/mac_farsi.py +307 -0
  475. package/python/lib/python3.12/encodings/mac_greek.py +307 -0
  476. package/python/lib/python3.12/encodings/mac_iceland.py +307 -0
  477. package/python/lib/python3.12/encodings/mac_latin2.py +312 -0
  478. package/python/lib/python3.12/encodings/mac_roman.py +307 -0
  479. package/python/lib/python3.12/encodings/mac_romanian.py +307 -0
  480. package/python/lib/python3.12/encodings/mac_turkish.py +307 -0
  481. package/python/lib/python3.12/encodings/mbcs.py +47 -0
  482. package/python/lib/python3.12/encodings/oem.py +41 -0
  483. package/python/lib/python3.12/encodings/palmos.py +308 -0
  484. package/python/lib/python3.12/encodings/ptcp154.py +312 -0
  485. package/python/lib/python3.12/encodings/punycode.py +237 -0
  486. package/python/lib/python3.12/encodings/quopri_codec.py +56 -0
  487. package/python/lib/python3.12/encodings/raw_unicode_escape.py +46 -0
  488. package/python/lib/python3.12/encodings/rot_13.py +113 -0
  489. package/python/lib/python3.12/encodings/shift_jis.py +39 -0
  490. package/python/lib/python3.12/encodings/shift_jis_2004.py +39 -0
  491. package/python/lib/python3.12/encodings/shift_jisx0213.py +39 -0
  492. package/python/lib/python3.12/encodings/tis_620.py +307 -0
  493. package/python/lib/python3.12/encodings/undefined.py +49 -0
  494. package/python/lib/python3.12/encodings/unicode_escape.py +46 -0
  495. package/python/lib/python3.12/encodings/utf_16.py +155 -0
  496. package/python/lib/python3.12/encodings/utf_16_be.py +42 -0
  497. package/python/lib/python3.12/encodings/utf_16_le.py +42 -0
  498. package/python/lib/python3.12/encodings/utf_32.py +150 -0
  499. package/python/lib/python3.12/encodings/utf_32_be.py +37 -0
  500. package/python/lib/python3.12/encodings/utf_32_le.py +37 -0
  501. package/python/lib/python3.12/encodings/utf_7.py +38 -0
  502. package/python/lib/python3.12/encodings/utf_8.py +42 -0
  503. package/python/lib/python3.12/encodings/utf_8_sig.py +130 -0
  504. package/python/lib/python3.12/encodings/uu_codec.py +103 -0
  505. package/python/lib/python3.12/encodings/zlib_codec.py +77 -0
  506. package/python/lib/python3.12/ensurepip/__init__.py +291 -0
  507. package/python/lib/python3.12/ensurepip/__main__.py +5 -0
  508. package/python/lib/python3.12/ensurepip/_bundled/pip-25.0.1-py3-none-any.whl +0 -0
  509. package/python/lib/python3.12/ensurepip/_uninstall.py +31 -0
  510. package/python/lib/python3.12/enum.py +2108 -0
  511. package/python/lib/python3.12/filecmp.py +315 -0
  512. package/python/lib/python3.12/fileinput.py +442 -0
  513. package/python/lib/python3.12/fnmatch.py +185 -0
  514. package/python/lib/python3.12/fractions.py +990 -0
  515. package/python/lib/python3.12/ftplib.py +966 -0
  516. package/python/lib/python3.12/functools.py +1009 -0
  517. package/python/lib/python3.12/genericpath.py +176 -0
  518. package/python/lib/python3.12/getopt.py +215 -0
  519. package/python/lib/python3.12/getpass.py +185 -0
  520. package/python/lib/python3.12/gettext.py +646 -0
  521. package/python/lib/python3.12/glob.py +252 -0
  522. package/python/lib/python3.12/graphlib.py +250 -0
  523. package/python/lib/python3.12/gzip.py +711 -0
  524. package/python/lib/python3.12/hashlib.py +253 -0
  525. package/python/lib/python3.12/heapq.py +603 -0
  526. package/python/lib/python3.12/hmac.py +219 -0
  527. package/python/lib/python3.12/html/__init__.py +132 -0
  528. package/python/lib/python3.12/html/entities.py +2513 -0
  529. package/python/lib/python3.12/html/parser.py +535 -0
  530. package/python/lib/python3.12/http/__init__.py +200 -0
  531. package/python/lib/python3.12/http/client.py +1570 -0
  532. package/python/lib/python3.12/http/cookiejar.py +2121 -0
  533. package/python/lib/python3.12/http/cookies.py +615 -0
  534. package/python/lib/python3.12/http/server.py +1335 -0
  535. package/python/lib/python3.12/imaplib.py +1641 -0
  536. package/python/lib/python3.12/imghdr.py +180 -0
  537. package/python/lib/python3.12/importlib/__init__.py +138 -0
  538. package/python/lib/python3.12/importlib/_abc.py +39 -0
  539. package/python/lib/python3.12/importlib/_bootstrap.py +1551 -0
  540. package/python/lib/python3.12/importlib/_bootstrap_external.py +1749 -0
  541. package/python/lib/python3.12/importlib/abc.py +239 -0
  542. package/python/lib/python3.12/importlib/machinery.py +20 -0
  543. package/python/lib/python3.12/importlib/metadata/__init__.py +966 -0
  544. package/python/lib/python3.12/importlib/metadata/_adapters.py +89 -0
  545. package/python/lib/python3.12/importlib/metadata/_collections.py +30 -0
  546. package/python/lib/python3.12/importlib/metadata/_functools.py +104 -0
  547. package/python/lib/python3.12/importlib/metadata/_itertools.py +73 -0
  548. package/python/lib/python3.12/importlib/metadata/_meta.py +63 -0
  549. package/python/lib/python3.12/importlib/metadata/_text.py +99 -0
  550. package/python/lib/python3.12/importlib/readers.py +12 -0
  551. package/python/lib/python3.12/importlib/resources/__init__.py +38 -0
  552. package/python/lib/python3.12/importlib/resources/_adapters.py +168 -0
  553. package/python/lib/python3.12/importlib/resources/_common.py +208 -0
  554. package/python/lib/python3.12/importlib/resources/_itertools.py +38 -0
  555. package/python/lib/python3.12/importlib/resources/_legacy.py +98 -0
  556. package/python/lib/python3.12/importlib/resources/abc.py +173 -0
  557. package/python/lib/python3.12/importlib/resources/readers.py +146 -0
  558. package/python/lib/python3.12/importlib/resources/simple.py +106 -0
  559. package/python/lib/python3.12/importlib/simple.py +14 -0
  560. package/python/lib/python3.12/importlib/util.py +270 -0
  561. package/python/lib/python3.12/inspect.py +3433 -0
  562. package/python/lib/python3.12/io.py +99 -0
  563. package/python/lib/python3.12/ipaddress.py +2430 -0
  564. package/python/lib/python3.12/json/__init__.py +359 -0
  565. package/python/lib/python3.12/json/decoder.py +357 -0
  566. package/python/lib/python3.12/json/encoder.py +443 -0
  567. package/python/lib/python3.12/json/scanner.py +73 -0
  568. package/python/lib/python3.12/json/tool.py +85 -0
  569. package/python/lib/python3.12/keyword.py +64 -0
  570. package/python/lib/python3.12/lib-dynload/.empty +0 -0
  571. package/python/lib/python3.12/lib-dynload/_crypt.cpython-312-darwin.so +0 -0
  572. package/python/lib/python3.12/lib-dynload/_dbm.cpython-312-darwin.so +0 -0
  573. package/python/lib/python3.12/linecache.py +185 -0
  574. package/python/lib/python3.12/locale.py +1779 -0
  575. package/python/lib/python3.12/logging/__init__.py +2345 -0
  576. package/python/lib/python3.12/logging/config.py +1078 -0
  577. package/python/lib/python3.12/logging/handlers.py +1624 -0
  578. package/python/lib/python3.12/lzma.py +356 -0
  579. package/python/lib/python3.12/mailbox.py +2153 -0
  580. package/python/lib/python3.12/mailcap.py +302 -0
  581. package/python/lib/python3.12/mimetypes.py +656 -0
  582. package/python/lib/python3.12/modulefinder.py +666 -0
  583. package/python/lib/python3.12/multiprocessing/__init__.py +37 -0
  584. package/python/lib/python3.12/multiprocessing/connection.py +1178 -0
  585. package/python/lib/python3.12/multiprocessing/context.py +377 -0
  586. package/python/lib/python3.12/multiprocessing/dummy/__init__.py +126 -0
  587. package/python/lib/python3.12/multiprocessing/dummy/connection.py +75 -0
  588. package/python/lib/python3.12/multiprocessing/forkserver.py +350 -0
  589. package/python/lib/python3.12/multiprocessing/heap.py +337 -0
  590. package/python/lib/python3.12/multiprocessing/managers.py +1387 -0
  591. package/python/lib/python3.12/multiprocessing/pool.py +957 -0
  592. package/python/lib/python3.12/multiprocessing/popen_fork.py +83 -0
  593. package/python/lib/python3.12/multiprocessing/popen_forkserver.py +74 -0
  594. package/python/lib/python3.12/multiprocessing/popen_spawn_posix.py +72 -0
  595. package/python/lib/python3.12/multiprocessing/popen_spawn_win32.py +145 -0
  596. package/python/lib/python3.12/multiprocessing/process.py +439 -0
  597. package/python/lib/python3.12/multiprocessing/queues.py +401 -0
  598. package/python/lib/python3.12/multiprocessing/reduction.py +281 -0
  599. package/python/lib/python3.12/multiprocessing/resource_sharer.py +154 -0
  600. package/python/lib/python3.12/multiprocessing/resource_tracker.py +294 -0
  601. package/python/lib/python3.12/multiprocessing/shared_memory.py +534 -0
  602. package/python/lib/python3.12/multiprocessing/sharedctypes.py +240 -0
  603. package/python/lib/python3.12/multiprocessing/spawn.py +307 -0
  604. package/python/lib/python3.12/multiprocessing/synchronize.py +404 -0
  605. package/python/lib/python3.12/multiprocessing/util.py +494 -0
  606. package/python/lib/python3.12/netrc.py +192 -0
  607. package/python/lib/python3.12/nntplib.py +1093 -0
  608. package/python/lib/python3.12/ntpath.py +869 -0
  609. package/python/lib/python3.12/nturl2path.py +69 -0
  610. package/python/lib/python3.12/numbers.py +418 -0
  611. package/python/lib/python3.12/opcode.py +493 -0
  612. package/python/lib/python3.12/operator.py +467 -0
  613. package/python/lib/python3.12/optparse.py +1681 -0
  614. package/python/lib/python3.12/os.py +1159 -0
  615. package/python/lib/python3.12/pathlib.py +1435 -0
  616. package/python/lib/python3.12/pdb.py +1987 -0
  617. package/python/lib/python3.12/pickle.py +1866 -0
  618. package/python/lib/python3.12/pickletools.py +2904 -0
  619. package/python/lib/python3.12/pipes.py +250 -0
  620. package/python/lib/python3.12/pkgutil.py +529 -0
  621. package/python/lib/python3.12/platform.py +1359 -0
  622. package/python/lib/python3.12/plistlib.py +920 -0
  623. package/python/lib/python3.12/poplib.py +478 -0
  624. package/python/lib/python3.12/posixpath.py +577 -0
  625. package/python/lib/python3.12/pprint.py +658 -0
  626. package/python/lib/python3.12/profile.py +615 -0
  627. package/python/lib/python3.12/pstats.py +778 -0
  628. package/python/lib/python3.12/pty.py +211 -0
  629. package/python/lib/python3.12/py_compile.py +212 -0
  630. package/python/lib/python3.12/pyclbr.py +314 -0
  631. package/python/lib/python3.12/pydoc.py +2950 -0
  632. package/python/lib/python3.12/pydoc_data/__init__.py +0 -0
  633. package/python/lib/python3.12/pydoc_data/_pydoc.css +112 -0
  634. package/python/lib/python3.12/pydoc_data/topics.py +12500 -0
  635. package/python/lib/python3.12/queue.py +326 -0
  636. package/python/lib/python3.12/quopri.py +237 -0
  637. package/python/lib/python3.12/random.py +996 -0
  638. package/python/lib/python3.12/re/__init__.py +385 -0
  639. package/python/lib/python3.12/re/_casefix.py +106 -0
  640. package/python/lib/python3.12/re/_compiler.py +770 -0
  641. package/python/lib/python3.12/re/_constants.py +220 -0
  642. package/python/lib/python3.12/re/_parser.py +1080 -0
  643. package/python/lib/python3.12/reprlib.py +214 -0
  644. package/python/lib/python3.12/rlcompleter.py +219 -0
  645. package/python/lib/python3.12/runpy.py +319 -0
  646. package/python/lib/python3.12/sched.py +167 -0
  647. package/python/lib/python3.12/secrets.py +71 -0
  648. package/python/lib/python3.12/selectors.py +623 -0
  649. package/python/lib/python3.12/shelve.py +243 -0
  650. package/python/lib/python3.12/shlex.py +345 -0
  651. package/python/lib/python3.12/shutil.py +1566 -0
  652. package/python/lib/python3.12/signal.py +94 -0
  653. package/python/lib/python3.12/site-packages/README.txt +2 -0
  654. package/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
  655. package/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
  656. package/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
  657. package/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
  658. package/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
  659. package/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
  660. package/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
  661. package/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
  662. package/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +264 -0
  663. package/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1298 -0
  664. package/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
  665. package/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +212 -0
  666. package/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
  667. package/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
  668. package/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
  669. package/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
  670. package/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +472 -0
  671. package/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
  672. package/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
  673. package/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
  674. package/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
  675. package/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
  676. package/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
  677. package/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
  678. package/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +196 -0
  679. package/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
  680. package/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
  681. package/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
  682. package/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
  683. package/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
  684. package/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
  685. package/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +904 -0
  686. package/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +403 -0
  687. package/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
  688. package/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
  689. package/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
  690. package/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
  691. package/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
  692. package/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
  693. package/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
  694. package/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
  695. package/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
  696. package/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
  697. package/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
  698. package/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
  699. package/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
  700. package/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
  701. package/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1113 -0
  702. package/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
  703. package/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +438 -0
  704. package/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
  705. package/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
  706. package/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
  707. package/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
  708. package/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
  709. package/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
  710. package/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
  711. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  712. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  713. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +235 -0
  714. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
  715. package/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  716. package/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
  717. package/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +23 -0
  718. package/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +42 -0
  719. package/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
  720. package/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
  721. package/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
  722. package/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
  723. package/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +91 -0
  724. package/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +23 -0
  725. package/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +124 -0
  726. package/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +36 -0
  727. package/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
  728. package/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
  729. package/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
  730. package/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +570 -0
  731. package/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
  732. package/python/lib/python3.12/site-packages/pip/_internal/network/download.py +340 -0
  733. package/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
  734. package/python/lib/python3.12/site-packages/pip/_internal/network/session.py +537 -0
  735. package/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
  736. package/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  737. package/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  738. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  739. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  740. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  741. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  742. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  743. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  744. package/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
  745. package/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
  746. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  747. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +759 -0
  748. package/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +751 -0
  749. package/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
  750. package/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
  751. package/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +677 -0
  752. package/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
  753. package/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +86 -0
  754. package/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +622 -0
  755. package/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +838 -0
  756. package/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
  757. package/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
  758. package/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  759. package/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
  760. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  761. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  762. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  763. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +164 -0
  764. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +599 -0
  765. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +914 -0
  766. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  767. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +306 -0
  768. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  769. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
  770. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  771. package/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +246 -0
  772. package/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  773. package/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  774. package/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
  775. package/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
  776. package/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
  777. package/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  778. package/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
  779. package/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +139 -0
  780. package/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +92 -0
  781. package/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
  782. package/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  783. package/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +201 -0
  784. package/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
  785. package/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
  786. package/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
  787. package/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
  788. package/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
  789. package/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
  790. package/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +283 -0
  791. package/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
  792. package/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
  793. package/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
  794. package/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +381 -0
  795. package/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
  796. package/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
  797. package/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
  798. package/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
  799. package/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  800. package/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
  801. package/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  802. package/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
  803. package/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
  804. package/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
  805. package/python/lib/python3.12/site-packages/pip/_vendor/README.rst +178 -0
  806. package/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
  807. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  808. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
  809. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  810. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
  811. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  812. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  813. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  814. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  815. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  816. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
  817. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  818. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  819. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  820. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  821. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
  822. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  823. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  824. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4494 -0
  825. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
  826. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  827. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
  828. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  829. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  830. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
  831. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  832. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  833. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  834. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  835. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
  836. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  837. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  838. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  839. package/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
  840. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
  841. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
  842. package/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
  843. package/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  844. package/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
  845. package/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
  846. package/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
  847. package/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
  848. package/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
  849. package/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
  850. package/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
  851. package/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
  852. package/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  853. package/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
  854. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
  855. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  856. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  857. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  858. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  859. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
  860. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  861. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
  862. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  863. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
  864. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  865. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  866. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +393 -0
  867. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +33 -0
  868. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
  869. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/dependency_groups.py +302 -0
  870. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/direct_url.py +325 -0
  871. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/errors.py +94 -0
  872. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +186 -0
  873. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
  874. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +492 -0
  875. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +964 -0
  876. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  877. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +905 -0
  878. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +129 -0
  879. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1943 -0
  880. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +932 -0
  881. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +296 -0
  882. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +1231 -0
  883. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
  884. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  885. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
  886. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  887. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  888. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  889. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
  890. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
  891. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  892. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
  893. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
  894. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
  895. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
  896. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  897. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  898. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
  899. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
  900. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  901. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  902. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  903. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  904. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  905. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  906. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  907. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
  908. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  909. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  910. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  911. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  912. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  913. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
  914. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  915. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  916. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
  917. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  918. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
  919. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  920. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  921. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  922. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  923. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  924. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  925. package/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
  926. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +178 -0
  927. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
  928. package/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +51 -0
  929. package/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +697 -0
  930. package/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
  931. package/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
  932. package/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +18 -0
  933. package/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
  934. package/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
  935. package/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +152 -0
  936. package/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +124 -0
  937. package/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +34 -0
  938. package/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1041 -0
  939. package/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
  940. package/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +834 -0
  941. package/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  942. package/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
  943. package/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1083 -0
  944. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
  945. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  946. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  947. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  948. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  949. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  950. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  951. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  952. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  953. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  954. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  955. package/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
  956. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
  957. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
  958. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  959. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  960. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  961. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  962. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
  963. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  964. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  965. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  966. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
  967. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  968. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  969. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
  970. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  971. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  972. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
  973. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
  974. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  975. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
  976. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  977. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  978. package/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
  979. package/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
  980. package/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
  981. package/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
  982. package/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
  983. package/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
  984. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
  985. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  986. package/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
  987. package/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
  988. package/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
  989. package/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
  990. package/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
  991. package/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  992. package/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  993. package/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
  994. package/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
  995. package/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  996. package/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
  997. package/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  998. package/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
  999. package/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  1000. package/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
  1001. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
  1002. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
  1003. package/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
  1004. package/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
  1005. package/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
  1006. package/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
  1007. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
  1008. package/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
  1009. package/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
  1010. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  1011. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
  1012. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  1013. package/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
  1014. package/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
  1015. package/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  1016. package/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
  1017. package/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
  1018. package/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
  1019. package/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
  1020. package/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
  1021. package/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
  1022. package/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
  1023. package/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
  1024. package/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
  1025. package/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
  1026. package/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
  1027. package/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
  1028. package/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  1029. package/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
  1030. package/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
  1031. package/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
  1032. package/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
  1033. package/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
  1034. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
  1035. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  1036. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +788 -0
  1037. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
  1038. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
  1039. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
  1040. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
  1041. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  1042. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  1043. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  1044. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
  1045. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  1046. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
  1047. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  1048. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
  1049. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  1050. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  1051. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  1052. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1053. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +211 -0
  1054. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_base_connection.py +165 -0
  1055. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +487 -0
  1056. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_request_methods.py +278 -0
  1057. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +34 -0
  1058. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +1099 -0
  1059. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1178 -0
  1060. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1061. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/__init__.py +17 -0
  1062. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/connection.py +260 -0
  1063. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
  1064. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/fetch.py +726 -0
  1065. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/request.py +22 -0
  1066. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/response.py +277 -0
  1067. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +564 -0
  1068. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +228 -0
  1069. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +335 -0
  1070. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +341 -0
  1071. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +89 -0
  1072. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/__init__.py +53 -0
  1073. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/connection.py +356 -0
  1074. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/probe.py +87 -0
  1075. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +651 -0
  1076. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/py.typed +2 -0
  1077. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +1474 -0
  1078. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +42 -0
  1079. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +137 -0
  1080. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +43 -0
  1081. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +254 -0
  1082. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +101 -0
  1083. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +549 -0
  1084. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +527 -0
  1085. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  1086. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +271 -0
  1087. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +275 -0
  1088. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +469 -0
  1089. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/util.py +42 -0
  1090. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +124 -0
  1091. package/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +18 -0
  1092. package/python/lib/python3.12/site-packages/pip/py.typed +4 -0
  1093. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/INSTALLER +1 -0
  1094. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/METADATA +109 -0
  1095. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/RECORD +866 -0
  1096. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/REQUESTED +0 -0
  1097. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/WHEEL +4 -0
  1098. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/direct_url.json +1 -0
  1099. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/entry_points.txt +4 -0
  1100. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/AUTHORS.txt +868 -0
  1101. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/LICENSE.txt +20 -0
  1102. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  1103. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  1104. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
  1105. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  1106. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
  1107. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  1108. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  1109. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1110. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1111. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
  1112. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  1113. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  1114. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1115. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  1116. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  1117. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  1118. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  1119. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
  1120. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  1121. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1122. package/python/lib/python3.12/site.py +693 -0
  1123. package/python/lib/python3.12/smtplib.py +1109 -0
  1124. package/python/lib/python3.12/sndhdr.py +271 -0
  1125. package/python/lib/python3.12/socket.py +983 -0
  1126. package/python/lib/python3.12/socketserver.py +863 -0
  1127. package/python/lib/python3.12/sqlite3/__init__.py +70 -0
  1128. package/python/lib/python3.12/sqlite3/__main__.py +127 -0
  1129. package/python/lib/python3.12/sqlite3/dbapi2.py +108 -0
  1130. package/python/lib/python3.12/sqlite3/dump.py +89 -0
  1131. package/python/lib/python3.12/sre_compile.py +7 -0
  1132. package/python/lib/python3.12/sre_constants.py +7 -0
  1133. package/python/lib/python3.12/sre_parse.py +7 -0
  1134. package/python/lib/python3.12/ssl.py +1488 -0
  1135. package/python/lib/python3.12/stat.py +195 -0
  1136. package/python/lib/python3.12/statistics.py +1454 -0
  1137. package/python/lib/python3.12/string.py +309 -0
  1138. package/python/lib/python3.12/stringprep.py +272 -0
  1139. package/python/lib/python3.12/struct.py +15 -0
  1140. package/python/lib/python3.12/subprocess.py +2216 -0
  1141. package/python/lib/python3.12/sunau.py +533 -0
  1142. package/python/lib/python3.12/symtable.py +362 -0
  1143. package/python/lib/python3.12/sysconfig.py +894 -0
  1144. package/python/lib/python3.12/tabnanny.py +340 -0
  1145. package/python/lib/python3.12/tarfile.py +3031 -0
  1146. package/python/lib/python3.12/telnetlib.py +680 -0
  1147. package/python/lib/python3.12/tempfile.py +956 -0
  1148. package/python/lib/python3.12/textwrap.py +491 -0
  1149. package/python/lib/python3.12/this.py +28 -0
  1150. package/python/lib/python3.12/threading.py +1708 -0
  1151. package/python/lib/python3.12/timeit.py +381 -0
  1152. package/python/lib/python3.12/token.py +143 -0
  1153. package/python/lib/python3.12/tokenize.py +594 -0
  1154. package/python/lib/python3.12/tomllib/__init__.py +10 -0
  1155. package/python/lib/python3.12/tomllib/_parser.py +691 -0
  1156. package/python/lib/python3.12/tomllib/_re.py +107 -0
  1157. package/python/lib/python3.12/tomllib/_types.py +10 -0
  1158. package/python/lib/python3.12/trace.py +748 -0
  1159. package/python/lib/python3.12/traceback.py +1187 -0
  1160. package/python/lib/python3.12/tracemalloc.py +560 -0
  1161. package/python/lib/python3.12/tty.py +73 -0
  1162. package/python/lib/python3.12/turtle.py +4207 -0
  1163. package/python/lib/python3.12/types.py +333 -0
  1164. package/python/lib/python3.12/typing.py +3494 -0
  1165. package/python/lib/python3.12/unittest/__init__.py +85 -0
  1166. package/python/lib/python3.12/unittest/__main__.py +18 -0
  1167. package/python/lib/python3.12/unittest/_log.py +86 -0
  1168. package/python/lib/python3.12/unittest/async_case.py +143 -0
  1169. package/python/lib/python3.12/unittest/case.py +1456 -0
  1170. package/python/lib/python3.12/unittest/loader.py +497 -0
  1171. package/python/lib/python3.12/unittest/main.py +291 -0
  1172. package/python/lib/python3.12/unittest/mock.py +3054 -0
  1173. package/python/lib/python3.12/unittest/result.py +256 -0
  1174. package/python/lib/python3.12/unittest/runner.py +292 -0
  1175. package/python/lib/python3.12/unittest/signals.py +71 -0
  1176. package/python/lib/python3.12/unittest/suite.py +379 -0
  1177. package/python/lib/python3.12/unittest/util.py +170 -0
  1178. package/python/lib/python3.12/urllib/__init__.py +0 -0
  1179. package/python/lib/python3.12/urllib/error.py +74 -0
  1180. package/python/lib/python3.12/urllib/parse.py +1262 -0
  1181. package/python/lib/python3.12/urllib/request.py +2816 -0
  1182. package/python/lib/python3.12/urllib/response.py +84 -0
  1183. package/python/lib/python3.12/urllib/robotparser.py +275 -0
  1184. package/python/lib/python3.12/uu.py +216 -0
  1185. package/python/lib/python3.12/uuid.py +793 -0
  1186. package/python/lib/python3.12/venv/__init__.py +608 -0
  1187. package/python/lib/python3.12/venv/__main__.py +10 -0
  1188. package/python/lib/python3.12/venv/scripts/common/Activate.ps1 +247 -0
  1189. package/python/lib/python3.12/venv/scripts/common/activate +76 -0
  1190. package/python/lib/python3.12/venv/scripts/posix/activate.csh +27 -0
  1191. package/python/lib/python3.12/venv/scripts/posix/activate.fish +69 -0
  1192. package/python/lib/python3.12/warnings.py +598 -0
  1193. package/python/lib/python3.12/wave.py +653 -0
  1194. package/python/lib/python3.12/weakref.py +674 -0
  1195. package/python/lib/python3.12/webbrowser.py +689 -0
  1196. package/python/lib/python3.12/wsgiref/__init__.py +25 -0
  1197. package/python/lib/python3.12/wsgiref/handlers.py +573 -0
  1198. package/python/lib/python3.12/wsgiref/headers.py +192 -0
  1199. package/python/lib/python3.12/wsgiref/simple_server.py +165 -0
  1200. package/python/lib/python3.12/wsgiref/types.py +54 -0
  1201. package/python/lib/python3.12/wsgiref/util.py +159 -0
  1202. package/python/lib/python3.12/wsgiref/validate.py +438 -0
  1203. package/python/lib/python3.12/xdrlib.py +242 -0
  1204. package/python/lib/python3.12/xml/__init__.py +20 -0
  1205. package/python/lib/python3.12/xml/dom/NodeFilter.py +27 -0
  1206. package/python/lib/python3.12/xml/dom/__init__.py +140 -0
  1207. package/python/lib/python3.12/xml/dom/domreg.py +99 -0
  1208. package/python/lib/python3.12/xml/dom/expatbuilder.py +962 -0
  1209. package/python/lib/python3.12/xml/dom/minicompat.py +109 -0
  1210. package/python/lib/python3.12/xml/dom/minidom.py +2008 -0
  1211. package/python/lib/python3.12/xml/dom/pulldom.py +336 -0
  1212. package/python/lib/python3.12/xml/dom/xmlbuilder.py +389 -0
  1213. package/python/lib/python3.12/xml/etree/ElementInclude.py +186 -0
  1214. package/python/lib/python3.12/xml/etree/ElementPath.py +423 -0
  1215. package/python/lib/python3.12/xml/etree/ElementTree.py +2085 -0
  1216. package/python/lib/python3.12/xml/etree/__init__.py +33 -0
  1217. package/python/lib/python3.12/xml/etree/cElementTree.py +3 -0
  1218. package/python/lib/python3.12/xml/parsers/__init__.py +8 -0
  1219. package/python/lib/python3.12/xml/parsers/expat.py +8 -0
  1220. package/python/lib/python3.12/xml/sax/__init__.py +94 -0
  1221. package/python/lib/python3.12/xml/sax/_exceptions.py +127 -0
  1222. package/python/lib/python3.12/xml/sax/expatreader.py +454 -0
  1223. package/python/lib/python3.12/xml/sax/handler.py +387 -0
  1224. package/python/lib/python3.12/xml/sax/saxutils.py +369 -0
  1225. package/python/lib/python3.12/xml/sax/xmlreader.py +378 -0
  1226. package/python/lib/python3.12/xmlrpc/__init__.py +1 -0
  1227. package/python/lib/python3.12/xmlrpc/client.py +1529 -0
  1228. package/python/lib/python3.12/xmlrpc/server.py +1002 -0
  1229. package/python/lib/python3.12/zipapp.py +206 -0
  1230. package/python/lib/python3.12/zipfile/__init__.py +2340 -0
  1231. package/python/lib/python3.12/zipfile/__main__.py +4 -0
  1232. package/python/lib/python3.12/zipfile/_path/__init__.py +412 -0
  1233. package/python/lib/python3.12/zipfile/_path/glob.py +53 -0
  1234. package/python/lib/python3.12/zipimport.py +712 -0
  1235. package/python/lib/python3.12/zoneinfo/__init__.py +31 -0
  1236. package/python/lib/python3.12/zoneinfo/_common.py +164 -0
  1237. package/python/lib/python3.12/zoneinfo/_tzpath.py +181 -0
  1238. package/python/lib/python3.12/zoneinfo/_zoneinfo.py +772 -0
@@ -0,0 +1,2650 @@
1
+ # Author: Steven J. Bethard <steven.bethard@gmail.com>.
2
+ # New maintainer as of 29 August 2019: Raymond Hettinger <raymond.hettinger@gmail.com>
3
+
4
+ """Command-line parsing library
5
+
6
+ This module is an optparse-inspired command-line parsing library that:
7
+
8
+ - handles both optional and positional arguments
9
+ - produces highly informative usage messages
10
+ - supports parsers that dispatch to sub-parsers
11
+
12
+ The following is a simple usage example that sums integers from the
13
+ command-line and writes the result to a file::
14
+
15
+ parser = argparse.ArgumentParser(
16
+ description='sum the integers at the command line')
17
+ parser.add_argument(
18
+ 'integers', metavar='int', nargs='+', type=int,
19
+ help='an integer to be summed')
20
+ parser.add_argument(
21
+ '--log', default=sys.stdout, type=argparse.FileType('w'),
22
+ help='the file where the sum should be written')
23
+ args = parser.parse_args()
24
+ args.log.write('%s' % sum(args.integers))
25
+ args.log.close()
26
+
27
+ The module contains the following public classes:
28
+
29
+ - ArgumentParser -- The main entry point for command-line parsing. As the
30
+ example above shows, the add_argument() method is used to populate
31
+ the parser with actions for optional and positional arguments. Then
32
+ the parse_args() method is invoked to convert the args at the
33
+ command-line into an object with attributes.
34
+
35
+ - ArgumentError -- The exception raised by ArgumentParser objects when
36
+ there are errors with the parser's actions. Errors raised while
37
+ parsing the command-line are caught by ArgumentParser and emitted
38
+ as command-line messages.
39
+
40
+ - FileType -- A factory for defining types of files to be created. As the
41
+ example above shows, instances of FileType are typically passed as
42
+ the type= argument of add_argument() calls.
43
+
44
+ - Action -- The base class for parser actions. Typically actions are
45
+ selected by passing strings like 'store_true' or 'append_const' to
46
+ the action= argument of add_argument(). However, for greater
47
+ customization of ArgumentParser actions, subclasses of Action may
48
+ be defined and passed as the action= argument.
49
+
50
+ - HelpFormatter, RawDescriptionHelpFormatter, RawTextHelpFormatter,
51
+ ArgumentDefaultsHelpFormatter -- Formatter classes which
52
+ may be passed as the formatter_class= argument to the
53
+ ArgumentParser constructor. HelpFormatter is the default,
54
+ RawDescriptionHelpFormatter and RawTextHelpFormatter tell the parser
55
+ not to change the formatting for help text, and
56
+ ArgumentDefaultsHelpFormatter adds information about argument defaults
57
+ to the help.
58
+
59
+ All other classes in this module are considered implementation details.
60
+ (Also note that HelpFormatter and RawDescriptionHelpFormatter are only
61
+ considered public as object names -- the API of the formatter objects is
62
+ still considered an implementation detail.)
63
+ """
64
+
65
+ __version__ = '1.1'
66
+ __all__ = [
67
+ 'ArgumentParser',
68
+ 'ArgumentError',
69
+ 'ArgumentTypeError',
70
+ 'BooleanOptionalAction',
71
+ 'FileType',
72
+ 'HelpFormatter',
73
+ 'ArgumentDefaultsHelpFormatter',
74
+ 'RawDescriptionHelpFormatter',
75
+ 'RawTextHelpFormatter',
76
+ 'MetavarTypeHelpFormatter',
77
+ 'Namespace',
78
+ 'Action',
79
+ 'ONE_OR_MORE',
80
+ 'OPTIONAL',
81
+ 'PARSER',
82
+ 'REMAINDER',
83
+ 'SUPPRESS',
84
+ 'ZERO_OR_MORE',
85
+ ]
86
+
87
+
88
+ import os as _os
89
+ import re as _re
90
+ import sys as _sys
91
+
92
+ import warnings
93
+
94
+ from gettext import gettext as _, ngettext
95
+
96
+ SUPPRESS = '==SUPPRESS=='
97
+
98
+ OPTIONAL = '?'
99
+ ZERO_OR_MORE = '*'
100
+ ONE_OR_MORE = '+'
101
+ PARSER = 'A...'
102
+ REMAINDER = '...'
103
+ _UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args'
104
+
105
+ # =============================
106
+ # Utility functions and classes
107
+ # =============================
108
+
109
+ class _AttributeHolder(object):
110
+ """Abstract base class that provides __repr__.
111
+
112
+ The __repr__ method returns a string in the format::
113
+ ClassName(attr=name, attr=name, ...)
114
+ The attributes are determined either by a class-level attribute,
115
+ '_kwarg_names', or by inspecting the instance __dict__.
116
+ """
117
+
118
+ def __repr__(self):
119
+ type_name = type(self).__name__
120
+ arg_strings = []
121
+ star_args = {}
122
+ for arg in self._get_args():
123
+ arg_strings.append(repr(arg))
124
+ for name, value in self._get_kwargs():
125
+ if name.isidentifier():
126
+ arg_strings.append('%s=%r' % (name, value))
127
+ else:
128
+ star_args[name] = value
129
+ if star_args:
130
+ arg_strings.append('**%s' % repr(star_args))
131
+ return '%s(%s)' % (type_name, ', '.join(arg_strings))
132
+
133
+ def _get_kwargs(self):
134
+ return list(self.__dict__.items())
135
+
136
+ def _get_args(self):
137
+ return []
138
+
139
+
140
+ def _copy_items(items):
141
+ if items is None:
142
+ return []
143
+ # The copy module is used only in the 'append' and 'append_const'
144
+ # actions, and it is needed only when the default value isn't a list.
145
+ # Delay its import for speeding up the common case.
146
+ if type(items) is list:
147
+ return items[:]
148
+ import copy
149
+ return copy.copy(items)
150
+
151
+
152
+ # ===============
153
+ # Formatting Help
154
+ # ===============
155
+
156
+
157
+ class HelpFormatter(object):
158
+ """Formatter for generating usage messages and argument help strings.
159
+
160
+ Only the name of this class is considered a public API. All the methods
161
+ provided by the class are considered an implementation detail.
162
+ """
163
+
164
+ def __init__(self,
165
+ prog,
166
+ indent_increment=2,
167
+ max_help_position=24,
168
+ width=None):
169
+
170
+ # default setting for width
171
+ if width is None:
172
+ import shutil
173
+ width = shutil.get_terminal_size().columns
174
+ width -= 2
175
+
176
+ self._prog = prog
177
+ self._indent_increment = indent_increment
178
+ self._max_help_position = min(max_help_position,
179
+ max(width - 20, indent_increment * 2))
180
+ self._width = width
181
+
182
+ self._current_indent = 0
183
+ self._level = 0
184
+ self._action_max_length = 0
185
+
186
+ self._root_section = self._Section(self, None)
187
+ self._current_section = self._root_section
188
+
189
+ self._whitespace_matcher = _re.compile(r'\s+', _re.ASCII)
190
+ self._long_break_matcher = _re.compile(r'\n\n\n+')
191
+
192
+ # ===============================
193
+ # Section and indentation methods
194
+ # ===============================
195
+ def _indent(self):
196
+ self._current_indent += self._indent_increment
197
+ self._level += 1
198
+
199
+ def _dedent(self):
200
+ self._current_indent -= self._indent_increment
201
+ assert self._current_indent >= 0, 'Indent decreased below 0.'
202
+ self._level -= 1
203
+
204
+ class _Section(object):
205
+
206
+ def __init__(self, formatter, parent, heading=None):
207
+ self.formatter = formatter
208
+ self.parent = parent
209
+ self.heading = heading
210
+ self.items = []
211
+
212
+ def format_help(self):
213
+ # format the indented section
214
+ if self.parent is not None:
215
+ self.formatter._indent()
216
+ join = self.formatter._join_parts
217
+ item_help = join([func(*args) for func, args in self.items])
218
+ if self.parent is not None:
219
+ self.formatter._dedent()
220
+
221
+ # return nothing if the section was empty
222
+ if not item_help:
223
+ return ''
224
+
225
+ # add the heading if the section was non-empty
226
+ if self.heading is not SUPPRESS and self.heading is not None:
227
+ current_indent = self.formatter._current_indent
228
+ heading_text = _('%(heading)s:') % dict(heading=self.heading)
229
+ heading = '%*s%s\n' % (current_indent, '', heading_text)
230
+ else:
231
+ heading = ''
232
+
233
+ # join the section-initial newline, the heading and the help
234
+ return join(['\n', heading, item_help, '\n'])
235
+
236
+ def _add_item(self, func, args):
237
+ self._current_section.items.append((func, args))
238
+
239
+ # ========================
240
+ # Message building methods
241
+ # ========================
242
+ def start_section(self, heading):
243
+ self._indent()
244
+ section = self._Section(self, self._current_section, heading)
245
+ self._add_item(section.format_help, [])
246
+ self._current_section = section
247
+
248
+ def end_section(self):
249
+ self._current_section = self._current_section.parent
250
+ self._dedent()
251
+
252
+ def add_text(self, text):
253
+ if text is not SUPPRESS and text is not None:
254
+ self._add_item(self._format_text, [text])
255
+
256
+ def add_usage(self, usage, actions, groups, prefix=None):
257
+ if usage is not SUPPRESS:
258
+ args = usage, actions, groups, prefix
259
+ self._add_item(self._format_usage, args)
260
+
261
+ def add_argument(self, action):
262
+ if action.help is not SUPPRESS:
263
+
264
+ # find all invocations
265
+ get_invocation = self._format_action_invocation
266
+ invocation_lengths = [len(get_invocation(action)) + self._current_indent]
267
+ for subaction in self._iter_indented_subactions(action):
268
+ invocation_lengths.append(len(get_invocation(subaction)) + self._current_indent)
269
+
270
+ # update the maximum item length
271
+ action_length = max(invocation_lengths)
272
+ self._action_max_length = max(self._action_max_length,
273
+ action_length)
274
+
275
+ # add the item to the list
276
+ self._add_item(self._format_action, [action])
277
+
278
+ def add_arguments(self, actions):
279
+ for action in actions:
280
+ self.add_argument(action)
281
+
282
+ # =======================
283
+ # Help-formatting methods
284
+ # =======================
285
+ def format_help(self):
286
+ help = self._root_section.format_help()
287
+ if help:
288
+ help = self._long_break_matcher.sub('\n\n', help)
289
+ help = help.strip('\n') + '\n'
290
+ return help
291
+
292
+ def _join_parts(self, part_strings):
293
+ return ''.join([part
294
+ for part in part_strings
295
+ if part and part is not SUPPRESS])
296
+
297
+ def _format_usage(self, usage, actions, groups, prefix):
298
+ if prefix is None:
299
+ prefix = _('usage: ')
300
+
301
+ # if usage is specified, use that
302
+ if usage is not None:
303
+ usage = usage % dict(prog=self._prog)
304
+
305
+ # if no optionals or positionals are available, usage is just prog
306
+ elif usage is None and not actions:
307
+ usage = '%(prog)s' % dict(prog=self._prog)
308
+
309
+ # if optionals and positionals are available, calculate usage
310
+ elif usage is None:
311
+ prog = '%(prog)s' % dict(prog=self._prog)
312
+
313
+ # split optionals from positionals
314
+ optionals = []
315
+ positionals = []
316
+ for action in actions:
317
+ if action.option_strings:
318
+ optionals.append(action)
319
+ else:
320
+ positionals.append(action)
321
+
322
+ # build full usage string
323
+ format = self._format_actions_usage
324
+ action_usage = format(optionals + positionals, groups)
325
+ usage = ' '.join([s for s in [prog, action_usage] if s])
326
+
327
+ # wrap the usage parts if it's too long
328
+ text_width = self._width - self._current_indent
329
+ if len(prefix) + len(usage) > text_width:
330
+
331
+ # break usage into wrappable parts
332
+ part_regexp = (
333
+ r'\(.*?\)+(?=\s|$)|'
334
+ r'\[.*?\]+(?=\s|$)|'
335
+ r'\S+'
336
+ )
337
+ opt_usage = format(optionals, groups)
338
+ pos_usage = format(positionals, groups)
339
+ opt_parts = _re.findall(part_regexp, opt_usage)
340
+ pos_parts = _re.findall(part_regexp, pos_usage)
341
+ assert ' '.join(opt_parts) == opt_usage
342
+ assert ' '.join(pos_parts) == pos_usage
343
+
344
+ # helper for wrapping lines
345
+ def get_lines(parts, indent, prefix=None):
346
+ lines = []
347
+ line = []
348
+ indent_length = len(indent)
349
+ if prefix is not None:
350
+ line_len = len(prefix) - 1
351
+ else:
352
+ line_len = indent_length - 1
353
+ for part in parts:
354
+ if line_len + 1 + len(part) > text_width and line:
355
+ lines.append(indent + ' '.join(line))
356
+ line = []
357
+ line_len = indent_length - 1
358
+ line.append(part)
359
+ line_len += len(part) + 1
360
+ if line:
361
+ lines.append(indent + ' '.join(line))
362
+ if prefix is not None:
363
+ lines[0] = lines[0][indent_length:]
364
+ return lines
365
+
366
+ # if prog is short, follow it with optionals or positionals
367
+ if len(prefix) + len(prog) <= 0.75 * text_width:
368
+ indent = ' ' * (len(prefix) + len(prog) + 1)
369
+ if opt_parts:
370
+ lines = get_lines([prog] + opt_parts, indent, prefix)
371
+ lines.extend(get_lines(pos_parts, indent))
372
+ elif pos_parts:
373
+ lines = get_lines([prog] + pos_parts, indent, prefix)
374
+ else:
375
+ lines = [prog]
376
+
377
+ # if prog is long, put it on its own line
378
+ else:
379
+ indent = ' ' * len(prefix)
380
+ parts = opt_parts + pos_parts
381
+ lines = get_lines(parts, indent)
382
+ if len(lines) > 1:
383
+ lines = []
384
+ lines.extend(get_lines(opt_parts, indent))
385
+ lines.extend(get_lines(pos_parts, indent))
386
+ lines = [prog] + lines
387
+
388
+ # join lines into usage
389
+ usage = '\n'.join(lines)
390
+
391
+ # prefix with 'usage:'
392
+ return '%s%s\n\n' % (prefix, usage)
393
+
394
+ def _format_actions_usage(self, actions, groups):
395
+ # find group indices and identify actions in groups
396
+ group_actions = set()
397
+ inserts = {}
398
+ for group in groups:
399
+ if not group._group_actions:
400
+ raise ValueError(f'empty group {group}')
401
+
402
+ try:
403
+ start = actions.index(group._group_actions[0])
404
+ except ValueError:
405
+ continue
406
+ else:
407
+ group_action_count = len(group._group_actions)
408
+ end = start + group_action_count
409
+ if actions[start:end] == group._group_actions:
410
+
411
+ suppressed_actions_count = 0
412
+ for action in group._group_actions:
413
+ group_actions.add(action)
414
+ if action.help is SUPPRESS:
415
+ suppressed_actions_count += 1
416
+
417
+ exposed_actions_count = group_action_count - suppressed_actions_count
418
+ if not exposed_actions_count:
419
+ continue
420
+
421
+ if not group.required:
422
+ if start in inserts:
423
+ inserts[start] += ' ['
424
+ else:
425
+ inserts[start] = '['
426
+ if end in inserts:
427
+ inserts[end] += ']'
428
+ else:
429
+ inserts[end] = ']'
430
+ elif exposed_actions_count > 1:
431
+ if start in inserts:
432
+ inserts[start] += ' ('
433
+ else:
434
+ inserts[start] = '('
435
+ if end in inserts:
436
+ inserts[end] += ')'
437
+ else:
438
+ inserts[end] = ')'
439
+ for i in range(start + 1, end):
440
+ inserts[i] = '|'
441
+
442
+ # collect all actions format strings
443
+ parts = []
444
+ for i, action in enumerate(actions):
445
+
446
+ # suppressed arguments are marked with None
447
+ # remove | separators for suppressed arguments
448
+ if action.help is SUPPRESS:
449
+ parts.append(None)
450
+ if inserts.get(i) == '|':
451
+ inserts.pop(i)
452
+ elif inserts.get(i + 1) == '|':
453
+ inserts.pop(i + 1)
454
+
455
+ # produce all arg strings
456
+ elif not action.option_strings:
457
+ default = self._get_default_metavar_for_positional(action)
458
+ part = self._format_args(action, default)
459
+
460
+ # if it's in a group, strip the outer []
461
+ if action in group_actions:
462
+ if part[0] == '[' and part[-1] == ']':
463
+ part = part[1:-1]
464
+
465
+ # add the action string to the list
466
+ parts.append(part)
467
+
468
+ # produce the first way to invoke the option in brackets
469
+ else:
470
+ option_string = action.option_strings[0]
471
+
472
+ # if the Optional doesn't take a value, format is:
473
+ # -s or --long
474
+ if action.nargs == 0:
475
+ part = action.format_usage()
476
+
477
+ # if the Optional takes a value, format is:
478
+ # -s ARGS or --long ARGS
479
+ else:
480
+ default = self._get_default_metavar_for_optional(action)
481
+ args_string = self._format_args(action, default)
482
+ part = '%s %s' % (option_string, args_string)
483
+
484
+ # make it look optional if it's not required or in a group
485
+ if not action.required and action not in group_actions:
486
+ part = '[%s]' % part
487
+
488
+ # add the action string to the list
489
+ parts.append(part)
490
+
491
+ # insert things at the necessary indices
492
+ for i in sorted(inserts, reverse=True):
493
+ parts[i:i] = [inserts[i]]
494
+
495
+ # join all the action items with spaces
496
+ text = ' '.join([item for item in parts if item is not None])
497
+
498
+ # clean up separators for mutually exclusive groups
499
+ open = r'[\[(]'
500
+ close = r'[\])]'
501
+ text = _re.sub(r'(%s) ' % open, r'\1', text)
502
+ text = _re.sub(r' (%s)' % close, r'\1', text)
503
+ text = _re.sub(r'%s *%s' % (open, close), r'', text)
504
+ text = text.strip()
505
+
506
+ # return the text
507
+ return text
508
+
509
+ def _format_text(self, text):
510
+ if '%(prog)' in text:
511
+ text = text % dict(prog=self._prog)
512
+ text_width = max(self._width - self._current_indent, 11)
513
+ indent = ' ' * self._current_indent
514
+ return self._fill_text(text, text_width, indent) + '\n\n'
515
+
516
+ def _format_action(self, action):
517
+ # determine the required width and the entry label
518
+ help_position = min(self._action_max_length + 2,
519
+ self._max_help_position)
520
+ help_width = max(self._width - help_position, 11)
521
+ action_width = help_position - self._current_indent - 2
522
+ action_header = self._format_action_invocation(action)
523
+
524
+ # no help; start on same line and add a final newline
525
+ if not action.help:
526
+ tup = self._current_indent, '', action_header
527
+ action_header = '%*s%s\n' % tup
528
+
529
+ # short action name; start on the same line and pad two spaces
530
+ elif len(action_header) <= action_width:
531
+ tup = self._current_indent, '', action_width, action_header
532
+ action_header = '%*s%-*s ' % tup
533
+ indent_first = 0
534
+
535
+ # long action name; start on the next line
536
+ else:
537
+ tup = self._current_indent, '', action_header
538
+ action_header = '%*s%s\n' % tup
539
+ indent_first = help_position
540
+
541
+ # collect the pieces of the action help
542
+ parts = [action_header]
543
+
544
+ # if there was help for the action, add lines of help text
545
+ if action.help and action.help.strip():
546
+ help_text = self._expand_help(action)
547
+ if help_text:
548
+ help_lines = self._split_lines(help_text, help_width)
549
+ parts.append('%*s%s\n' % (indent_first, '', help_lines[0]))
550
+ for line in help_lines[1:]:
551
+ parts.append('%*s%s\n' % (help_position, '', line))
552
+
553
+ # or add a newline if the description doesn't end with one
554
+ elif not action_header.endswith('\n'):
555
+ parts.append('\n')
556
+
557
+ # if there are any sub-actions, add their help as well
558
+ for subaction in self._iter_indented_subactions(action):
559
+ parts.append(self._format_action(subaction))
560
+
561
+ # return a single string
562
+ return self._join_parts(parts)
563
+
564
+ def _format_action_invocation(self, action):
565
+ if not action.option_strings:
566
+ default = self._get_default_metavar_for_positional(action)
567
+ return ' '.join(self._metavar_formatter(action, default)(1))
568
+
569
+ else:
570
+ parts = []
571
+
572
+ # if the Optional doesn't take a value, format is:
573
+ # -s, --long
574
+ if action.nargs == 0:
575
+ parts.extend(action.option_strings)
576
+
577
+ # if the Optional takes a value, format is:
578
+ # -s ARGS, --long ARGS
579
+ else:
580
+ default = self._get_default_metavar_for_optional(action)
581
+ args_string = self._format_args(action, default)
582
+ for option_string in action.option_strings:
583
+ parts.append('%s %s' % (option_string, args_string))
584
+
585
+ return ', '.join(parts)
586
+
587
+ def _metavar_formatter(self, action, default_metavar):
588
+ if action.metavar is not None:
589
+ result = action.metavar
590
+ elif action.choices is not None:
591
+ result = '{%s}' % ','.join(map(str, action.choices))
592
+ else:
593
+ result = default_metavar
594
+
595
+ def format(tuple_size):
596
+ if isinstance(result, tuple):
597
+ return result
598
+ else:
599
+ return (result, ) * tuple_size
600
+ return format
601
+
602
+ def _format_args(self, action, default_metavar):
603
+ get_metavar = self._metavar_formatter(action, default_metavar)
604
+ if action.nargs is None:
605
+ result = '%s' % get_metavar(1)
606
+ elif action.nargs == OPTIONAL:
607
+ result = '[%s]' % get_metavar(1)
608
+ elif action.nargs == ZERO_OR_MORE:
609
+ metavar = get_metavar(1)
610
+ if len(metavar) == 2:
611
+ result = '[%s [%s ...]]' % metavar
612
+ else:
613
+ result = '[%s ...]' % metavar
614
+ elif action.nargs == ONE_OR_MORE:
615
+ result = '%s [%s ...]' % get_metavar(2)
616
+ elif action.nargs == REMAINDER:
617
+ result = '...'
618
+ elif action.nargs == PARSER:
619
+ result = '%s ...' % get_metavar(1)
620
+ elif action.nargs == SUPPRESS:
621
+ result = ''
622
+ else:
623
+ try:
624
+ formats = ['%s' for _ in range(action.nargs)]
625
+ except TypeError:
626
+ raise ValueError("invalid nargs value") from None
627
+ result = ' '.join(formats) % get_metavar(action.nargs)
628
+ return result
629
+
630
+ def _expand_help(self, action):
631
+ params = dict(vars(action), prog=self._prog)
632
+ for name in list(params):
633
+ if params[name] is SUPPRESS:
634
+ del params[name]
635
+ for name in list(params):
636
+ if hasattr(params[name], '__name__'):
637
+ params[name] = params[name].__name__
638
+ if params.get('choices') is not None:
639
+ params['choices'] = ', '.join(map(str, params['choices']))
640
+ return self._get_help_string(action) % params
641
+
642
+ def _iter_indented_subactions(self, action):
643
+ try:
644
+ get_subactions = action._get_subactions
645
+ except AttributeError:
646
+ pass
647
+ else:
648
+ self._indent()
649
+ yield from get_subactions()
650
+ self._dedent()
651
+
652
+ def _split_lines(self, text, width):
653
+ text = self._whitespace_matcher.sub(' ', text).strip()
654
+ # The textwrap module is used only for formatting help.
655
+ # Delay its import for speeding up the common usage of argparse.
656
+ import textwrap
657
+ return textwrap.wrap(text, width)
658
+
659
+ def _fill_text(self, text, width, indent):
660
+ text = self._whitespace_matcher.sub(' ', text).strip()
661
+ import textwrap
662
+ return textwrap.fill(text, width,
663
+ initial_indent=indent,
664
+ subsequent_indent=indent)
665
+
666
+ def _get_help_string(self, action):
667
+ return action.help
668
+
669
+ def _get_default_metavar_for_optional(self, action):
670
+ return action.dest.upper()
671
+
672
+ def _get_default_metavar_for_positional(self, action):
673
+ return action.dest
674
+
675
+
676
+ class RawDescriptionHelpFormatter(HelpFormatter):
677
+ """Help message formatter which retains any formatting in descriptions.
678
+
679
+ Only the name of this class is considered a public API. All the methods
680
+ provided by the class are considered an implementation detail.
681
+ """
682
+
683
+ def _fill_text(self, text, width, indent):
684
+ return ''.join(indent + line for line in text.splitlines(keepends=True))
685
+
686
+
687
+ class RawTextHelpFormatter(RawDescriptionHelpFormatter):
688
+ """Help message formatter which retains formatting of all help text.
689
+
690
+ Only the name of this class is considered a public API. All the methods
691
+ provided by the class are considered an implementation detail.
692
+ """
693
+
694
+ def _split_lines(self, text, width):
695
+ return text.splitlines()
696
+
697
+
698
+ class ArgumentDefaultsHelpFormatter(HelpFormatter):
699
+ """Help message formatter which adds default values to argument help.
700
+
701
+ Only the name of this class is considered a public API. All the methods
702
+ provided by the class are considered an implementation detail.
703
+ """
704
+
705
+ def _get_help_string(self, action):
706
+ """
707
+ Add the default value to the option help message.
708
+
709
+ ArgumentDefaultsHelpFormatter and BooleanOptionalAction when it isn't
710
+ already present. This code will do that, detecting cornercases to
711
+ prevent duplicates or cases where it wouldn't make sense to the end
712
+ user.
713
+ """
714
+ help = action.help
715
+ if help is None:
716
+ help = ''
717
+
718
+ if '%(default)' not in help:
719
+ if action.default is not SUPPRESS:
720
+ defaulting_nargs = [OPTIONAL, ZERO_OR_MORE]
721
+ if action.option_strings or action.nargs in defaulting_nargs:
722
+ help += _(' (default: %(default)s)')
723
+ return help
724
+
725
+
726
+
727
+ class MetavarTypeHelpFormatter(HelpFormatter):
728
+ """Help message formatter which uses the argument 'type' as the default
729
+ metavar value (instead of the argument 'dest')
730
+
731
+ Only the name of this class is considered a public API. All the methods
732
+ provided by the class are considered an implementation detail.
733
+ """
734
+
735
+ def _get_default_metavar_for_optional(self, action):
736
+ return action.type.__name__
737
+
738
+ def _get_default_metavar_for_positional(self, action):
739
+ return action.type.__name__
740
+
741
+
742
+ # =====================
743
+ # Options and Arguments
744
+ # =====================
745
+
746
+ def _get_action_name(argument):
747
+ if argument is None:
748
+ return None
749
+ elif argument.option_strings:
750
+ return '/'.join(argument.option_strings)
751
+ elif argument.metavar not in (None, SUPPRESS):
752
+ metavar = argument.metavar
753
+ if not isinstance(metavar, tuple):
754
+ return metavar
755
+ if argument.nargs == ZERO_OR_MORE and len(metavar) == 2:
756
+ return '%s[, %s]' % metavar
757
+ elif argument.nargs == ONE_OR_MORE:
758
+ return '%s[, %s]' % metavar
759
+ else:
760
+ return ', '.join(metavar)
761
+ elif argument.dest not in (None, SUPPRESS):
762
+ return argument.dest
763
+ elif argument.choices:
764
+ return '{%s}' % ','.join(map(str, argument.choices))
765
+ else:
766
+ return None
767
+
768
+
769
+ class ArgumentError(Exception):
770
+ """An error from creating or using an argument (optional or positional).
771
+
772
+ The string value of this exception is the message, augmented with
773
+ information about the argument that caused it.
774
+ """
775
+
776
+ def __init__(self, argument, message):
777
+ self.argument_name = _get_action_name(argument)
778
+ self.message = message
779
+
780
+ def __str__(self):
781
+ if self.argument_name is None:
782
+ format = '%(message)s'
783
+ else:
784
+ format = _('argument %(argument_name)s: %(message)s')
785
+ return format % dict(message=self.message,
786
+ argument_name=self.argument_name)
787
+
788
+
789
+ class ArgumentTypeError(Exception):
790
+ """An error from trying to convert a command line string to a type."""
791
+ pass
792
+
793
+
794
+ # ==============
795
+ # Action classes
796
+ # ==============
797
+
798
+ class Action(_AttributeHolder):
799
+ """Information about how to convert command line strings to Python objects.
800
+
801
+ Action objects are used by an ArgumentParser to represent the information
802
+ needed to parse a single argument from one or more strings from the
803
+ command line. The keyword arguments to the Action constructor are also
804
+ all attributes of Action instances.
805
+
806
+ Keyword Arguments:
807
+
808
+ - option_strings -- A list of command-line option strings which
809
+ should be associated with this action.
810
+
811
+ - dest -- The name of the attribute to hold the created object(s)
812
+
813
+ - nargs -- The number of command-line arguments that should be
814
+ consumed. By default, one argument will be consumed and a single
815
+ value will be produced. Other values include:
816
+ - N (an integer) consumes N arguments (and produces a list)
817
+ - '?' consumes zero or one arguments
818
+ - '*' consumes zero or more arguments (and produces a list)
819
+ - '+' consumes one or more arguments (and produces a list)
820
+ Note that the difference between the default and nargs=1 is that
821
+ with the default, a single value will be produced, while with
822
+ nargs=1, a list containing a single value will be produced.
823
+
824
+ - const -- The value to be produced if the option is specified and the
825
+ option uses an action that takes no values.
826
+
827
+ - default -- The value to be produced if the option is not specified.
828
+
829
+ - type -- A callable that accepts a single string argument, and
830
+ returns the converted value. The standard Python types str, int,
831
+ float, and complex are useful examples of such callables. If None,
832
+ str is used.
833
+
834
+ - choices -- A container of values that should be allowed. If not None,
835
+ after a command-line argument has been converted to the appropriate
836
+ type, an exception will be raised if it is not a member of this
837
+ collection.
838
+
839
+ - required -- True if the action must always be specified at the
840
+ command line. This is only meaningful for optional command-line
841
+ arguments.
842
+
843
+ - help -- The help string describing the argument.
844
+
845
+ - metavar -- The name to be used for the option's argument with the
846
+ help string. If None, the 'dest' value will be used as the name.
847
+ """
848
+
849
+ def __init__(self,
850
+ option_strings,
851
+ dest,
852
+ nargs=None,
853
+ const=None,
854
+ default=None,
855
+ type=None,
856
+ choices=None,
857
+ required=False,
858
+ help=None,
859
+ metavar=None):
860
+ self.option_strings = option_strings
861
+ self.dest = dest
862
+ self.nargs = nargs
863
+ self.const = const
864
+ self.default = default
865
+ self.type = type
866
+ self.choices = choices
867
+ self.required = required
868
+ self.help = help
869
+ self.metavar = metavar
870
+
871
+ def _get_kwargs(self):
872
+ names = [
873
+ 'option_strings',
874
+ 'dest',
875
+ 'nargs',
876
+ 'const',
877
+ 'default',
878
+ 'type',
879
+ 'choices',
880
+ 'required',
881
+ 'help',
882
+ 'metavar',
883
+ ]
884
+ return [(name, getattr(self, name)) for name in names]
885
+
886
+ def format_usage(self):
887
+ return self.option_strings[0]
888
+
889
+ def __call__(self, parser, namespace, values, option_string=None):
890
+ raise NotImplementedError(_('.__call__() not defined'))
891
+
892
+
893
+ # FIXME: remove together with `BooleanOptionalAction` deprecated arguments.
894
+ _deprecated_default = object()
895
+
896
+ class BooleanOptionalAction(Action):
897
+ def __init__(self,
898
+ option_strings,
899
+ dest,
900
+ default=None,
901
+ type=_deprecated_default,
902
+ choices=_deprecated_default,
903
+ required=False,
904
+ help=None,
905
+ metavar=_deprecated_default):
906
+
907
+ _option_strings = []
908
+ for option_string in option_strings:
909
+ _option_strings.append(option_string)
910
+
911
+ if option_string.startswith('--'):
912
+ option_string = '--no-' + option_string[2:]
913
+ _option_strings.append(option_string)
914
+
915
+ # We need `_deprecated` special value to ban explicit arguments that
916
+ # match default value. Like:
917
+ # parser.add_argument('-f', action=BooleanOptionalAction, type=int)
918
+ for field_name in ('type', 'choices', 'metavar'):
919
+ if locals()[field_name] is not _deprecated_default:
920
+ warnings._deprecated(
921
+ field_name,
922
+ "{name!r} is deprecated as of Python 3.12 and will be "
923
+ "removed in Python {remove}.",
924
+ remove=(3, 14))
925
+
926
+ if type is _deprecated_default:
927
+ type = None
928
+ if choices is _deprecated_default:
929
+ choices = None
930
+ if metavar is _deprecated_default:
931
+ metavar = None
932
+
933
+ super().__init__(
934
+ option_strings=_option_strings,
935
+ dest=dest,
936
+ nargs=0,
937
+ default=default,
938
+ type=type,
939
+ choices=choices,
940
+ required=required,
941
+ help=help,
942
+ metavar=metavar)
943
+
944
+
945
+ def __call__(self, parser, namespace, values, option_string=None):
946
+ if option_string in self.option_strings:
947
+ setattr(namespace, self.dest, not option_string.startswith('--no-'))
948
+
949
+ def format_usage(self):
950
+ return ' | '.join(self.option_strings)
951
+
952
+
953
+ class _StoreAction(Action):
954
+
955
+ def __init__(self,
956
+ option_strings,
957
+ dest,
958
+ nargs=None,
959
+ const=None,
960
+ default=None,
961
+ type=None,
962
+ choices=None,
963
+ required=False,
964
+ help=None,
965
+ metavar=None):
966
+ if nargs == 0:
967
+ raise ValueError('nargs for store actions must be != 0; if you '
968
+ 'have nothing to store, actions such as store '
969
+ 'true or store const may be more appropriate')
970
+ if const is not None and nargs != OPTIONAL:
971
+ raise ValueError('nargs must be %r to supply const' % OPTIONAL)
972
+ super(_StoreAction, self).__init__(
973
+ option_strings=option_strings,
974
+ dest=dest,
975
+ nargs=nargs,
976
+ const=const,
977
+ default=default,
978
+ type=type,
979
+ choices=choices,
980
+ required=required,
981
+ help=help,
982
+ metavar=metavar)
983
+
984
+ def __call__(self, parser, namespace, values, option_string=None):
985
+ setattr(namespace, self.dest, values)
986
+
987
+
988
+ class _StoreConstAction(Action):
989
+
990
+ def __init__(self,
991
+ option_strings,
992
+ dest,
993
+ const=None,
994
+ default=None,
995
+ required=False,
996
+ help=None,
997
+ metavar=None):
998
+ super(_StoreConstAction, self).__init__(
999
+ option_strings=option_strings,
1000
+ dest=dest,
1001
+ nargs=0,
1002
+ const=const,
1003
+ default=default,
1004
+ required=required,
1005
+ help=help)
1006
+
1007
+ def __call__(self, parser, namespace, values, option_string=None):
1008
+ setattr(namespace, self.dest, self.const)
1009
+
1010
+
1011
+ class _StoreTrueAction(_StoreConstAction):
1012
+
1013
+ def __init__(self,
1014
+ option_strings,
1015
+ dest,
1016
+ default=False,
1017
+ required=False,
1018
+ help=None):
1019
+ super(_StoreTrueAction, self).__init__(
1020
+ option_strings=option_strings,
1021
+ dest=dest,
1022
+ const=True,
1023
+ default=default,
1024
+ required=required,
1025
+ help=help)
1026
+
1027
+
1028
+ class _StoreFalseAction(_StoreConstAction):
1029
+
1030
+ def __init__(self,
1031
+ option_strings,
1032
+ dest,
1033
+ default=True,
1034
+ required=False,
1035
+ help=None):
1036
+ super(_StoreFalseAction, self).__init__(
1037
+ option_strings=option_strings,
1038
+ dest=dest,
1039
+ const=False,
1040
+ default=default,
1041
+ required=required,
1042
+ help=help)
1043
+
1044
+
1045
+ class _AppendAction(Action):
1046
+
1047
+ def __init__(self,
1048
+ option_strings,
1049
+ dest,
1050
+ nargs=None,
1051
+ const=None,
1052
+ default=None,
1053
+ type=None,
1054
+ choices=None,
1055
+ required=False,
1056
+ help=None,
1057
+ metavar=None):
1058
+ if nargs == 0:
1059
+ raise ValueError('nargs for append actions must be != 0; if arg '
1060
+ 'strings are not supplying the value to append, '
1061
+ 'the append const action may be more appropriate')
1062
+ if const is not None and nargs != OPTIONAL:
1063
+ raise ValueError('nargs must be %r to supply const' % OPTIONAL)
1064
+ super(_AppendAction, self).__init__(
1065
+ option_strings=option_strings,
1066
+ dest=dest,
1067
+ nargs=nargs,
1068
+ const=const,
1069
+ default=default,
1070
+ type=type,
1071
+ choices=choices,
1072
+ required=required,
1073
+ help=help,
1074
+ metavar=metavar)
1075
+
1076
+ def __call__(self, parser, namespace, values, option_string=None):
1077
+ items = getattr(namespace, self.dest, None)
1078
+ items = _copy_items(items)
1079
+ items.append(values)
1080
+ setattr(namespace, self.dest, items)
1081
+
1082
+
1083
+ class _AppendConstAction(Action):
1084
+
1085
+ def __init__(self,
1086
+ option_strings,
1087
+ dest,
1088
+ const=None,
1089
+ default=None,
1090
+ required=False,
1091
+ help=None,
1092
+ metavar=None):
1093
+ super(_AppendConstAction, self).__init__(
1094
+ option_strings=option_strings,
1095
+ dest=dest,
1096
+ nargs=0,
1097
+ const=const,
1098
+ default=default,
1099
+ required=required,
1100
+ help=help,
1101
+ metavar=metavar)
1102
+
1103
+ def __call__(self, parser, namespace, values, option_string=None):
1104
+ items = getattr(namespace, self.dest, None)
1105
+ items = _copy_items(items)
1106
+ items.append(self.const)
1107
+ setattr(namespace, self.dest, items)
1108
+
1109
+
1110
+ class _CountAction(Action):
1111
+
1112
+ def __init__(self,
1113
+ option_strings,
1114
+ dest,
1115
+ default=None,
1116
+ required=False,
1117
+ help=None):
1118
+ super(_CountAction, self).__init__(
1119
+ option_strings=option_strings,
1120
+ dest=dest,
1121
+ nargs=0,
1122
+ default=default,
1123
+ required=required,
1124
+ help=help)
1125
+
1126
+ def __call__(self, parser, namespace, values, option_string=None):
1127
+ count = getattr(namespace, self.dest, None)
1128
+ if count is None:
1129
+ count = 0
1130
+ setattr(namespace, self.dest, count + 1)
1131
+
1132
+
1133
+ class _HelpAction(Action):
1134
+
1135
+ def __init__(self,
1136
+ option_strings,
1137
+ dest=SUPPRESS,
1138
+ default=SUPPRESS,
1139
+ help=None):
1140
+ super(_HelpAction, self).__init__(
1141
+ option_strings=option_strings,
1142
+ dest=dest,
1143
+ default=default,
1144
+ nargs=0,
1145
+ help=help)
1146
+
1147
+ def __call__(self, parser, namespace, values, option_string=None):
1148
+ parser.print_help()
1149
+ parser.exit()
1150
+
1151
+
1152
+ class _VersionAction(Action):
1153
+
1154
+ def __init__(self,
1155
+ option_strings,
1156
+ version=None,
1157
+ dest=SUPPRESS,
1158
+ default=SUPPRESS,
1159
+ help=None):
1160
+ if help is None:
1161
+ help = _("show program's version number and exit")
1162
+ super(_VersionAction, self).__init__(
1163
+ option_strings=option_strings,
1164
+ dest=dest,
1165
+ default=default,
1166
+ nargs=0,
1167
+ help=help)
1168
+ self.version = version
1169
+
1170
+ def __call__(self, parser, namespace, values, option_string=None):
1171
+ version = self.version
1172
+ if version is None:
1173
+ version = parser.version
1174
+ formatter = parser._get_formatter()
1175
+ formatter.add_text(version)
1176
+ parser._print_message(formatter.format_help(), _sys.stdout)
1177
+ parser.exit()
1178
+
1179
+
1180
+ class _SubParsersAction(Action):
1181
+
1182
+ class _ChoicesPseudoAction(Action):
1183
+
1184
+ def __init__(self, name, aliases, help):
1185
+ metavar = dest = name
1186
+ if aliases:
1187
+ metavar += ' (%s)' % ', '.join(aliases)
1188
+ sup = super(_SubParsersAction._ChoicesPseudoAction, self)
1189
+ sup.__init__(option_strings=[], dest=dest, help=help,
1190
+ metavar=metavar)
1191
+
1192
+ def __init__(self,
1193
+ option_strings,
1194
+ prog,
1195
+ parser_class,
1196
+ dest=SUPPRESS,
1197
+ required=False,
1198
+ help=None,
1199
+ metavar=None):
1200
+
1201
+ self._prog_prefix = prog
1202
+ self._parser_class = parser_class
1203
+ self._name_parser_map = {}
1204
+ self._choices_actions = []
1205
+
1206
+ super(_SubParsersAction, self).__init__(
1207
+ option_strings=option_strings,
1208
+ dest=dest,
1209
+ nargs=PARSER,
1210
+ choices=self._name_parser_map,
1211
+ required=required,
1212
+ help=help,
1213
+ metavar=metavar)
1214
+
1215
+ def add_parser(self, name, **kwargs):
1216
+ # set prog from the existing prefix
1217
+ if kwargs.get('prog') is None:
1218
+ kwargs['prog'] = '%s %s' % (self._prog_prefix, name)
1219
+
1220
+ aliases = kwargs.pop('aliases', ())
1221
+
1222
+ if name in self._name_parser_map:
1223
+ raise ArgumentError(self, _('conflicting subparser: %s') % name)
1224
+ for alias in aliases:
1225
+ if alias in self._name_parser_map:
1226
+ raise ArgumentError(
1227
+ self, _('conflicting subparser alias: %s') % alias)
1228
+
1229
+ # create a pseudo-action to hold the choice help
1230
+ if 'help' in kwargs:
1231
+ help = kwargs.pop('help')
1232
+ choice_action = self._ChoicesPseudoAction(name, aliases, help)
1233
+ self._choices_actions.append(choice_action)
1234
+
1235
+ # create the parser and add it to the map
1236
+ parser = self._parser_class(**kwargs)
1237
+ self._name_parser_map[name] = parser
1238
+
1239
+ # make parser available under aliases also
1240
+ for alias in aliases:
1241
+ self._name_parser_map[alias] = parser
1242
+
1243
+ return parser
1244
+
1245
+ def _get_subactions(self):
1246
+ return self._choices_actions
1247
+
1248
+ def __call__(self, parser, namespace, values, option_string=None):
1249
+ parser_name = values[0]
1250
+ arg_strings = values[1:]
1251
+
1252
+ # set the parser name if requested
1253
+ if self.dest is not SUPPRESS:
1254
+ setattr(namespace, self.dest, parser_name)
1255
+
1256
+ # select the parser
1257
+ try:
1258
+ parser = self._name_parser_map[parser_name]
1259
+ except KeyError:
1260
+ args = {'parser_name': parser_name,
1261
+ 'choices': ', '.join(self._name_parser_map)}
1262
+ msg = _('unknown parser %(parser_name)r (choices: %(choices)s)') % args
1263
+ raise ArgumentError(self, msg)
1264
+
1265
+ # parse all the remaining options into the namespace
1266
+ # store any unrecognized options on the object, so that the top
1267
+ # level parser can decide what to do with them
1268
+
1269
+ # In case this subparser defines new defaults, we parse them
1270
+ # in a new namespace object and then update the original
1271
+ # namespace for the relevant parts.
1272
+ subnamespace, arg_strings = parser.parse_known_args(arg_strings, None)
1273
+ for key, value in vars(subnamespace).items():
1274
+ setattr(namespace, key, value)
1275
+
1276
+ if arg_strings:
1277
+ if not hasattr(namespace, _UNRECOGNIZED_ARGS_ATTR):
1278
+ setattr(namespace, _UNRECOGNIZED_ARGS_ATTR, [])
1279
+ getattr(namespace, _UNRECOGNIZED_ARGS_ATTR).extend(arg_strings)
1280
+
1281
+ class _ExtendAction(_AppendAction):
1282
+ def __call__(self, parser, namespace, values, option_string=None):
1283
+ items = getattr(namespace, self.dest, None)
1284
+ items = _copy_items(items)
1285
+ items.extend(values)
1286
+ setattr(namespace, self.dest, items)
1287
+
1288
+ # ==============
1289
+ # Type classes
1290
+ # ==============
1291
+
1292
+ class FileType(object):
1293
+ """Factory for creating file object types
1294
+
1295
+ Instances of FileType are typically passed as type= arguments to the
1296
+ ArgumentParser add_argument() method.
1297
+
1298
+ Keyword Arguments:
1299
+ - mode -- A string indicating how the file is to be opened. Accepts the
1300
+ same values as the builtin open() function.
1301
+ - bufsize -- The file's desired buffer size. Accepts the same values as
1302
+ the builtin open() function.
1303
+ - encoding -- The file's encoding. Accepts the same values as the
1304
+ builtin open() function.
1305
+ - errors -- A string indicating how encoding and decoding errors are to
1306
+ be handled. Accepts the same value as the builtin open() function.
1307
+ """
1308
+
1309
+ def __init__(self, mode='r', bufsize=-1, encoding=None, errors=None):
1310
+ self._mode = mode
1311
+ self._bufsize = bufsize
1312
+ self._encoding = encoding
1313
+ self._errors = errors
1314
+
1315
+ def __call__(self, string):
1316
+ # the special argument "-" means sys.std{in,out}
1317
+ if string == '-':
1318
+ if 'r' in self._mode:
1319
+ return _sys.stdin.buffer if 'b' in self._mode else _sys.stdin
1320
+ elif any(c in self._mode for c in 'wax'):
1321
+ return _sys.stdout.buffer if 'b' in self._mode else _sys.stdout
1322
+ else:
1323
+ msg = _('argument "-" with mode %r') % self._mode
1324
+ raise ValueError(msg)
1325
+
1326
+ # all other arguments are used as file names
1327
+ try:
1328
+ return open(string, self._mode, self._bufsize, self._encoding,
1329
+ self._errors)
1330
+ except OSError as e:
1331
+ args = {'filename': string, 'error': e}
1332
+ message = _("can't open '%(filename)s': %(error)s")
1333
+ raise ArgumentTypeError(message % args)
1334
+
1335
+ def __repr__(self):
1336
+ args = self._mode, self._bufsize
1337
+ kwargs = [('encoding', self._encoding), ('errors', self._errors)]
1338
+ args_str = ', '.join([repr(arg) for arg in args if arg != -1] +
1339
+ ['%s=%r' % (kw, arg) for kw, arg in kwargs
1340
+ if arg is not None])
1341
+ return '%s(%s)' % (type(self).__name__, args_str)
1342
+
1343
+ # ===========================
1344
+ # Optional and Positional Parsing
1345
+ # ===========================
1346
+
1347
+ class Namespace(_AttributeHolder):
1348
+ """Simple object for storing attributes.
1349
+
1350
+ Implements equality by attribute names and values, and provides a simple
1351
+ string representation.
1352
+ """
1353
+
1354
+ def __init__(self, **kwargs):
1355
+ for name in kwargs:
1356
+ setattr(self, name, kwargs[name])
1357
+
1358
+ def __eq__(self, other):
1359
+ if not isinstance(other, Namespace):
1360
+ return NotImplemented
1361
+ return vars(self) == vars(other)
1362
+
1363
+ def __contains__(self, key):
1364
+ return key in self.__dict__
1365
+
1366
+
1367
+ class _ActionsContainer(object):
1368
+
1369
+ def __init__(self,
1370
+ description,
1371
+ prefix_chars,
1372
+ argument_default,
1373
+ conflict_handler):
1374
+ super(_ActionsContainer, self).__init__()
1375
+
1376
+ self.description = description
1377
+ self.argument_default = argument_default
1378
+ self.prefix_chars = prefix_chars
1379
+ self.conflict_handler = conflict_handler
1380
+
1381
+ # set up registries
1382
+ self._registries = {}
1383
+
1384
+ # register actions
1385
+ self.register('action', None, _StoreAction)
1386
+ self.register('action', 'store', _StoreAction)
1387
+ self.register('action', 'store_const', _StoreConstAction)
1388
+ self.register('action', 'store_true', _StoreTrueAction)
1389
+ self.register('action', 'store_false', _StoreFalseAction)
1390
+ self.register('action', 'append', _AppendAction)
1391
+ self.register('action', 'append_const', _AppendConstAction)
1392
+ self.register('action', 'count', _CountAction)
1393
+ self.register('action', 'help', _HelpAction)
1394
+ self.register('action', 'version', _VersionAction)
1395
+ self.register('action', 'parsers', _SubParsersAction)
1396
+ self.register('action', 'extend', _ExtendAction)
1397
+
1398
+ # raise an exception if the conflict handler is invalid
1399
+ self._get_handler()
1400
+
1401
+ # action storage
1402
+ self._actions = []
1403
+ self._option_string_actions = {}
1404
+
1405
+ # groups
1406
+ self._action_groups = []
1407
+ self._mutually_exclusive_groups = []
1408
+
1409
+ # defaults storage
1410
+ self._defaults = {}
1411
+
1412
+ # determines whether an "option" looks like a negative number
1413
+ self._negative_number_matcher = _re.compile(r'^-\d+$|^-\d*\.\d+$')
1414
+
1415
+ # whether or not there are any optionals that look like negative
1416
+ # numbers -- uses a list so it can be shared and edited
1417
+ self._has_negative_number_optionals = []
1418
+
1419
+ # ====================
1420
+ # Registration methods
1421
+ # ====================
1422
+ def register(self, registry_name, value, object):
1423
+ registry = self._registries.setdefault(registry_name, {})
1424
+ registry[value] = object
1425
+
1426
+ def _registry_get(self, registry_name, value, default=None):
1427
+ return self._registries[registry_name].get(value, default)
1428
+
1429
+ # ==================================
1430
+ # Namespace default accessor methods
1431
+ # ==================================
1432
+ def set_defaults(self, **kwargs):
1433
+ self._defaults.update(kwargs)
1434
+
1435
+ # if these defaults match any existing arguments, replace
1436
+ # the previous default on the object with the new one
1437
+ for action in self._actions:
1438
+ if action.dest in kwargs:
1439
+ action.default = kwargs[action.dest]
1440
+
1441
+ def get_default(self, dest):
1442
+ for action in self._actions:
1443
+ if action.dest == dest and action.default is not None:
1444
+ return action.default
1445
+ return self._defaults.get(dest, None)
1446
+
1447
+
1448
+ # =======================
1449
+ # Adding argument actions
1450
+ # =======================
1451
+ def add_argument(self, *args, **kwargs):
1452
+ """
1453
+ add_argument(dest, ..., name=value, ...)
1454
+ add_argument(option_string, option_string, ..., name=value, ...)
1455
+ """
1456
+
1457
+ # if no positional args are supplied or only one is supplied and
1458
+ # it doesn't look like an option string, parse a positional
1459
+ # argument
1460
+ chars = self.prefix_chars
1461
+ if not args or len(args) == 1 and args[0][0] not in chars:
1462
+ if args and 'dest' in kwargs:
1463
+ raise ValueError('dest supplied twice for positional argument')
1464
+ kwargs = self._get_positional_kwargs(*args, **kwargs)
1465
+
1466
+ # otherwise, we're adding an optional argument
1467
+ else:
1468
+ kwargs = self._get_optional_kwargs(*args, **kwargs)
1469
+
1470
+ # if no default was supplied, use the parser-level default
1471
+ if 'default' not in kwargs:
1472
+ dest = kwargs['dest']
1473
+ if dest in self._defaults:
1474
+ kwargs['default'] = self._defaults[dest]
1475
+ elif self.argument_default is not None:
1476
+ kwargs['default'] = self.argument_default
1477
+
1478
+ # create the action object, and add it to the parser
1479
+ action_class = self._pop_action_class(kwargs)
1480
+ if not callable(action_class):
1481
+ raise ValueError('unknown action "%s"' % (action_class,))
1482
+ action = action_class(**kwargs)
1483
+
1484
+ # raise an error if the action type is not callable
1485
+ type_func = self._registry_get('type', action.type, action.type)
1486
+ if not callable(type_func):
1487
+ raise ValueError('%r is not callable' % (type_func,))
1488
+
1489
+ if type_func is FileType:
1490
+ raise ValueError('%r is a FileType class object, instance of it'
1491
+ ' must be passed' % (type_func,))
1492
+
1493
+ # raise an error if the metavar does not match the type
1494
+ if hasattr(self, "_get_formatter"):
1495
+ try:
1496
+ self._get_formatter()._format_args(action, None)
1497
+ except TypeError:
1498
+ raise ValueError("length of metavar tuple does not match nargs")
1499
+
1500
+ return self._add_action(action)
1501
+
1502
+ def add_argument_group(self, *args, **kwargs):
1503
+ group = _ArgumentGroup(self, *args, **kwargs)
1504
+ self._action_groups.append(group)
1505
+ return group
1506
+
1507
+ def add_mutually_exclusive_group(self, **kwargs):
1508
+ group = _MutuallyExclusiveGroup(self, **kwargs)
1509
+ self._mutually_exclusive_groups.append(group)
1510
+ return group
1511
+
1512
+ def _add_action(self, action):
1513
+ # resolve any conflicts
1514
+ self._check_conflict(action)
1515
+
1516
+ # add to actions list
1517
+ self._actions.append(action)
1518
+ action.container = self
1519
+
1520
+ # index the action by any option strings it has
1521
+ for option_string in action.option_strings:
1522
+ self._option_string_actions[option_string] = action
1523
+
1524
+ # set the flag if any option strings look like negative numbers
1525
+ for option_string in action.option_strings:
1526
+ if self._negative_number_matcher.match(option_string):
1527
+ if not self._has_negative_number_optionals:
1528
+ self._has_negative_number_optionals.append(True)
1529
+
1530
+ # return the created action
1531
+ return action
1532
+
1533
+ def _remove_action(self, action):
1534
+ self._actions.remove(action)
1535
+
1536
+ def _add_container_actions(self, container):
1537
+ # collect groups by titles
1538
+ title_group_map = {}
1539
+ for group in self._action_groups:
1540
+ if group.title in title_group_map:
1541
+ msg = _('cannot merge actions - two groups are named %r')
1542
+ raise ValueError(msg % (group.title))
1543
+ title_group_map[group.title] = group
1544
+
1545
+ # map each action to its group
1546
+ group_map = {}
1547
+ for group in container._action_groups:
1548
+
1549
+ # if a group with the title exists, use that, otherwise
1550
+ # create a new group matching the container's group
1551
+ if group.title not in title_group_map:
1552
+ title_group_map[group.title] = self.add_argument_group(
1553
+ title=group.title,
1554
+ description=group.description,
1555
+ conflict_handler=group.conflict_handler)
1556
+
1557
+ # map the actions to their new group
1558
+ for action in group._group_actions:
1559
+ group_map[action] = title_group_map[group.title]
1560
+
1561
+ # add container's mutually exclusive groups
1562
+ # NOTE: if add_mutually_exclusive_group ever gains title= and
1563
+ # description= then this code will need to be expanded as above
1564
+ for group in container._mutually_exclusive_groups:
1565
+ if group._container is container:
1566
+ cont = self
1567
+ else:
1568
+ cont = title_group_map[group._container.title]
1569
+ mutex_group = cont.add_mutually_exclusive_group(
1570
+ required=group.required)
1571
+
1572
+ # map the actions to their new mutex group
1573
+ for action in group._group_actions:
1574
+ group_map[action] = mutex_group
1575
+
1576
+ # add all actions to this container or their group
1577
+ for action in container._actions:
1578
+ group_map.get(action, self)._add_action(action)
1579
+
1580
+ def _get_positional_kwargs(self, dest, **kwargs):
1581
+ # make sure required is not specified
1582
+ if 'required' in kwargs:
1583
+ msg = _("'required' is an invalid argument for positionals")
1584
+ raise TypeError(msg)
1585
+
1586
+ # mark positional arguments as required if at least one is
1587
+ # always required
1588
+ nargs = kwargs.get('nargs')
1589
+ if nargs not in [OPTIONAL, ZERO_OR_MORE, REMAINDER, SUPPRESS, 0]:
1590
+ kwargs['required'] = True
1591
+
1592
+ # return the keyword arguments with no option strings
1593
+ return dict(kwargs, dest=dest, option_strings=[])
1594
+
1595
+ def _get_optional_kwargs(self, *args, **kwargs):
1596
+ # determine short and long option strings
1597
+ option_strings = []
1598
+ long_option_strings = []
1599
+ for option_string in args:
1600
+ # error on strings that don't start with an appropriate prefix
1601
+ if not option_string[0] in self.prefix_chars:
1602
+ args = {'option': option_string,
1603
+ 'prefix_chars': self.prefix_chars}
1604
+ msg = _('invalid option string %(option)r: '
1605
+ 'must start with a character %(prefix_chars)r')
1606
+ raise ValueError(msg % args)
1607
+
1608
+ # strings starting with two prefix characters are long options
1609
+ option_strings.append(option_string)
1610
+ if len(option_string) > 1 and option_string[1] in self.prefix_chars:
1611
+ long_option_strings.append(option_string)
1612
+
1613
+ # infer destination, '--foo-bar' -> 'foo_bar' and '-x' -> 'x'
1614
+ dest = kwargs.pop('dest', None)
1615
+ if dest is None:
1616
+ if long_option_strings:
1617
+ dest_option_string = long_option_strings[0]
1618
+ else:
1619
+ dest_option_string = option_strings[0]
1620
+ dest = dest_option_string.lstrip(self.prefix_chars)
1621
+ if not dest:
1622
+ msg = _('dest= is required for options like %r')
1623
+ raise ValueError(msg % option_string)
1624
+ dest = dest.replace('-', '_')
1625
+
1626
+ # return the updated keyword arguments
1627
+ return dict(kwargs, dest=dest, option_strings=option_strings)
1628
+
1629
+ def _pop_action_class(self, kwargs, default=None):
1630
+ action = kwargs.pop('action', default)
1631
+ return self._registry_get('action', action, action)
1632
+
1633
+ def _get_handler(self):
1634
+ # determine function from conflict handler string
1635
+ handler_func_name = '_handle_conflict_%s' % self.conflict_handler
1636
+ try:
1637
+ return getattr(self, handler_func_name)
1638
+ except AttributeError:
1639
+ msg = _('invalid conflict_resolution value: %r')
1640
+ raise ValueError(msg % self.conflict_handler)
1641
+
1642
+ def _check_conflict(self, action):
1643
+
1644
+ # find all options that conflict with this option
1645
+ confl_optionals = []
1646
+ for option_string in action.option_strings:
1647
+ if option_string in self._option_string_actions:
1648
+ confl_optional = self._option_string_actions[option_string]
1649
+ confl_optionals.append((option_string, confl_optional))
1650
+
1651
+ # resolve any conflicts
1652
+ if confl_optionals:
1653
+ conflict_handler = self._get_handler()
1654
+ conflict_handler(action, confl_optionals)
1655
+
1656
+ def _handle_conflict_error(self, action, conflicting_actions):
1657
+ message = ngettext('conflicting option string: %s',
1658
+ 'conflicting option strings: %s',
1659
+ len(conflicting_actions))
1660
+ conflict_string = ', '.join([option_string
1661
+ for option_string, action
1662
+ in conflicting_actions])
1663
+ raise ArgumentError(action, message % conflict_string)
1664
+
1665
+ def _handle_conflict_resolve(self, action, conflicting_actions):
1666
+
1667
+ # remove all conflicting options
1668
+ for option_string, action in conflicting_actions:
1669
+
1670
+ # remove the conflicting option
1671
+ action.option_strings.remove(option_string)
1672
+ self._option_string_actions.pop(option_string, None)
1673
+
1674
+ # if the option now has no option string, remove it from the
1675
+ # container holding it
1676
+ if not action.option_strings:
1677
+ action.container._remove_action(action)
1678
+
1679
+
1680
+ class _ArgumentGroup(_ActionsContainer):
1681
+
1682
+ def __init__(self, container, title=None, description=None, **kwargs):
1683
+ # add any missing keyword arguments by checking the container
1684
+ update = kwargs.setdefault
1685
+ update('conflict_handler', container.conflict_handler)
1686
+ update('prefix_chars', container.prefix_chars)
1687
+ update('argument_default', container.argument_default)
1688
+ super_init = super(_ArgumentGroup, self).__init__
1689
+ super_init(description=description, **kwargs)
1690
+
1691
+ # group attributes
1692
+ self.title = title
1693
+ self._group_actions = []
1694
+
1695
+ # share most attributes with the container
1696
+ self._registries = container._registries
1697
+ self._actions = container._actions
1698
+ self._option_string_actions = container._option_string_actions
1699
+ self._defaults = container._defaults
1700
+ self._has_negative_number_optionals = \
1701
+ container._has_negative_number_optionals
1702
+ self._mutually_exclusive_groups = container._mutually_exclusive_groups
1703
+
1704
+ def _add_action(self, action):
1705
+ action = super(_ArgumentGroup, self)._add_action(action)
1706
+ self._group_actions.append(action)
1707
+ return action
1708
+
1709
+ def _remove_action(self, action):
1710
+ super(_ArgumentGroup, self)._remove_action(action)
1711
+ self._group_actions.remove(action)
1712
+
1713
+ def add_argument_group(self, *args, **kwargs):
1714
+ warnings.warn(
1715
+ "Nesting argument groups is deprecated.",
1716
+ category=DeprecationWarning,
1717
+ stacklevel=2
1718
+ )
1719
+ return super().add_argument_group(*args, **kwargs)
1720
+
1721
+
1722
+ class _MutuallyExclusiveGroup(_ArgumentGroup):
1723
+
1724
+ def __init__(self, container, required=False):
1725
+ super(_MutuallyExclusiveGroup, self).__init__(container)
1726
+ self.required = required
1727
+ self._container = container
1728
+
1729
+ def _add_action(self, action):
1730
+ if action.required:
1731
+ msg = _('mutually exclusive arguments must be optional')
1732
+ raise ValueError(msg)
1733
+ action = self._container._add_action(action)
1734
+ self._group_actions.append(action)
1735
+ return action
1736
+
1737
+ def _remove_action(self, action):
1738
+ self._container._remove_action(action)
1739
+ self._group_actions.remove(action)
1740
+
1741
+ def add_mutually_exclusive_group(self, *args, **kwargs):
1742
+ warnings.warn(
1743
+ "Nesting mutually exclusive groups is deprecated.",
1744
+ category=DeprecationWarning,
1745
+ stacklevel=2
1746
+ )
1747
+ return super().add_mutually_exclusive_group(*args, **kwargs)
1748
+
1749
+
1750
+ class ArgumentParser(_AttributeHolder, _ActionsContainer):
1751
+ """Object for parsing command line strings into Python objects.
1752
+
1753
+ Keyword Arguments:
1754
+ - prog -- The name of the program (default:
1755
+ ``os.path.basename(sys.argv[0])``)
1756
+ - usage -- A usage message (default: auto-generated from arguments)
1757
+ - description -- A description of what the program does
1758
+ - epilog -- Text following the argument descriptions
1759
+ - parents -- Parsers whose arguments should be copied into this one
1760
+ - formatter_class -- HelpFormatter class for printing help messages
1761
+ - prefix_chars -- Characters that prefix optional arguments
1762
+ - fromfile_prefix_chars -- Characters that prefix files containing
1763
+ additional arguments
1764
+ - argument_default -- The default value for all arguments
1765
+ - conflict_handler -- String indicating how to handle conflicts
1766
+ - add_help -- Add a -h/-help option
1767
+ - allow_abbrev -- Allow long options to be abbreviated unambiguously
1768
+ - exit_on_error -- Determines whether or not ArgumentParser exits with
1769
+ error info when an error occurs
1770
+ """
1771
+
1772
+ def __init__(self,
1773
+ prog=None,
1774
+ usage=None,
1775
+ description=None,
1776
+ epilog=None,
1777
+ parents=[],
1778
+ formatter_class=HelpFormatter,
1779
+ prefix_chars='-',
1780
+ fromfile_prefix_chars=None,
1781
+ argument_default=None,
1782
+ conflict_handler='error',
1783
+ add_help=True,
1784
+ allow_abbrev=True,
1785
+ exit_on_error=True):
1786
+
1787
+ superinit = super(ArgumentParser, self).__init__
1788
+ superinit(description=description,
1789
+ prefix_chars=prefix_chars,
1790
+ argument_default=argument_default,
1791
+ conflict_handler=conflict_handler)
1792
+
1793
+ # default setting for prog
1794
+ if prog is None:
1795
+ prog = _os.path.basename(_sys.argv[0])
1796
+
1797
+ self.prog = prog
1798
+ self.usage = usage
1799
+ self.epilog = epilog
1800
+ self.formatter_class = formatter_class
1801
+ self.fromfile_prefix_chars = fromfile_prefix_chars
1802
+ self.add_help = add_help
1803
+ self.allow_abbrev = allow_abbrev
1804
+ self.exit_on_error = exit_on_error
1805
+
1806
+ add_group = self.add_argument_group
1807
+ self._positionals = add_group(_('positional arguments'))
1808
+ self._optionals = add_group(_('options'))
1809
+ self._subparsers = None
1810
+
1811
+ # register types
1812
+ def identity(string):
1813
+ return string
1814
+ self.register('type', None, identity)
1815
+
1816
+ # add help argument if necessary
1817
+ # (using explicit default to override global argument_default)
1818
+ default_prefix = '-' if '-' in prefix_chars else prefix_chars[0]
1819
+ if self.add_help:
1820
+ self.add_argument(
1821
+ default_prefix+'h', default_prefix*2+'help',
1822
+ action='help', default=SUPPRESS,
1823
+ help=_('show this help message and exit'))
1824
+
1825
+ # add parent arguments and defaults
1826
+ for parent in parents:
1827
+ self._add_container_actions(parent)
1828
+ try:
1829
+ defaults = parent._defaults
1830
+ except AttributeError:
1831
+ pass
1832
+ else:
1833
+ self._defaults.update(defaults)
1834
+
1835
+ # =======================
1836
+ # Pretty __repr__ methods
1837
+ # =======================
1838
+ def _get_kwargs(self):
1839
+ names = [
1840
+ 'prog',
1841
+ 'usage',
1842
+ 'description',
1843
+ 'formatter_class',
1844
+ 'conflict_handler',
1845
+ 'add_help',
1846
+ ]
1847
+ return [(name, getattr(self, name)) for name in names]
1848
+
1849
+ # ==================================
1850
+ # Optional/Positional adding methods
1851
+ # ==================================
1852
+ def add_subparsers(self, **kwargs):
1853
+ if self._subparsers is not None:
1854
+ raise ArgumentError(None, _('cannot have multiple subparser arguments'))
1855
+
1856
+ # add the parser class to the arguments if it's not present
1857
+ kwargs.setdefault('parser_class', type(self))
1858
+
1859
+ if 'title' in kwargs or 'description' in kwargs:
1860
+ title = kwargs.pop('title', _('subcommands'))
1861
+ description = kwargs.pop('description', None)
1862
+ self._subparsers = self.add_argument_group(title, description)
1863
+ else:
1864
+ self._subparsers = self._positionals
1865
+
1866
+ # prog defaults to the usage message of this parser, skipping
1867
+ # optional arguments and with no "usage:" prefix
1868
+ if kwargs.get('prog') is None:
1869
+ formatter = self._get_formatter()
1870
+ positionals = self._get_positional_actions()
1871
+ groups = self._mutually_exclusive_groups
1872
+ formatter.add_usage(self.usage, positionals, groups, '')
1873
+ kwargs['prog'] = formatter.format_help().strip()
1874
+
1875
+ # create the parsers action and add it to the positionals list
1876
+ parsers_class = self._pop_action_class(kwargs, 'parsers')
1877
+ action = parsers_class(option_strings=[], **kwargs)
1878
+ self._subparsers._add_action(action)
1879
+
1880
+ # return the created parsers action
1881
+ return action
1882
+
1883
+ def _add_action(self, action):
1884
+ if action.option_strings:
1885
+ self._optionals._add_action(action)
1886
+ else:
1887
+ self._positionals._add_action(action)
1888
+ return action
1889
+
1890
+ def _get_optional_actions(self):
1891
+ return [action
1892
+ for action in self._actions
1893
+ if action.option_strings]
1894
+
1895
+ def _get_positional_actions(self):
1896
+ return [action
1897
+ for action in self._actions
1898
+ if not action.option_strings]
1899
+
1900
+ # =====================================
1901
+ # Command line argument parsing methods
1902
+ # =====================================
1903
+ def parse_args(self, args=None, namespace=None):
1904
+ args, argv = self.parse_known_args(args, namespace)
1905
+ if argv:
1906
+ msg = _('unrecognized arguments: %s') % ' '.join(argv)
1907
+ if self.exit_on_error:
1908
+ self.error(msg)
1909
+ else:
1910
+ raise ArgumentError(None, msg)
1911
+ return args
1912
+
1913
+ def parse_known_args(self, args=None, namespace=None):
1914
+ return self._parse_known_args2(args, namespace, intermixed=False)
1915
+
1916
+ def _parse_known_args2(self, args, namespace, intermixed):
1917
+ if args is None:
1918
+ # args default to the system args
1919
+ args = _sys.argv[1:]
1920
+ else:
1921
+ # make sure that args are mutable
1922
+ args = list(args)
1923
+
1924
+ # default Namespace built from parser defaults
1925
+ if namespace is None:
1926
+ namespace = Namespace()
1927
+
1928
+ # add any action defaults that aren't present
1929
+ for action in self._actions:
1930
+ if action.dest is not SUPPRESS:
1931
+ if not hasattr(namespace, action.dest):
1932
+ if action.default is not SUPPRESS:
1933
+ setattr(namespace, action.dest, action.default)
1934
+
1935
+ # add any parser defaults that aren't present
1936
+ for dest in self._defaults:
1937
+ if not hasattr(namespace, dest):
1938
+ setattr(namespace, dest, self._defaults[dest])
1939
+
1940
+ # parse the arguments and exit if there are any errors
1941
+ if self.exit_on_error:
1942
+ try:
1943
+ namespace, args = self._parse_known_args(args, namespace, intermixed)
1944
+ except ArgumentError as err:
1945
+ self.error(str(err))
1946
+ else:
1947
+ namespace, args = self._parse_known_args(args, namespace, intermixed)
1948
+
1949
+ if hasattr(namespace, _UNRECOGNIZED_ARGS_ATTR):
1950
+ args.extend(getattr(namespace, _UNRECOGNIZED_ARGS_ATTR))
1951
+ delattr(namespace, _UNRECOGNIZED_ARGS_ATTR)
1952
+ return namespace, args
1953
+
1954
+ def _parse_known_args(self, arg_strings, namespace, intermixed):
1955
+ # replace arg strings that are file references
1956
+ if self.fromfile_prefix_chars is not None:
1957
+ arg_strings = self._read_args_from_files(arg_strings)
1958
+
1959
+ # map all mutually exclusive arguments to the other arguments
1960
+ # they can't occur with
1961
+ action_conflicts = {}
1962
+ for mutex_group in self._mutually_exclusive_groups:
1963
+ group_actions = mutex_group._group_actions
1964
+ for i, mutex_action in enumerate(mutex_group._group_actions):
1965
+ conflicts = action_conflicts.setdefault(mutex_action, [])
1966
+ conflicts.extend(group_actions[:i])
1967
+ conflicts.extend(group_actions[i + 1:])
1968
+
1969
+ # find all option indices, and determine the arg_string_pattern
1970
+ # which has an 'O' if there is an option at an index,
1971
+ # an 'A' if there is an argument, or a '-' if there is a '--'
1972
+ option_string_indices = {}
1973
+ arg_string_pattern_parts = []
1974
+ arg_strings_iter = iter(arg_strings)
1975
+ for i, arg_string in enumerate(arg_strings_iter):
1976
+
1977
+ # all args after -- are non-options
1978
+ if arg_string == '--':
1979
+ arg_string_pattern_parts.append('-')
1980
+ for arg_string in arg_strings_iter:
1981
+ arg_string_pattern_parts.append('A')
1982
+
1983
+ # otherwise, add the arg to the arg strings
1984
+ # and note the index if it was an option
1985
+ else:
1986
+ option_tuples = self._parse_optional(arg_string)
1987
+ if option_tuples is None:
1988
+ pattern = 'A'
1989
+ else:
1990
+ option_string_indices[i] = option_tuples
1991
+ pattern = 'O'
1992
+ arg_string_pattern_parts.append(pattern)
1993
+
1994
+ # join the pieces together to form the pattern
1995
+ arg_strings_pattern = ''.join(arg_string_pattern_parts)
1996
+
1997
+ # converts arg strings to the appropriate and then takes the action
1998
+ seen_actions = set()
1999
+ seen_non_default_actions = set()
2000
+
2001
+ def take_action(action, argument_strings, option_string=None):
2002
+ seen_actions.add(action)
2003
+ argument_values = self._get_values(action, argument_strings)
2004
+
2005
+ # error if this argument is not allowed with other previously
2006
+ # seen arguments
2007
+ if action.option_strings or argument_strings:
2008
+ seen_non_default_actions.add(action)
2009
+ for conflict_action in action_conflicts.get(action, []):
2010
+ if conflict_action in seen_non_default_actions:
2011
+ msg = _('not allowed with argument %s')
2012
+ action_name = _get_action_name(conflict_action)
2013
+ raise ArgumentError(action, msg % action_name)
2014
+
2015
+ # take the action if we didn't receive a SUPPRESS value
2016
+ # (e.g. from a default)
2017
+ if argument_values is not SUPPRESS:
2018
+ action(self, namespace, argument_values, option_string)
2019
+
2020
+ # function to convert arg_strings into an optional action
2021
+ def consume_optional(start_index):
2022
+
2023
+ # get the optional identified at this index
2024
+ option_tuples = option_string_indices[start_index]
2025
+ # if multiple actions match, the option string was ambiguous
2026
+ if len(option_tuples) > 1:
2027
+ options = ', '.join([option_string
2028
+ for action, option_string, sep, explicit_arg in option_tuples])
2029
+ args = {'option': arg_strings[start_index], 'matches': options}
2030
+ msg = _('ambiguous option: %(option)s could match %(matches)s')
2031
+ raise ArgumentError(None, msg % args)
2032
+
2033
+ action, option_string, sep, explicit_arg = option_tuples[0]
2034
+
2035
+ # identify additional optionals in the same arg string
2036
+ # (e.g. -xyz is the same as -x -y -z if no args are required)
2037
+ match_argument = self._match_argument
2038
+ action_tuples = []
2039
+ while True:
2040
+
2041
+ # if we found no optional action, skip it
2042
+ if action is None:
2043
+ extras.append(arg_strings[start_index])
2044
+ extras_pattern.append('O')
2045
+ return start_index + 1
2046
+
2047
+ # if there is an explicit argument, try to match the
2048
+ # optional's string arguments to only this
2049
+ if explicit_arg is not None:
2050
+ arg_count = match_argument(action, 'A')
2051
+
2052
+ # if the action is a single-dash option and takes no
2053
+ # arguments, try to parse more single-dash options out
2054
+ # of the tail of the option string
2055
+ chars = self.prefix_chars
2056
+ if (
2057
+ arg_count == 0
2058
+ and option_string[1] not in chars
2059
+ and explicit_arg != ''
2060
+ ):
2061
+ if sep or explicit_arg[0] in chars:
2062
+ msg = _('ignored explicit argument %r')
2063
+ raise ArgumentError(action, msg % explicit_arg)
2064
+ action_tuples.append((action, [], option_string))
2065
+ char = option_string[0]
2066
+ option_string = char + explicit_arg[0]
2067
+ optionals_map = self._option_string_actions
2068
+ if option_string in optionals_map:
2069
+ action = optionals_map[option_string]
2070
+ explicit_arg = explicit_arg[1:]
2071
+ if not explicit_arg:
2072
+ sep = explicit_arg = None
2073
+ elif explicit_arg[0] == '=':
2074
+ sep = '='
2075
+ explicit_arg = explicit_arg[1:]
2076
+ else:
2077
+ sep = ''
2078
+ else:
2079
+ extras.append(char + explicit_arg)
2080
+ extras_pattern.append('O')
2081
+ stop = start_index + 1
2082
+ break
2083
+ # if the action expect exactly one argument, we've
2084
+ # successfully matched the option; exit the loop
2085
+ elif arg_count == 1:
2086
+ stop = start_index + 1
2087
+ args = [explicit_arg]
2088
+ action_tuples.append((action, args, option_string))
2089
+ break
2090
+
2091
+ # error if a double-dash option did not use the
2092
+ # explicit argument
2093
+ else:
2094
+ msg = _('ignored explicit argument %r')
2095
+ raise ArgumentError(action, msg % explicit_arg)
2096
+
2097
+ # if there is no explicit argument, try to match the
2098
+ # optional's string arguments with the following strings
2099
+ # if successful, exit the loop
2100
+ else:
2101
+ start = start_index + 1
2102
+ selected_patterns = arg_strings_pattern[start:]
2103
+ arg_count = match_argument(action, selected_patterns)
2104
+ stop = start + arg_count
2105
+ args = arg_strings[start:stop]
2106
+ action_tuples.append((action, args, option_string))
2107
+ break
2108
+
2109
+ # add the Optional to the list and return the index at which
2110
+ # the Optional's string args stopped
2111
+ assert action_tuples
2112
+ for action, args, option_string in action_tuples:
2113
+ take_action(action, args, option_string)
2114
+ return stop
2115
+
2116
+ # the list of Positionals left to be parsed; this is modified
2117
+ # by consume_positionals()
2118
+ positionals = self._get_positional_actions()
2119
+
2120
+ # function to convert arg_strings into positional actions
2121
+ def consume_positionals(start_index):
2122
+ # match as many Positionals as possible
2123
+ match_partial = self._match_arguments_partial
2124
+ selected_pattern = arg_strings_pattern[start_index:]
2125
+ arg_counts = match_partial(positionals, selected_pattern)
2126
+
2127
+ # slice off the appropriate arg strings for each Positional
2128
+ # and add the Positional and its args to the list
2129
+ for action, arg_count in zip(positionals, arg_counts):
2130
+ args = arg_strings[start_index: start_index + arg_count]
2131
+ # Strip out the first '--' if it is not in REMAINDER arg.
2132
+ if action.nargs == PARSER:
2133
+ if arg_strings_pattern[start_index] == '-':
2134
+ assert args[0] == '--'
2135
+ args.remove('--')
2136
+ elif action.nargs != REMAINDER:
2137
+ if (arg_strings_pattern.find('-', start_index,
2138
+ start_index + arg_count) >= 0):
2139
+ args.remove('--')
2140
+ start_index += arg_count
2141
+ take_action(action, args)
2142
+
2143
+ # slice off the Positionals that we just parsed and return the
2144
+ # index at which the Positionals' string args stopped
2145
+ positionals[:] = positionals[len(arg_counts):]
2146
+ return start_index
2147
+
2148
+ # consume Positionals and Optionals alternately, until we have
2149
+ # passed the last option string
2150
+ extras = []
2151
+ extras_pattern = []
2152
+ start_index = 0
2153
+ if option_string_indices:
2154
+ max_option_string_index = max(option_string_indices)
2155
+ else:
2156
+ max_option_string_index = -1
2157
+ while start_index <= max_option_string_index:
2158
+
2159
+ # consume any Positionals preceding the next option
2160
+ next_option_string_index = min([
2161
+ index
2162
+ for index in option_string_indices
2163
+ if index >= start_index])
2164
+ if not intermixed and start_index != next_option_string_index:
2165
+ positionals_end_index = consume_positionals(start_index)
2166
+
2167
+ # only try to parse the next optional if we didn't consume
2168
+ # the option string during the positionals parsing
2169
+ if positionals_end_index > start_index:
2170
+ start_index = positionals_end_index
2171
+ continue
2172
+ else:
2173
+ start_index = positionals_end_index
2174
+
2175
+ # if we consumed all the positionals we could and we're not
2176
+ # at the index of an option string, there were extra arguments
2177
+ if start_index not in option_string_indices:
2178
+ strings = arg_strings[start_index:next_option_string_index]
2179
+ extras.extend(strings)
2180
+ extras_pattern.extend(arg_strings_pattern[start_index:next_option_string_index])
2181
+ start_index = next_option_string_index
2182
+
2183
+ # consume the next optional and any arguments for it
2184
+ start_index = consume_optional(start_index)
2185
+
2186
+ if not intermixed:
2187
+ # consume any positionals following the last Optional
2188
+ stop_index = consume_positionals(start_index)
2189
+
2190
+ # if we didn't consume all the argument strings, there were extras
2191
+ extras.extend(arg_strings[stop_index:])
2192
+ else:
2193
+ extras.extend(arg_strings[start_index:])
2194
+ extras_pattern.extend(arg_strings_pattern[start_index:])
2195
+ extras_pattern = ''.join(extras_pattern)
2196
+ assert len(extras_pattern) == len(extras)
2197
+ # consume all positionals
2198
+ arg_strings = [s for s, c in zip(extras, extras_pattern) if c != 'O']
2199
+ arg_strings_pattern = extras_pattern.replace('O', '')
2200
+ stop_index = consume_positionals(0)
2201
+ # leave unknown optionals and non-consumed positionals in extras
2202
+ for i, c in enumerate(extras_pattern):
2203
+ if not stop_index:
2204
+ break
2205
+ if c != 'O':
2206
+ stop_index -= 1
2207
+ extras[i] = None
2208
+ extras = [s for s in extras if s is not None]
2209
+
2210
+ # make sure all required actions were present and also convert
2211
+ # action defaults which were not given as arguments
2212
+ required_actions = []
2213
+ for action in self._actions:
2214
+ if action not in seen_actions:
2215
+ if action.required:
2216
+ required_actions.append(_get_action_name(action))
2217
+ else:
2218
+ # Convert action default now instead of doing it before
2219
+ # parsing arguments to avoid calling convert functions
2220
+ # twice (which may fail) if the argument was given, but
2221
+ # only if it was defined already in the namespace
2222
+ if (action.default is not None and
2223
+ isinstance(action.default, str) and
2224
+ hasattr(namespace, action.dest) and
2225
+ action.default is getattr(namespace, action.dest)):
2226
+ setattr(namespace, action.dest,
2227
+ self._get_value(action, action.default))
2228
+
2229
+ if required_actions:
2230
+ raise ArgumentError(None, _('the following arguments are required: %s') %
2231
+ ', '.join(required_actions))
2232
+
2233
+ # make sure all required groups had one option present
2234
+ for group in self._mutually_exclusive_groups:
2235
+ if group.required:
2236
+ for action in group._group_actions:
2237
+ if action in seen_non_default_actions:
2238
+ break
2239
+
2240
+ # if no actions were used, report the error
2241
+ else:
2242
+ names = [_get_action_name(action)
2243
+ for action in group._group_actions
2244
+ if action.help is not SUPPRESS]
2245
+ msg = _('one of the arguments %s is required')
2246
+ raise ArgumentError(None, msg % ' '.join(names))
2247
+
2248
+ # return the updated namespace and the extra arguments
2249
+ return namespace, extras
2250
+
2251
+ def _read_args_from_files(self, arg_strings):
2252
+ # expand arguments referencing files
2253
+ new_arg_strings = []
2254
+ for arg_string in arg_strings:
2255
+
2256
+ # for regular arguments, just add them back into the list
2257
+ if not arg_string or arg_string[0] not in self.fromfile_prefix_chars:
2258
+ new_arg_strings.append(arg_string)
2259
+
2260
+ # replace arguments referencing files with the file content
2261
+ else:
2262
+ try:
2263
+ with open(arg_string[1:],
2264
+ encoding=_sys.getfilesystemencoding(),
2265
+ errors=_sys.getfilesystemencodeerrors()) as args_file:
2266
+ arg_strings = []
2267
+ for arg_line in args_file.read().splitlines():
2268
+ for arg in self.convert_arg_line_to_args(arg_line):
2269
+ arg_strings.append(arg)
2270
+ arg_strings = self._read_args_from_files(arg_strings)
2271
+ new_arg_strings.extend(arg_strings)
2272
+ except OSError as err:
2273
+ raise ArgumentError(None, str(err))
2274
+
2275
+ # return the modified argument list
2276
+ return new_arg_strings
2277
+
2278
+ def convert_arg_line_to_args(self, arg_line):
2279
+ return [arg_line]
2280
+
2281
+ def _match_argument(self, action, arg_strings_pattern):
2282
+ # match the pattern for this action to the arg strings
2283
+ nargs_pattern = self._get_nargs_pattern(action)
2284
+ match = _re.match(nargs_pattern, arg_strings_pattern)
2285
+
2286
+ # raise an exception if we weren't able to find a match
2287
+ if match is None:
2288
+ nargs_errors = {
2289
+ None: _('expected one argument'),
2290
+ OPTIONAL: _('expected at most one argument'),
2291
+ ONE_OR_MORE: _('expected at least one argument'),
2292
+ }
2293
+ msg = nargs_errors.get(action.nargs)
2294
+ if msg is None:
2295
+ msg = ngettext('expected %s argument',
2296
+ 'expected %s arguments',
2297
+ action.nargs) % action.nargs
2298
+ raise ArgumentError(action, msg)
2299
+
2300
+ # return the number of arguments matched
2301
+ return len(match.group(1))
2302
+
2303
+ def _match_arguments_partial(self, actions, arg_strings_pattern):
2304
+ # progressively shorten the actions list by slicing off the
2305
+ # final actions until we find a match
2306
+ for i in range(len(actions), 0, -1):
2307
+ actions_slice = actions[:i]
2308
+ pattern = ''.join([self._get_nargs_pattern(action)
2309
+ for action in actions_slice])
2310
+ match = _re.match(pattern, arg_strings_pattern)
2311
+ if match is not None:
2312
+ result = [len(string) for string in match.groups()]
2313
+ if (match.end() < len(arg_strings_pattern)
2314
+ and arg_strings_pattern[match.end()] == 'O'):
2315
+ while result and not result[-1]:
2316
+ del result[-1]
2317
+ return result
2318
+ return []
2319
+
2320
+ def _parse_optional(self, arg_string):
2321
+ # if it's an empty string, it was meant to be a positional
2322
+ if not arg_string:
2323
+ return None
2324
+
2325
+ # if it doesn't start with a prefix, it was meant to be positional
2326
+ if not arg_string[0] in self.prefix_chars:
2327
+ return None
2328
+
2329
+ # if the option string is present in the parser, return the action
2330
+ if arg_string in self._option_string_actions:
2331
+ action = self._option_string_actions[arg_string]
2332
+ return [(action, arg_string, None, None)]
2333
+
2334
+ # if it's just a single character, it was meant to be positional
2335
+ if len(arg_string) == 1:
2336
+ return None
2337
+
2338
+ # if the option string before the "=" is present, return the action
2339
+ option_string, sep, explicit_arg = arg_string.partition('=')
2340
+ if sep and option_string in self._option_string_actions:
2341
+ action = self._option_string_actions[option_string]
2342
+ return [(action, option_string, sep, explicit_arg)]
2343
+
2344
+ # search through all possible prefixes of the option string
2345
+ # and all actions in the parser for possible interpretations
2346
+ option_tuples = self._get_option_tuples(arg_string)
2347
+
2348
+ if option_tuples:
2349
+ return option_tuples
2350
+
2351
+ # if it was not found as an option, but it looks like a negative
2352
+ # number, it was meant to be positional
2353
+ # unless there are negative-number-like options
2354
+ if self._negative_number_matcher.match(arg_string):
2355
+ if not self._has_negative_number_optionals:
2356
+ return None
2357
+
2358
+ # if it contains a space, it was meant to be a positional
2359
+ if ' ' in arg_string:
2360
+ return None
2361
+
2362
+ # it was meant to be an optional but there is no such option
2363
+ # in this parser (though it might be a valid option in a subparser)
2364
+ return [(None, arg_string, None, None)]
2365
+
2366
+ def _get_option_tuples(self, option_string):
2367
+ result = []
2368
+
2369
+ # option strings starting with two prefix characters are only
2370
+ # split at the '='
2371
+ chars = self.prefix_chars
2372
+ if option_string[0] in chars and option_string[1] in chars:
2373
+ if self.allow_abbrev:
2374
+ option_prefix, sep, explicit_arg = option_string.partition('=')
2375
+ if not sep:
2376
+ sep = explicit_arg = None
2377
+ for option_string in self._option_string_actions:
2378
+ if option_string.startswith(option_prefix):
2379
+ action = self._option_string_actions[option_string]
2380
+ tup = action, option_string, sep, explicit_arg
2381
+ result.append(tup)
2382
+
2383
+ # single character options can be concatenated with their arguments
2384
+ # but multiple character options always have to have their argument
2385
+ # separate
2386
+ elif option_string[0] in chars and option_string[1] not in chars:
2387
+ option_prefix, sep, explicit_arg = option_string.partition('=')
2388
+ if not sep:
2389
+ sep = explicit_arg = None
2390
+ short_option_prefix = option_string[:2]
2391
+ short_explicit_arg = option_string[2:]
2392
+
2393
+ for option_string in self._option_string_actions:
2394
+ if option_string == short_option_prefix:
2395
+ action = self._option_string_actions[option_string]
2396
+ tup = action, option_string, '', short_explicit_arg
2397
+ result.append(tup)
2398
+ elif self.allow_abbrev and option_string.startswith(option_prefix):
2399
+ action = self._option_string_actions[option_string]
2400
+ tup = action, option_string, sep, explicit_arg
2401
+ result.append(tup)
2402
+
2403
+ # shouldn't ever get here
2404
+ else:
2405
+ raise ArgumentError(None, _('unexpected option string: %s') % option_string)
2406
+
2407
+ # return the collected option tuples
2408
+ return result
2409
+
2410
+ def _get_nargs_pattern(self, action):
2411
+ # in all examples below, we have to allow for '--' args
2412
+ # which are represented as '-' in the pattern
2413
+ nargs = action.nargs
2414
+ # if this is an optional action, -- is not allowed
2415
+ option = action.option_strings
2416
+
2417
+ # the default (None) is assumed to be a single argument
2418
+ if nargs is None:
2419
+ nargs_pattern = '([A])' if option else '(-*A-*)'
2420
+
2421
+ # allow zero or one arguments
2422
+ elif nargs == OPTIONAL:
2423
+ nargs_pattern = '(A?)' if option else '(-*A?-*)'
2424
+
2425
+ # allow zero or more arguments
2426
+ elif nargs == ZERO_OR_MORE:
2427
+ nargs_pattern = '(A*)' if option else '(-*[A-]*)'
2428
+
2429
+ # allow one or more arguments
2430
+ elif nargs == ONE_OR_MORE:
2431
+ nargs_pattern = '(A+)' if option else '(-*A[A-]*)'
2432
+
2433
+ # allow any number of options or arguments
2434
+ elif nargs == REMAINDER:
2435
+ nargs_pattern = '([AO]*)' if option else '(.*)'
2436
+
2437
+ # allow one argument followed by any number of options or arguments
2438
+ elif nargs == PARSER:
2439
+ nargs_pattern = '(A[AO]*)' if option else '(-*A[-AO]*)'
2440
+
2441
+ # suppress action, like nargs=0
2442
+ elif nargs == SUPPRESS:
2443
+ nargs_pattern = '()' if option else '(-*)'
2444
+
2445
+ # all others should be integers
2446
+ else:
2447
+ nargs_pattern = '([AO]{%d})' % nargs if option else '((?:-*A){%d}-*)' % nargs
2448
+
2449
+ # return the pattern
2450
+ return nargs_pattern
2451
+
2452
+ # ========================
2453
+ # Alt command line argument parsing, allowing free intermix
2454
+ # ========================
2455
+
2456
+ def parse_intermixed_args(self, args=None, namespace=None):
2457
+ args, argv = self.parse_known_intermixed_args(args, namespace)
2458
+ if argv:
2459
+ msg = _('unrecognized arguments: %s') % ' '.join(argv)
2460
+ if self.exit_on_error:
2461
+ self.error(msg)
2462
+ else:
2463
+ raise ArgumentError(None, msg)
2464
+ return args
2465
+
2466
+ def parse_known_intermixed_args(self, args=None, namespace=None):
2467
+ # returns a namespace and list of extras
2468
+ #
2469
+ # positional can be freely intermixed with optionals. optionals are
2470
+ # first parsed with all positional arguments deactivated. The 'extras'
2471
+ # are then parsed. If the parser definition is incompatible with the
2472
+ # intermixed assumptions (e.g. use of REMAINDER, subparsers) a
2473
+ # TypeError is raised.
2474
+
2475
+ positionals = self._get_positional_actions()
2476
+ a = [action for action in positionals
2477
+ if action.nargs in [PARSER, REMAINDER]]
2478
+ if a:
2479
+ raise TypeError('parse_intermixed_args: positional arg'
2480
+ ' with nargs=%s'%a[0].nargs)
2481
+
2482
+ return self._parse_known_args2(args, namespace, intermixed=True)
2483
+
2484
+ # ========================
2485
+ # Value conversion methods
2486
+ # ========================
2487
+ def _get_values(self, action, arg_strings):
2488
+ # optional argument produces a default when not present
2489
+ if not arg_strings and action.nargs == OPTIONAL:
2490
+ if action.option_strings:
2491
+ value = action.const
2492
+ else:
2493
+ value = action.default
2494
+ if isinstance(value, str) and value is not SUPPRESS:
2495
+ value = self._get_value(action, value)
2496
+ self._check_value(action, value)
2497
+
2498
+ # when nargs='*' on a positional, if there were no command-line
2499
+ # args, use the default if it is anything other than None
2500
+ elif (not arg_strings and action.nargs == ZERO_OR_MORE and
2501
+ not action.option_strings):
2502
+ if action.default is not None:
2503
+ value = action.default
2504
+ self._check_value(action, value)
2505
+ else:
2506
+ # since arg_strings is always [] at this point
2507
+ # there is no need to use self._check_value(action, value)
2508
+ value = arg_strings
2509
+
2510
+ # single argument or optional argument produces a single value
2511
+ elif len(arg_strings) == 1 and action.nargs in [None, OPTIONAL]:
2512
+ arg_string, = arg_strings
2513
+ value = self._get_value(action, arg_string)
2514
+ self._check_value(action, value)
2515
+
2516
+ # REMAINDER arguments convert all values, checking none
2517
+ elif action.nargs == REMAINDER:
2518
+ value = [self._get_value(action, v) for v in arg_strings]
2519
+
2520
+ # PARSER arguments convert all values, but check only the first
2521
+ elif action.nargs == PARSER:
2522
+ value = [self._get_value(action, v) for v in arg_strings]
2523
+ self._check_value(action, value[0])
2524
+
2525
+ # SUPPRESS argument does not put anything in the namespace
2526
+ elif action.nargs == SUPPRESS:
2527
+ value = SUPPRESS
2528
+
2529
+ # all other types of nargs produce a list
2530
+ else:
2531
+ value = [self._get_value(action, v) for v in arg_strings]
2532
+ for v in value:
2533
+ self._check_value(action, v)
2534
+
2535
+ # return the converted value
2536
+ return value
2537
+
2538
+ def _get_value(self, action, arg_string):
2539
+ type_func = self._registry_get('type', action.type, action.type)
2540
+ if not callable(type_func):
2541
+ msg = _('%r is not callable')
2542
+ raise ArgumentError(action, msg % type_func)
2543
+
2544
+ # convert the value to the appropriate type
2545
+ try:
2546
+ result = type_func(arg_string)
2547
+
2548
+ # ArgumentTypeErrors indicate errors
2549
+ except ArgumentTypeError as err:
2550
+ msg = str(err)
2551
+ raise ArgumentError(action, msg)
2552
+
2553
+ # TypeErrors or ValueErrors also indicate errors
2554
+ except (TypeError, ValueError):
2555
+ name = getattr(action.type, '__name__', repr(action.type))
2556
+ args = {'type': name, 'value': arg_string}
2557
+ msg = _('invalid %(type)s value: %(value)r')
2558
+ raise ArgumentError(action, msg % args)
2559
+
2560
+ # return the converted value
2561
+ return result
2562
+
2563
+ def _check_value(self, action, value):
2564
+ # converted value must be one of the choices (if specified)
2565
+ choices = action.choices
2566
+ if choices is not None:
2567
+ if isinstance(choices, str):
2568
+ choices = iter(choices)
2569
+ if value not in choices:
2570
+ args = {'value': str(value),
2571
+ 'choices': ', '.join(map(str, action.choices))}
2572
+ msg = _('invalid choice: %(value)r (choose from %(choices)s)')
2573
+ raise ArgumentError(action, msg % args)
2574
+
2575
+ # =======================
2576
+ # Help-formatting methods
2577
+ # =======================
2578
+ def format_usage(self):
2579
+ formatter = self._get_formatter()
2580
+ formatter.add_usage(self.usage, self._actions,
2581
+ self._mutually_exclusive_groups)
2582
+ return formatter.format_help()
2583
+
2584
+ def format_help(self):
2585
+ formatter = self._get_formatter()
2586
+
2587
+ # usage
2588
+ formatter.add_usage(self.usage, self._actions,
2589
+ self._mutually_exclusive_groups)
2590
+
2591
+ # description
2592
+ formatter.add_text(self.description)
2593
+
2594
+ # positionals, optionals and user-defined groups
2595
+ for action_group in self._action_groups:
2596
+ formatter.start_section(action_group.title)
2597
+ formatter.add_text(action_group.description)
2598
+ formatter.add_arguments(action_group._group_actions)
2599
+ formatter.end_section()
2600
+
2601
+ # epilog
2602
+ formatter.add_text(self.epilog)
2603
+
2604
+ # determine help from format above
2605
+ return formatter.format_help()
2606
+
2607
+ def _get_formatter(self):
2608
+ return self.formatter_class(prog=self.prog)
2609
+
2610
+ # =====================
2611
+ # Help-printing methods
2612
+ # =====================
2613
+ def print_usage(self, file=None):
2614
+ if file is None:
2615
+ file = _sys.stdout
2616
+ self._print_message(self.format_usage(), file)
2617
+
2618
+ def print_help(self, file=None):
2619
+ if file is None:
2620
+ file = _sys.stdout
2621
+ self._print_message(self.format_help(), file)
2622
+
2623
+ def _print_message(self, message, file=None):
2624
+ if message:
2625
+ file = file or _sys.stderr
2626
+ try:
2627
+ file.write(message)
2628
+ except (AttributeError, OSError):
2629
+ pass
2630
+
2631
+ # ===============
2632
+ # Exiting methods
2633
+ # ===============
2634
+ def exit(self, status=0, message=None):
2635
+ if message:
2636
+ self._print_message(message, _sys.stderr)
2637
+ _sys.exit(status)
2638
+
2639
+ def error(self, message):
2640
+ """error(message: string)
2641
+
2642
+ Prints a usage message incorporating the message to stderr and
2643
+ exits.
2644
+
2645
+ If you override this in a subclass, it should not return -- it
2646
+ should either exit or raise an exception.
2647
+ """
2648
+ self.print_usage(_sys.stderr)
2649
+ args = {'prog': self.prog, 'message': message}
2650
+ self.exit(2, _('%(prog)s: error: %(message)s\n') % args)