@pairling/runtime-darwin-x64 0.1.0 → 0.2.1

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 (1239) hide show
  1. package/README.md +1 -1
  2. package/bin/pairling-connectd +0 -0
  3. package/manifest.json +9 -3
  4. package/package.json +3 -3
  5. package/python/bin/2to3-3.12 +7 -0
  6. package/python/bin/idle3.12 +7 -0
  7. package/python/bin/pip +8 -0
  8. package/python/bin/pip3 +8 -0
  9. package/python/bin/pip3.12 +8 -0
  10. package/python/bin/pydoc3.12 +7 -0
  11. package/python/bin/python3 +0 -0
  12. package/python/bin/python3.12 +0 -0
  13. package/python/bin/python3.12-config +76 -0
  14. package/python/include/python3.12/Python.h +109 -0
  15. package/python/include/python3.12/abstract.h +899 -0
  16. package/python/include/python3.12/bltinmodule.h +14 -0
  17. package/python/include/python3.12/boolobject.h +42 -0
  18. package/python/include/python3.12/bytearrayobject.h +44 -0
  19. package/python/include/python3.12/bytesobject.h +69 -0
  20. package/python/include/python3.12/ceval.h +168 -0
  21. package/python/include/python3.12/codecs.h +248 -0
  22. package/python/include/python3.12/compile.h +22 -0
  23. package/python/include/python3.12/complexobject.h +30 -0
  24. package/python/include/python3.12/cpython/abstract.h +206 -0
  25. package/python/include/python3.12/cpython/bytearrayobject.h +34 -0
  26. package/python/include/python3.12/cpython/bytesobject.h +133 -0
  27. package/python/include/python3.12/cpython/cellobject.h +44 -0
  28. package/python/include/python3.12/cpython/ceval.h +35 -0
  29. package/python/include/python3.12/cpython/classobject.h +71 -0
  30. package/python/include/python3.12/cpython/code.h +389 -0
  31. package/python/include/python3.12/cpython/compile.h +69 -0
  32. package/python/include/python3.12/cpython/complexobject.h +44 -0
  33. package/python/include/python3.12/cpython/context.h +78 -0
  34. package/python/include/python3.12/cpython/descrobject.h +64 -0
  35. package/python/include/python3.12/cpython/dictobject.h +118 -0
  36. package/python/include/python3.12/cpython/fileobject.h +19 -0
  37. package/python/include/python3.12/cpython/fileutils.h +8 -0
  38. package/python/include/python3.12/cpython/floatobject.h +27 -0
  39. package/python/include/python3.12/cpython/frameobject.h +29 -0
  40. package/python/include/python3.12/cpython/funcobject.h +190 -0
  41. package/python/include/python3.12/cpython/genobject.h +89 -0
  42. package/python/include/python3.12/cpython/import.h +46 -0
  43. package/python/include/python3.12/cpython/initconfig.h +256 -0
  44. package/python/include/python3.12/cpython/interpreteridobject.h +11 -0
  45. package/python/include/python3.12/cpython/listobject.h +47 -0
  46. package/python/include/python3.12/cpython/longintrepr.h +133 -0
  47. package/python/include/python3.12/cpython/longobject.h +100 -0
  48. package/python/include/python3.12/cpython/memoryobject.h +52 -0
  49. package/python/include/python3.12/cpython/methodobject.h +66 -0
  50. package/python/include/python3.12/cpython/modsupport.h +109 -0
  51. package/python/include/python3.12/cpython/object.h +575 -0
  52. package/python/include/python3.12/cpython/objimpl.h +95 -0
  53. package/python/include/python3.12/cpython/odictobject.h +43 -0
  54. package/python/include/python3.12/cpython/picklebufobject.h +31 -0
  55. package/python/include/python3.12/cpython/pthread_stubs.h +88 -0
  56. package/python/include/python3.12/cpython/pyctype.h +39 -0
  57. package/python/include/python3.12/cpython/pydebug.h +38 -0
  58. package/python/include/python3.12/cpython/pyerrors.h +178 -0
  59. package/python/include/python3.12/cpython/pyfpe.h +15 -0
  60. package/python/include/python3.12/cpython/pyframe.h +35 -0
  61. package/python/include/python3.12/cpython/pylifecycle.h +111 -0
  62. package/python/include/python3.12/cpython/pymem.h +98 -0
  63. package/python/include/python3.12/cpython/pystate.h +456 -0
  64. package/python/include/python3.12/cpython/pythonrun.h +121 -0
  65. package/python/include/python3.12/cpython/pythread.h +42 -0
  66. package/python/include/python3.12/cpython/pytime.h +331 -0
  67. package/python/include/python3.12/cpython/setobject.h +72 -0
  68. package/python/include/python3.12/cpython/sysmodule.h +16 -0
  69. package/python/include/python3.12/cpython/traceback.h +16 -0
  70. package/python/include/python3.12/cpython/tupleobject.h +39 -0
  71. package/python/include/python3.12/cpython/unicodeobject.h +976 -0
  72. package/python/include/python3.12/cpython/warnings.h +20 -0
  73. package/python/include/python3.12/cpython/weakrefobject.h +56 -0
  74. package/python/include/python3.12/datetime.h +267 -0
  75. package/python/include/python3.12/descrobject.h +100 -0
  76. package/python/include/python3.12/dictobject.h +97 -0
  77. package/python/include/python3.12/dynamic_annotations.h +499 -0
  78. package/python/include/python3.12/enumobject.h +17 -0
  79. package/python/include/python3.12/errcode.h +38 -0
  80. package/python/include/python3.12/exports.h +36 -0
  81. package/python/include/python3.12/fileobject.h +49 -0
  82. package/python/include/python3.12/fileutils.h +26 -0
  83. package/python/include/python3.12/floatobject.h +54 -0
  84. package/python/include/python3.12/frameobject.h +20 -0
  85. package/python/include/python3.12/genericaliasobject.h +14 -0
  86. package/python/include/python3.12/import.h +98 -0
  87. package/python/include/python3.12/internal/pycore_abstract.h +25 -0
  88. package/python/include/python3.12/internal/pycore_asdl.h +112 -0
  89. package/python/include/python3.12/internal/pycore_ast.h +922 -0
  90. package/python/include/python3.12/internal/pycore_ast_state.h +265 -0
  91. package/python/include/python3.12/internal/pycore_atexit.h +57 -0
  92. package/python/include/python3.12/internal/pycore_atomic.h +557 -0
  93. package/python/include/python3.12/internal/pycore_atomic_funcs.h +94 -0
  94. package/python/include/python3.12/internal/pycore_bitutils.h +186 -0
  95. package/python/include/python3.12/internal/pycore_blocks_output_buffer.h +317 -0
  96. package/python/include/python3.12/internal/pycore_bytes_methods.h +73 -0
  97. package/python/include/python3.12/internal/pycore_bytesobject.h +47 -0
  98. package/python/include/python3.12/internal/pycore_call.h +133 -0
  99. package/python/include/python3.12/internal/pycore_ceval.h +164 -0
  100. package/python/include/python3.12/internal/pycore_ceval_state.h +103 -0
  101. package/python/include/python3.12/internal/pycore_code.h +496 -0
  102. package/python/include/python3.12/internal/pycore_compile.h +118 -0
  103. package/python/include/python3.12/internal/pycore_condvar.h +99 -0
  104. package/python/include/python3.12/internal/pycore_context.h +71 -0
  105. package/python/include/python3.12/internal/pycore_descrobject.h +26 -0
  106. package/python/include/python3.12/internal/pycore_dict.h +199 -0
  107. package/python/include/python3.12/internal/pycore_dict_state.h +50 -0
  108. package/python/include/python3.12/internal/pycore_dtoa.h +69 -0
  109. package/python/include/python3.12/internal/pycore_emscripten_signal.h +25 -0
  110. package/python/include/python3.12/internal/pycore_exceptions.h +37 -0
  111. package/python/include/python3.12/internal/pycore_faulthandler.h +99 -0
  112. package/python/include/python3.12/internal/pycore_fileutils.h +292 -0
  113. package/python/include/python3.12/internal/pycore_fileutils_windows.h +98 -0
  114. package/python/include/python3.12/internal/pycore_floatobject.h +71 -0
  115. package/python/include/python3.12/internal/pycore_flowgraph.h +120 -0
  116. package/python/include/python3.12/internal/pycore_format.h +27 -0
  117. package/python/include/python3.12/internal/pycore_frame.h +283 -0
  118. package/python/include/python3.12/internal/pycore_function.h +26 -0
  119. package/python/include/python3.12/internal/pycore_gc.h +211 -0
  120. package/python/include/python3.12/internal/pycore_genobject.h +49 -0
  121. package/python/include/python3.12/internal/pycore_getopt.h +22 -0
  122. package/python/include/python3.12/internal/pycore_gil.h +50 -0
  123. package/python/include/python3.12/internal/pycore_global_objects.h +105 -0
  124. package/python/include/python3.12/internal/pycore_global_objects_fini_generated.h +1517 -0
  125. package/python/include/python3.12/internal/pycore_global_strings.h +777 -0
  126. package/python/include/python3.12/internal/pycore_hamt.h +134 -0
  127. package/python/include/python3.12/internal/pycore_hashtable.h +149 -0
  128. package/python/include/python3.12/internal/pycore_import.h +183 -0
  129. package/python/include/python3.12/internal/pycore_initconfig.h +179 -0
  130. package/python/include/python3.12/internal/pycore_instruments.h +106 -0
  131. package/python/include/python3.12/internal/pycore_interp.h +275 -0
  132. package/python/include/python3.12/internal/pycore_intrinsics.h +32 -0
  133. package/python/include/python3.12/internal/pycore_list.h +83 -0
  134. package/python/include/python3.12/internal/pycore_long.h +258 -0
  135. package/python/include/python3.12/internal/pycore_memoryobject.h +18 -0
  136. package/python/include/python3.12/internal/pycore_moduleobject.h +45 -0
  137. package/python/include/python3.12/internal/pycore_namespace.h +20 -0
  138. package/python/include/python3.12/internal/pycore_object.h +455 -0
  139. package/python/include/python3.12/internal/pycore_object_state.h +42 -0
  140. package/python/include/python3.12/internal/pycore_obmalloc.h +700 -0
  141. package/python/include/python3.12/internal/pycore_obmalloc_init.h +73 -0
  142. package/python/include/python3.12/internal/pycore_opcode.h +587 -0
  143. package/python/include/python3.12/internal/pycore_opcode_utils.h +92 -0
  144. package/python/include/python3.12/internal/pycore_parser.h +66 -0
  145. package/python/include/python3.12/internal/pycore_pathconfig.h +24 -0
  146. package/python/include/python3.12/internal/pycore_pyarena.h +64 -0
  147. package/python/include/python3.12/internal/pycore_pyerrors.h +129 -0
  148. package/python/include/python3.12/internal/pycore_pyhash.h +40 -0
  149. package/python/include/python3.12/internal/pycore_pylifecycle.h +99 -0
  150. package/python/include/python3.12/internal/pycore_pymath.h +205 -0
  151. package/python/include/python3.12/internal/pycore_pymem.h +98 -0
  152. package/python/include/python3.12/internal/pycore_pymem_init.h +85 -0
  153. package/python/include/python3.12/internal/pycore_pystate.h +180 -0
  154. package/python/include/python3.12/internal/pycore_pythread.h +81 -0
  155. package/python/include/python3.12/internal/pycore_range.h +21 -0
  156. package/python/include/python3.12/internal/pycore_runtime.h +235 -0
  157. package/python/include/python3.12/internal/pycore_runtime_init.h +188 -0
  158. package/python/include/python3.12/internal/pycore_runtime_init_generated.h +1511 -0
  159. package/python/include/python3.12/internal/pycore_signal.h +98 -0
  160. package/python/include/python3.12/internal/pycore_sliceobject.h +22 -0
  161. package/python/include/python3.12/internal/pycore_strhex.h +36 -0
  162. package/python/include/python3.12/internal/pycore_structseq.h +39 -0
  163. package/python/include/python3.12/internal/pycore_symtable.h +160 -0
  164. package/python/include/python3.12/internal/pycore_sysmodule.h +34 -0
  165. package/python/include/python3.12/internal/pycore_time.h +25 -0
  166. package/python/include/python3.12/internal/pycore_token.h +108 -0
  167. package/python/include/python3.12/internal/pycore_traceback.h +101 -0
  168. package/python/include/python3.12/internal/pycore_tracemalloc.h +123 -0
  169. package/python/include/python3.12/internal/pycore_tuple.h +79 -0
  170. package/python/include/python3.12/internal/pycore_typeobject.h +151 -0
  171. package/python/include/python3.12/internal/pycore_typevarobject.h +24 -0
  172. package/python/include/python3.12/internal/pycore_ucnhash.h +34 -0
  173. package/python/include/python3.12/internal/pycore_unicodeobject.h +86 -0
  174. package/python/include/python3.12/internal/pycore_unicodeobject_generated.h +2832 -0
  175. package/python/include/python3.12/internal/pycore_unionobject.h +23 -0
  176. package/python/include/python3.12/internal/pycore_warnings.h +29 -0
  177. package/python/include/python3.12/interpreteridobject.h +17 -0
  178. package/python/include/python3.12/intrcheck.h +30 -0
  179. package/python/include/python3.12/iterobject.h +27 -0
  180. package/python/include/python3.12/listobject.h +52 -0
  181. package/python/include/python3.12/longobject.h +108 -0
  182. package/python/include/python3.12/marshal.h +31 -0
  183. package/python/include/python3.12/memoryobject.h +34 -0
  184. package/python/include/python3.12/methodobject.h +132 -0
  185. package/python/include/python3.12/modsupport.h +168 -0
  186. package/python/include/python3.12/moduleobject.h +119 -0
  187. package/python/include/python3.12/object.h +993 -0
  188. package/python/include/python3.12/objimpl.h +234 -0
  189. package/python/include/python3.12/opcode.h +271 -0
  190. package/python/include/python3.12/osdefs.h +51 -0
  191. package/python/include/python3.12/osmodule.h +17 -0
  192. package/python/include/python3.12/patchlevel.h +35 -0
  193. package/python/include/python3.12/py_curses.h +99 -0
  194. package/python/include/python3.12/pybuffer.h +145 -0
  195. package/python/include/python3.12/pycapsule.h +59 -0
  196. package/python/include/python3.12/pyconfig.h +1943 -0
  197. package/python/include/python3.12/pydtrace.h +59 -0
  198. package/python/include/python3.12/pyerrors.h +337 -0
  199. package/python/include/python3.12/pyexpat.h +62 -0
  200. package/python/include/python3.12/pyframe.h +26 -0
  201. package/python/include/python3.12/pyhash.h +144 -0
  202. package/python/include/python3.12/pylifecycle.h +78 -0
  203. package/python/include/python3.12/pymacconfig.h +99 -0
  204. package/python/include/python3.12/pymacro.h +172 -0
  205. package/python/include/python3.12/pymath.h +62 -0
  206. package/python/include/python3.12/pymem.h +104 -0
  207. package/python/include/python3.12/pyport.h +782 -0
  208. package/python/include/python3.12/pystate.h +132 -0
  209. package/python/include/python3.12/pystats.h +110 -0
  210. package/python/include/python3.12/pystrcmp.h +23 -0
  211. package/python/include/python3.12/pystrtod.h +46 -0
  212. package/python/include/python3.12/pythonrun.h +49 -0
  213. package/python/include/python3.12/pythread.h +135 -0
  214. package/python/include/python3.12/pytypedefs.h +30 -0
  215. package/python/include/python3.12/rangeobject.h +27 -0
  216. package/python/include/python3.12/setobject.h +49 -0
  217. package/python/include/python3.12/sliceobject.h +65 -0
  218. package/python/include/python3.12/structmember.h +56 -0
  219. package/python/include/python3.12/structseq.h +49 -0
  220. package/python/include/python3.12/sysmodule.h +54 -0
  221. package/python/include/python3.12/traceback.h +26 -0
  222. package/python/include/python3.12/tracemalloc.h +77 -0
  223. package/python/include/python3.12/tupleobject.h +46 -0
  224. package/python/include/python3.12/typeslots.h +88 -0
  225. package/python/include/python3.12/unicodeobject.h +1020 -0
  226. package/python/include/python3.12/warnings.h +45 -0
  227. package/python/include/python3.12/weakrefobject.h +42 -0
  228. package/python/lib/libpython3.12.dylib +0 -0
  229. package/python/lib/python3.12/LICENSE.txt +279 -0
  230. package/python/lib/python3.12/__future__.py +147 -0
  231. package/python/lib/python3.12/__hello__.py +16 -0
  232. package/python/lib/python3.12/__phello__/__init__.py +7 -0
  233. package/python/lib/python3.12/__phello__/spam.py +7 -0
  234. package/python/lib/python3.12/_aix_support.py +108 -0
  235. package/python/lib/python3.12/_collections_abc.py +1173 -0
  236. package/python/lib/python3.12/_compat_pickle.py +252 -0
  237. package/python/lib/python3.12/_compression.py +162 -0
  238. package/python/lib/python3.12/_markupbase.py +396 -0
  239. package/python/lib/python3.12/_osx_support.py +579 -0
  240. package/python/lib/python3.12/_py_abc.py +147 -0
  241. package/python/lib/python3.12/_pydatetime.py +2643 -0
  242. package/python/lib/python3.12/_pydecimal.py +6339 -0
  243. package/python/lib/python3.12/_pyio.py +2698 -0
  244. package/python/lib/python3.12/_pylong.py +329 -0
  245. package/python/lib/python3.12/_sitebuiltins.py +103 -0
  246. package/python/lib/python3.12/_strptime.py +664 -0
  247. package/python/lib/python3.12/_sysconfigdata__darwin_darwin.py +984 -0
  248. package/python/lib/python3.12/_threading_local.py +242 -0
  249. package/python/lib/python3.12/_weakrefset.py +205 -0
  250. package/python/lib/python3.12/abc.py +188 -0
  251. package/python/lib/python3.12/aifc.py +984 -0
  252. package/python/lib/python3.12/antigravity.py +17 -0
  253. package/python/lib/python3.12/argparse.py +2650 -0
  254. package/python/lib/python3.12/ast.py +1840 -0
  255. package/python/lib/python3.12/asyncio/__init__.py +47 -0
  256. package/python/lib/python3.12/asyncio/__main__.py +128 -0
  257. package/python/lib/python3.12/asyncio/base_events.py +2024 -0
  258. package/python/lib/python3.12/asyncio/base_futures.py +67 -0
  259. package/python/lib/python3.12/asyncio/base_subprocess.py +285 -0
  260. package/python/lib/python3.12/asyncio/base_tasks.py +94 -0
  261. package/python/lib/python3.12/asyncio/constants.py +41 -0
  262. package/python/lib/python3.12/asyncio/coroutines.py +109 -0
  263. package/python/lib/python3.12/asyncio/events.py +868 -0
  264. package/python/lib/python3.12/asyncio/exceptions.py +62 -0
  265. package/python/lib/python3.12/asyncio/format_helpers.py +76 -0
  266. package/python/lib/python3.12/asyncio/futures.py +430 -0
  267. package/python/lib/python3.12/asyncio/locks.py +586 -0
  268. package/python/lib/python3.12/asyncio/log.py +7 -0
  269. package/python/lib/python3.12/asyncio/mixins.py +21 -0
  270. package/python/lib/python3.12/asyncio/proactor_events.py +897 -0
  271. package/python/lib/python3.12/asyncio/protocols.py +216 -0
  272. package/python/lib/python3.12/asyncio/queues.py +244 -0
  273. package/python/lib/python3.12/asyncio/runners.py +216 -0
  274. package/python/lib/python3.12/asyncio/selector_events.py +1324 -0
  275. package/python/lib/python3.12/asyncio/sslproto.py +929 -0
  276. package/python/lib/python3.12/asyncio/staggered.py +174 -0
  277. package/python/lib/python3.12/asyncio/streams.py +770 -0
  278. package/python/lib/python3.12/asyncio/subprocess.py +229 -0
  279. package/python/lib/python3.12/asyncio/taskgroups.py +268 -0
  280. package/python/lib/python3.12/asyncio/tasks.py +1065 -0
  281. package/python/lib/python3.12/asyncio/threads.py +25 -0
  282. package/python/lib/python3.12/asyncio/timeouts.py +168 -0
  283. package/python/lib/python3.12/asyncio/transports.py +335 -0
  284. package/python/lib/python3.12/asyncio/trsock.py +98 -0
  285. package/python/lib/python3.12/asyncio/unix_events.py +1500 -0
  286. package/python/lib/python3.12/asyncio/windows_events.py +901 -0
  287. package/python/lib/python3.12/asyncio/windows_utils.py +173 -0
  288. package/python/lib/python3.12/base64.py +586 -0
  289. package/python/lib/python3.12/bdb.py +920 -0
  290. package/python/lib/python3.12/bisect.py +118 -0
  291. package/python/lib/python3.12/bz2.py +344 -0
  292. package/python/lib/python3.12/cProfile.py +195 -0
  293. package/python/lib/python3.12/calendar.py +808 -0
  294. package/python/lib/python3.12/cgi.py +1014 -0
  295. package/python/lib/python3.12/cgitb.py +332 -0
  296. package/python/lib/python3.12/chunk.py +173 -0
  297. package/python/lib/python3.12/cmd.py +401 -0
  298. package/python/lib/python3.12/code.py +324 -0
  299. package/python/lib/python3.12/codecs.py +1129 -0
  300. package/python/lib/python3.12/codeop.py +161 -0
  301. package/python/lib/python3.12/collections/__init__.py +1592 -0
  302. package/python/lib/python3.12/collections/abc.py +3 -0
  303. package/python/lib/python3.12/colorsys.py +166 -0
  304. package/python/lib/python3.12/compileall.py +469 -0
  305. package/python/lib/python3.12/concurrent/__init__.py +1 -0
  306. package/python/lib/python3.12/concurrent/futures/__init__.py +54 -0
  307. package/python/lib/python3.12/concurrent/futures/_base.py +654 -0
  308. package/python/lib/python3.12/concurrent/futures/process.py +876 -0
  309. package/python/lib/python3.12/concurrent/futures/thread.py +240 -0
  310. package/python/lib/python3.12/config-3.12-darwin/Makefile +3224 -0
  311. package/python/lib/python3.12/config-3.12-darwin/Setup +303 -0
  312. package/python/lib/python3.12/config-3.12-darwin/Setup.bootstrap +36 -0
  313. package/python/lib/python3.12/config-3.12-darwin/Setup.local +90 -0
  314. package/python/lib/python3.12/config-3.12-darwin/Setup.stdlib +183 -0
  315. package/python/lib/python3.12/config-3.12-darwin/config.c +246 -0
  316. package/python/lib/python3.12/config-3.12-darwin/config.c.in +71 -0
  317. package/python/lib/python3.12/config-3.12-darwin/install-sh +541 -0
  318. package/python/lib/python3.12/config-3.12-darwin/makesetup +353 -0
  319. package/python/lib/python3.12/config-3.12-darwin/python-config.py +76 -0
  320. package/python/lib/python3.12/config-3.12-darwin/python.o +0 -0
  321. package/python/lib/python3.12/configparser.py +1333 -0
  322. package/python/lib/python3.12/contextlib.py +800 -0
  323. package/python/lib/python3.12/contextvars.py +4 -0
  324. package/python/lib/python3.12/copy.py +292 -0
  325. package/python/lib/python3.12/copyreg.py +217 -0
  326. package/python/lib/python3.12/crypt.py +124 -0
  327. package/python/lib/python3.12/csv.py +451 -0
  328. package/python/lib/python3.12/ctypes/__init__.py +582 -0
  329. package/python/lib/python3.12/ctypes/_aix.py +327 -0
  330. package/python/lib/python3.12/ctypes/_endian.py +78 -0
  331. package/python/lib/python3.12/ctypes/macholib/README.ctypes +7 -0
  332. package/python/lib/python3.12/ctypes/macholib/__init__.py +9 -0
  333. package/python/lib/python3.12/ctypes/macholib/dyld.py +165 -0
  334. package/python/lib/python3.12/ctypes/macholib/dylib.py +42 -0
  335. package/python/lib/python3.12/ctypes/macholib/fetch_macholib +2 -0
  336. package/python/lib/python3.12/ctypes/macholib/fetch_macholib.bat +1 -0
  337. package/python/lib/python3.12/ctypes/macholib/framework.py +42 -0
  338. package/python/lib/python3.12/ctypes/util.py +379 -0
  339. package/python/lib/python3.12/ctypes/wintypes.py +202 -0
  340. package/python/lib/python3.12/curses/__init__.py +101 -0
  341. package/python/lib/python3.12/curses/ascii.py +99 -0
  342. package/python/lib/python3.12/curses/has_key.py +192 -0
  343. package/python/lib/python3.12/curses/panel.py +6 -0
  344. package/python/lib/python3.12/curses/textpad.py +204 -0
  345. package/python/lib/python3.12/dataclasses.py +1588 -0
  346. package/python/lib/python3.12/datetime.py +9 -0
  347. package/python/lib/python3.12/dbm/__init__.py +190 -0
  348. package/python/lib/python3.12/dbm/dumb.py +317 -0
  349. package/python/lib/python3.12/dbm/gnu.py +3 -0
  350. package/python/lib/python3.12/dbm/ndbm.py +3 -0
  351. package/python/lib/python3.12/decimal.py +108 -0
  352. package/python/lib/python3.12/difflib.py +2056 -0
  353. package/python/lib/python3.12/dis.py +805 -0
  354. package/python/lib/python3.12/doctest.py +2845 -0
  355. package/python/lib/python3.12/email/__init__.py +61 -0
  356. package/python/lib/python3.12/email/_encoded_words.py +233 -0
  357. package/python/lib/python3.12/email/_header_value_parser.py +3108 -0
  358. package/python/lib/python3.12/email/_parseaddr.py +557 -0
  359. package/python/lib/python3.12/email/_policybase.py +382 -0
  360. package/python/lib/python3.12/email/architecture.rst +216 -0
  361. package/python/lib/python3.12/email/base64mime.py +115 -0
  362. package/python/lib/python3.12/email/charset.py +398 -0
  363. package/python/lib/python3.12/email/contentmanager.py +251 -0
  364. package/python/lib/python3.12/email/encoders.py +65 -0
  365. package/python/lib/python3.12/email/errors.py +117 -0
  366. package/python/lib/python3.12/email/feedparser.py +534 -0
  367. package/python/lib/python3.12/email/generator.py +530 -0
  368. package/python/lib/python3.12/email/header.py +573 -0
  369. package/python/lib/python3.12/email/headerregistry.py +604 -0
  370. package/python/lib/python3.12/email/iterators.py +68 -0
  371. package/python/lib/python3.12/email/message.py +1215 -0
  372. package/python/lib/python3.12/email/mime/__init__.py +0 -0
  373. package/python/lib/python3.12/email/mime/application.py +37 -0
  374. package/python/lib/python3.12/email/mime/audio.py +100 -0
  375. package/python/lib/python3.12/email/mime/base.py +29 -0
  376. package/python/lib/python3.12/email/mime/image.py +152 -0
  377. package/python/lib/python3.12/email/mime/message.py +33 -0
  378. package/python/lib/python3.12/email/mime/multipart.py +47 -0
  379. package/python/lib/python3.12/email/mime/nonmultipart.py +21 -0
  380. package/python/lib/python3.12/email/mime/text.py +40 -0
  381. package/python/lib/python3.12/email/parser.py +127 -0
  382. package/python/lib/python3.12/email/policy.py +232 -0
  383. package/python/lib/python3.12/email/quoprimime.py +300 -0
  384. package/python/lib/python3.12/email/utils.py +486 -0
  385. package/python/lib/python3.12/encodings/__init__.py +174 -0
  386. package/python/lib/python3.12/encodings/aliases.py +551 -0
  387. package/python/lib/python3.12/encodings/ascii.py +50 -0
  388. package/python/lib/python3.12/encodings/base64_codec.py +55 -0
  389. package/python/lib/python3.12/encodings/big5.py +39 -0
  390. package/python/lib/python3.12/encodings/big5hkscs.py +39 -0
  391. package/python/lib/python3.12/encodings/bz2_codec.py +78 -0
  392. package/python/lib/python3.12/encodings/charmap.py +69 -0
  393. package/python/lib/python3.12/encodings/cp037.py +307 -0
  394. package/python/lib/python3.12/encodings/cp1006.py +307 -0
  395. package/python/lib/python3.12/encodings/cp1026.py +307 -0
  396. package/python/lib/python3.12/encodings/cp1125.py +698 -0
  397. package/python/lib/python3.12/encodings/cp1140.py +307 -0
  398. package/python/lib/python3.12/encodings/cp1250.py +307 -0
  399. package/python/lib/python3.12/encodings/cp1251.py +307 -0
  400. package/python/lib/python3.12/encodings/cp1252.py +307 -0
  401. package/python/lib/python3.12/encodings/cp1253.py +307 -0
  402. package/python/lib/python3.12/encodings/cp1254.py +307 -0
  403. package/python/lib/python3.12/encodings/cp1255.py +307 -0
  404. package/python/lib/python3.12/encodings/cp1256.py +307 -0
  405. package/python/lib/python3.12/encodings/cp1257.py +307 -0
  406. package/python/lib/python3.12/encodings/cp1258.py +307 -0
  407. package/python/lib/python3.12/encodings/cp273.py +307 -0
  408. package/python/lib/python3.12/encodings/cp424.py +307 -0
  409. package/python/lib/python3.12/encodings/cp437.py +698 -0
  410. package/python/lib/python3.12/encodings/cp500.py +307 -0
  411. package/python/lib/python3.12/encodings/cp720.py +309 -0
  412. package/python/lib/python3.12/encodings/cp737.py +698 -0
  413. package/python/lib/python3.12/encodings/cp775.py +697 -0
  414. package/python/lib/python3.12/encodings/cp850.py +698 -0
  415. package/python/lib/python3.12/encodings/cp852.py +698 -0
  416. package/python/lib/python3.12/encodings/cp855.py +698 -0
  417. package/python/lib/python3.12/encodings/cp856.py +307 -0
  418. package/python/lib/python3.12/encodings/cp857.py +694 -0
  419. package/python/lib/python3.12/encodings/cp858.py +698 -0
  420. package/python/lib/python3.12/encodings/cp860.py +698 -0
  421. package/python/lib/python3.12/encodings/cp861.py +698 -0
  422. package/python/lib/python3.12/encodings/cp862.py +698 -0
  423. package/python/lib/python3.12/encodings/cp863.py +698 -0
  424. package/python/lib/python3.12/encodings/cp864.py +690 -0
  425. package/python/lib/python3.12/encodings/cp865.py +698 -0
  426. package/python/lib/python3.12/encodings/cp866.py +698 -0
  427. package/python/lib/python3.12/encodings/cp869.py +689 -0
  428. package/python/lib/python3.12/encodings/cp874.py +307 -0
  429. package/python/lib/python3.12/encodings/cp875.py +307 -0
  430. package/python/lib/python3.12/encodings/cp932.py +39 -0
  431. package/python/lib/python3.12/encodings/cp949.py +39 -0
  432. package/python/lib/python3.12/encodings/cp950.py +39 -0
  433. package/python/lib/python3.12/encodings/euc_jis_2004.py +39 -0
  434. package/python/lib/python3.12/encodings/euc_jisx0213.py +39 -0
  435. package/python/lib/python3.12/encodings/euc_jp.py +39 -0
  436. package/python/lib/python3.12/encodings/euc_kr.py +39 -0
  437. package/python/lib/python3.12/encodings/gb18030.py +39 -0
  438. package/python/lib/python3.12/encodings/gb2312.py +39 -0
  439. package/python/lib/python3.12/encodings/gbk.py +39 -0
  440. package/python/lib/python3.12/encodings/hex_codec.py +55 -0
  441. package/python/lib/python3.12/encodings/hp_roman8.py +314 -0
  442. package/python/lib/python3.12/encodings/hz.py +39 -0
  443. package/python/lib/python3.12/encodings/idna.py +317 -0
  444. package/python/lib/python3.12/encodings/iso2022_jp.py +39 -0
  445. package/python/lib/python3.12/encodings/iso2022_jp_1.py +39 -0
  446. package/python/lib/python3.12/encodings/iso2022_jp_2.py +39 -0
  447. package/python/lib/python3.12/encodings/iso2022_jp_2004.py +39 -0
  448. package/python/lib/python3.12/encodings/iso2022_jp_3.py +39 -0
  449. package/python/lib/python3.12/encodings/iso2022_jp_ext.py +39 -0
  450. package/python/lib/python3.12/encodings/iso2022_kr.py +39 -0
  451. package/python/lib/python3.12/encodings/iso8859_1.py +307 -0
  452. package/python/lib/python3.12/encodings/iso8859_10.py +307 -0
  453. package/python/lib/python3.12/encodings/iso8859_11.py +307 -0
  454. package/python/lib/python3.12/encodings/iso8859_13.py +307 -0
  455. package/python/lib/python3.12/encodings/iso8859_14.py +307 -0
  456. package/python/lib/python3.12/encodings/iso8859_15.py +307 -0
  457. package/python/lib/python3.12/encodings/iso8859_16.py +307 -0
  458. package/python/lib/python3.12/encodings/iso8859_2.py +307 -0
  459. package/python/lib/python3.12/encodings/iso8859_3.py +307 -0
  460. package/python/lib/python3.12/encodings/iso8859_4.py +307 -0
  461. package/python/lib/python3.12/encodings/iso8859_5.py +307 -0
  462. package/python/lib/python3.12/encodings/iso8859_6.py +307 -0
  463. package/python/lib/python3.12/encodings/iso8859_7.py +307 -0
  464. package/python/lib/python3.12/encodings/iso8859_8.py +307 -0
  465. package/python/lib/python3.12/encodings/iso8859_9.py +307 -0
  466. package/python/lib/python3.12/encodings/johab.py +39 -0
  467. package/python/lib/python3.12/encodings/koi8_r.py +307 -0
  468. package/python/lib/python3.12/encodings/koi8_t.py +308 -0
  469. package/python/lib/python3.12/encodings/koi8_u.py +307 -0
  470. package/python/lib/python3.12/encodings/kz1048.py +307 -0
  471. package/python/lib/python3.12/encodings/latin_1.py +50 -0
  472. package/python/lib/python3.12/encodings/mac_arabic.py +698 -0
  473. package/python/lib/python3.12/encodings/mac_croatian.py +307 -0
  474. package/python/lib/python3.12/encodings/mac_cyrillic.py +307 -0
  475. package/python/lib/python3.12/encodings/mac_farsi.py +307 -0
  476. package/python/lib/python3.12/encodings/mac_greek.py +307 -0
  477. package/python/lib/python3.12/encodings/mac_iceland.py +307 -0
  478. package/python/lib/python3.12/encodings/mac_latin2.py +312 -0
  479. package/python/lib/python3.12/encodings/mac_roman.py +307 -0
  480. package/python/lib/python3.12/encodings/mac_romanian.py +307 -0
  481. package/python/lib/python3.12/encodings/mac_turkish.py +307 -0
  482. package/python/lib/python3.12/encodings/mbcs.py +47 -0
  483. package/python/lib/python3.12/encodings/oem.py +41 -0
  484. package/python/lib/python3.12/encodings/palmos.py +308 -0
  485. package/python/lib/python3.12/encodings/ptcp154.py +312 -0
  486. package/python/lib/python3.12/encodings/punycode.py +237 -0
  487. package/python/lib/python3.12/encodings/quopri_codec.py +56 -0
  488. package/python/lib/python3.12/encodings/raw_unicode_escape.py +46 -0
  489. package/python/lib/python3.12/encodings/rot_13.py +113 -0
  490. package/python/lib/python3.12/encodings/shift_jis.py +39 -0
  491. package/python/lib/python3.12/encodings/shift_jis_2004.py +39 -0
  492. package/python/lib/python3.12/encodings/shift_jisx0213.py +39 -0
  493. package/python/lib/python3.12/encodings/tis_620.py +307 -0
  494. package/python/lib/python3.12/encodings/undefined.py +49 -0
  495. package/python/lib/python3.12/encodings/unicode_escape.py +46 -0
  496. package/python/lib/python3.12/encodings/utf_16.py +155 -0
  497. package/python/lib/python3.12/encodings/utf_16_be.py +42 -0
  498. package/python/lib/python3.12/encodings/utf_16_le.py +42 -0
  499. package/python/lib/python3.12/encodings/utf_32.py +150 -0
  500. package/python/lib/python3.12/encodings/utf_32_be.py +37 -0
  501. package/python/lib/python3.12/encodings/utf_32_le.py +37 -0
  502. package/python/lib/python3.12/encodings/utf_7.py +38 -0
  503. package/python/lib/python3.12/encodings/utf_8.py +42 -0
  504. package/python/lib/python3.12/encodings/utf_8_sig.py +130 -0
  505. package/python/lib/python3.12/encodings/uu_codec.py +103 -0
  506. package/python/lib/python3.12/encodings/zlib_codec.py +77 -0
  507. package/python/lib/python3.12/ensurepip/__init__.py +291 -0
  508. package/python/lib/python3.12/ensurepip/__main__.py +5 -0
  509. package/python/lib/python3.12/ensurepip/_bundled/pip-25.0.1-py3-none-any.whl +0 -0
  510. package/python/lib/python3.12/ensurepip/_uninstall.py +31 -0
  511. package/python/lib/python3.12/enum.py +2108 -0
  512. package/python/lib/python3.12/filecmp.py +315 -0
  513. package/python/lib/python3.12/fileinput.py +442 -0
  514. package/python/lib/python3.12/fnmatch.py +185 -0
  515. package/python/lib/python3.12/fractions.py +990 -0
  516. package/python/lib/python3.12/ftplib.py +966 -0
  517. package/python/lib/python3.12/functools.py +1009 -0
  518. package/python/lib/python3.12/genericpath.py +176 -0
  519. package/python/lib/python3.12/getopt.py +215 -0
  520. package/python/lib/python3.12/getpass.py +185 -0
  521. package/python/lib/python3.12/gettext.py +646 -0
  522. package/python/lib/python3.12/glob.py +252 -0
  523. package/python/lib/python3.12/graphlib.py +250 -0
  524. package/python/lib/python3.12/gzip.py +711 -0
  525. package/python/lib/python3.12/hashlib.py +253 -0
  526. package/python/lib/python3.12/heapq.py +603 -0
  527. package/python/lib/python3.12/hmac.py +219 -0
  528. package/python/lib/python3.12/html/__init__.py +132 -0
  529. package/python/lib/python3.12/html/entities.py +2513 -0
  530. package/python/lib/python3.12/html/parser.py +535 -0
  531. package/python/lib/python3.12/http/__init__.py +200 -0
  532. package/python/lib/python3.12/http/client.py +1570 -0
  533. package/python/lib/python3.12/http/cookiejar.py +2121 -0
  534. package/python/lib/python3.12/http/cookies.py +615 -0
  535. package/python/lib/python3.12/http/server.py +1335 -0
  536. package/python/lib/python3.12/imaplib.py +1641 -0
  537. package/python/lib/python3.12/imghdr.py +180 -0
  538. package/python/lib/python3.12/importlib/__init__.py +138 -0
  539. package/python/lib/python3.12/importlib/_abc.py +39 -0
  540. package/python/lib/python3.12/importlib/_bootstrap.py +1551 -0
  541. package/python/lib/python3.12/importlib/_bootstrap_external.py +1749 -0
  542. package/python/lib/python3.12/importlib/abc.py +239 -0
  543. package/python/lib/python3.12/importlib/machinery.py +20 -0
  544. package/python/lib/python3.12/importlib/metadata/__init__.py +966 -0
  545. package/python/lib/python3.12/importlib/metadata/_adapters.py +89 -0
  546. package/python/lib/python3.12/importlib/metadata/_collections.py +30 -0
  547. package/python/lib/python3.12/importlib/metadata/_functools.py +104 -0
  548. package/python/lib/python3.12/importlib/metadata/_itertools.py +73 -0
  549. package/python/lib/python3.12/importlib/metadata/_meta.py +63 -0
  550. package/python/lib/python3.12/importlib/metadata/_text.py +99 -0
  551. package/python/lib/python3.12/importlib/readers.py +12 -0
  552. package/python/lib/python3.12/importlib/resources/__init__.py +38 -0
  553. package/python/lib/python3.12/importlib/resources/_adapters.py +168 -0
  554. package/python/lib/python3.12/importlib/resources/_common.py +208 -0
  555. package/python/lib/python3.12/importlib/resources/_itertools.py +38 -0
  556. package/python/lib/python3.12/importlib/resources/_legacy.py +98 -0
  557. package/python/lib/python3.12/importlib/resources/abc.py +173 -0
  558. package/python/lib/python3.12/importlib/resources/readers.py +146 -0
  559. package/python/lib/python3.12/importlib/resources/simple.py +106 -0
  560. package/python/lib/python3.12/importlib/simple.py +14 -0
  561. package/python/lib/python3.12/importlib/util.py +270 -0
  562. package/python/lib/python3.12/inspect.py +3433 -0
  563. package/python/lib/python3.12/io.py +99 -0
  564. package/python/lib/python3.12/ipaddress.py +2430 -0
  565. package/python/lib/python3.12/json/__init__.py +359 -0
  566. package/python/lib/python3.12/json/decoder.py +357 -0
  567. package/python/lib/python3.12/json/encoder.py +443 -0
  568. package/python/lib/python3.12/json/scanner.py +73 -0
  569. package/python/lib/python3.12/json/tool.py +85 -0
  570. package/python/lib/python3.12/keyword.py +64 -0
  571. package/python/lib/python3.12/lib-dynload/.empty +0 -0
  572. package/python/lib/python3.12/lib-dynload/_crypt.cpython-312-darwin.so +0 -0
  573. package/python/lib/python3.12/lib-dynload/_dbm.cpython-312-darwin.so +0 -0
  574. package/python/lib/python3.12/linecache.py +185 -0
  575. package/python/lib/python3.12/locale.py +1779 -0
  576. package/python/lib/python3.12/logging/__init__.py +2345 -0
  577. package/python/lib/python3.12/logging/config.py +1078 -0
  578. package/python/lib/python3.12/logging/handlers.py +1624 -0
  579. package/python/lib/python3.12/lzma.py +356 -0
  580. package/python/lib/python3.12/mailbox.py +2153 -0
  581. package/python/lib/python3.12/mailcap.py +302 -0
  582. package/python/lib/python3.12/mimetypes.py +656 -0
  583. package/python/lib/python3.12/modulefinder.py +666 -0
  584. package/python/lib/python3.12/multiprocessing/__init__.py +37 -0
  585. package/python/lib/python3.12/multiprocessing/connection.py +1178 -0
  586. package/python/lib/python3.12/multiprocessing/context.py +377 -0
  587. package/python/lib/python3.12/multiprocessing/dummy/__init__.py +126 -0
  588. package/python/lib/python3.12/multiprocessing/dummy/connection.py +75 -0
  589. package/python/lib/python3.12/multiprocessing/forkserver.py +350 -0
  590. package/python/lib/python3.12/multiprocessing/heap.py +337 -0
  591. package/python/lib/python3.12/multiprocessing/managers.py +1387 -0
  592. package/python/lib/python3.12/multiprocessing/pool.py +957 -0
  593. package/python/lib/python3.12/multiprocessing/popen_fork.py +83 -0
  594. package/python/lib/python3.12/multiprocessing/popen_forkserver.py +74 -0
  595. package/python/lib/python3.12/multiprocessing/popen_spawn_posix.py +72 -0
  596. package/python/lib/python3.12/multiprocessing/popen_spawn_win32.py +145 -0
  597. package/python/lib/python3.12/multiprocessing/process.py +439 -0
  598. package/python/lib/python3.12/multiprocessing/queues.py +401 -0
  599. package/python/lib/python3.12/multiprocessing/reduction.py +281 -0
  600. package/python/lib/python3.12/multiprocessing/resource_sharer.py +154 -0
  601. package/python/lib/python3.12/multiprocessing/resource_tracker.py +294 -0
  602. package/python/lib/python3.12/multiprocessing/shared_memory.py +534 -0
  603. package/python/lib/python3.12/multiprocessing/sharedctypes.py +240 -0
  604. package/python/lib/python3.12/multiprocessing/spawn.py +307 -0
  605. package/python/lib/python3.12/multiprocessing/synchronize.py +404 -0
  606. package/python/lib/python3.12/multiprocessing/util.py +494 -0
  607. package/python/lib/python3.12/netrc.py +192 -0
  608. package/python/lib/python3.12/nntplib.py +1093 -0
  609. package/python/lib/python3.12/ntpath.py +869 -0
  610. package/python/lib/python3.12/nturl2path.py +69 -0
  611. package/python/lib/python3.12/numbers.py +418 -0
  612. package/python/lib/python3.12/opcode.py +493 -0
  613. package/python/lib/python3.12/operator.py +467 -0
  614. package/python/lib/python3.12/optparse.py +1681 -0
  615. package/python/lib/python3.12/os.py +1159 -0
  616. package/python/lib/python3.12/pathlib.py +1435 -0
  617. package/python/lib/python3.12/pdb.py +1987 -0
  618. package/python/lib/python3.12/pickle.py +1866 -0
  619. package/python/lib/python3.12/pickletools.py +2904 -0
  620. package/python/lib/python3.12/pipes.py +250 -0
  621. package/python/lib/python3.12/pkgutil.py +529 -0
  622. package/python/lib/python3.12/platform.py +1359 -0
  623. package/python/lib/python3.12/plistlib.py +920 -0
  624. package/python/lib/python3.12/poplib.py +478 -0
  625. package/python/lib/python3.12/posixpath.py +577 -0
  626. package/python/lib/python3.12/pprint.py +658 -0
  627. package/python/lib/python3.12/profile.py +615 -0
  628. package/python/lib/python3.12/pstats.py +778 -0
  629. package/python/lib/python3.12/pty.py +211 -0
  630. package/python/lib/python3.12/py_compile.py +212 -0
  631. package/python/lib/python3.12/pyclbr.py +314 -0
  632. package/python/lib/python3.12/pydoc.py +2950 -0
  633. package/python/lib/python3.12/pydoc_data/__init__.py +0 -0
  634. package/python/lib/python3.12/pydoc_data/_pydoc.css +112 -0
  635. package/python/lib/python3.12/pydoc_data/topics.py +12500 -0
  636. package/python/lib/python3.12/queue.py +326 -0
  637. package/python/lib/python3.12/quopri.py +237 -0
  638. package/python/lib/python3.12/random.py +996 -0
  639. package/python/lib/python3.12/re/__init__.py +385 -0
  640. package/python/lib/python3.12/re/_casefix.py +106 -0
  641. package/python/lib/python3.12/re/_compiler.py +770 -0
  642. package/python/lib/python3.12/re/_constants.py +220 -0
  643. package/python/lib/python3.12/re/_parser.py +1080 -0
  644. package/python/lib/python3.12/reprlib.py +214 -0
  645. package/python/lib/python3.12/rlcompleter.py +219 -0
  646. package/python/lib/python3.12/runpy.py +319 -0
  647. package/python/lib/python3.12/sched.py +167 -0
  648. package/python/lib/python3.12/secrets.py +71 -0
  649. package/python/lib/python3.12/selectors.py +623 -0
  650. package/python/lib/python3.12/shelve.py +243 -0
  651. package/python/lib/python3.12/shlex.py +345 -0
  652. package/python/lib/python3.12/shutil.py +1566 -0
  653. package/python/lib/python3.12/signal.py +94 -0
  654. package/python/lib/python3.12/site-packages/README.txt +2 -0
  655. package/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
  656. package/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
  657. package/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
  658. package/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
  659. package/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
  660. package/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
  661. package/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
  662. package/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
  663. package/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +264 -0
  664. package/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1298 -0
  665. package/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
  666. package/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +212 -0
  667. package/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
  668. package/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
  669. package/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
  670. package/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
  671. package/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +472 -0
  672. package/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
  673. package/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
  674. package/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
  675. package/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
  676. package/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
  677. package/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
  678. package/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
  679. package/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +196 -0
  680. package/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
  681. package/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
  682. package/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
  683. package/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
  684. package/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
  685. package/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
  686. package/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +904 -0
  687. package/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +403 -0
  688. package/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
  689. package/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
  690. package/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
  691. package/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
  692. package/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
  693. package/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
  694. package/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
  695. package/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
  696. package/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
  697. package/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
  698. package/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
  699. package/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
  700. package/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
  701. package/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
  702. package/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1113 -0
  703. package/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
  704. package/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +438 -0
  705. package/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
  706. package/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
  707. package/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
  708. package/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
  709. package/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
  710. package/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
  711. package/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
  712. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  713. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  714. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +235 -0
  715. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
  716. package/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  717. package/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
  718. package/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +23 -0
  719. package/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +42 -0
  720. package/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
  721. package/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
  722. package/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
  723. package/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
  724. package/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +91 -0
  725. package/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +23 -0
  726. package/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +124 -0
  727. package/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +36 -0
  728. package/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
  729. package/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
  730. package/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
  731. package/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +570 -0
  732. package/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
  733. package/python/lib/python3.12/site-packages/pip/_internal/network/download.py +340 -0
  734. package/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
  735. package/python/lib/python3.12/site-packages/pip/_internal/network/session.py +537 -0
  736. package/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
  737. package/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  738. package/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  739. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  740. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  741. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  742. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  743. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  744. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  745. package/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
  746. package/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
  747. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  748. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +759 -0
  749. package/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +751 -0
  750. package/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
  751. package/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
  752. package/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +677 -0
  753. package/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
  754. package/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +86 -0
  755. package/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +622 -0
  756. package/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +838 -0
  757. package/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
  758. package/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
  759. package/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  760. package/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
  761. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  762. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  763. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  764. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +164 -0
  765. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +599 -0
  766. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +914 -0
  767. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  768. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +306 -0
  769. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  770. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
  771. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  772. package/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +246 -0
  773. package/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  774. package/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  775. package/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
  776. package/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
  777. package/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
  778. package/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  779. package/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
  780. package/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +139 -0
  781. package/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +92 -0
  782. package/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
  783. package/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  784. package/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +201 -0
  785. package/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
  786. package/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
  787. package/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
  788. package/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
  789. package/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
  790. package/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
  791. package/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +283 -0
  792. package/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
  793. package/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
  794. package/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
  795. package/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +381 -0
  796. package/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
  797. package/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
  798. package/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
  799. package/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
  800. package/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  801. package/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
  802. package/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  803. package/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
  804. package/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
  805. package/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
  806. package/python/lib/python3.12/site-packages/pip/_vendor/README.rst +178 -0
  807. package/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
  808. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  809. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
  810. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  811. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
  812. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  813. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  814. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  815. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  816. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  817. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
  818. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  819. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  820. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  821. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  822. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
  823. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  824. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  825. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4494 -0
  826. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
  827. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  828. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
  829. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  830. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  831. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
  832. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  833. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  834. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  835. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  836. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
  837. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  838. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  839. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  840. package/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
  841. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
  842. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
  843. package/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
  844. package/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  845. package/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
  846. package/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
  847. package/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
  848. package/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
  849. package/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
  850. package/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
  851. package/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
  852. package/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
  853. package/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  854. package/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
  855. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
  856. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  857. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  858. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  859. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  860. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
  861. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  862. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
  863. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  864. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
  865. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  866. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  867. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +393 -0
  868. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +33 -0
  869. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
  870. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/dependency_groups.py +302 -0
  871. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/direct_url.py +325 -0
  872. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/errors.py +94 -0
  873. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +186 -0
  874. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
  875. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +492 -0
  876. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +964 -0
  877. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  878. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +905 -0
  879. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +129 -0
  880. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1943 -0
  881. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +932 -0
  882. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +296 -0
  883. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +1231 -0
  884. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
  885. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  886. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
  887. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  888. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  889. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  890. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
  891. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
  892. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  893. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
  894. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
  895. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
  896. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
  897. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  898. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  899. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
  900. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
  901. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  902. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  903. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  904. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  905. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  906. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  907. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  908. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
  909. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  910. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  911. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  912. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  913. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  914. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
  915. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  916. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  917. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
  918. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  919. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
  920. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  921. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  922. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  923. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  924. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  925. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  926. package/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
  927. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +178 -0
  928. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
  929. package/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +51 -0
  930. package/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +697 -0
  931. package/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
  932. package/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
  933. package/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +18 -0
  934. package/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
  935. package/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
  936. package/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +152 -0
  937. package/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +124 -0
  938. package/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +34 -0
  939. package/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1041 -0
  940. package/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
  941. package/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +834 -0
  942. package/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  943. package/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
  944. package/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1083 -0
  945. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
  946. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  947. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  948. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  949. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  950. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  951. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  952. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  953. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  954. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  955. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  956. package/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
  957. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
  958. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
  959. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  960. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  961. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  962. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  963. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
  964. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  965. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  966. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  967. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
  968. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  969. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  970. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
  971. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  972. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  973. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
  974. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
  975. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  976. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
  977. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  978. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  979. package/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
  980. package/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
  981. package/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
  982. package/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
  983. package/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
  984. package/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
  985. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
  986. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  987. package/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
  988. package/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
  989. package/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
  990. package/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
  991. package/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
  992. package/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  993. package/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  994. package/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
  995. package/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
  996. package/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  997. package/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
  998. package/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  999. package/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
  1000. package/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  1001. package/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
  1002. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
  1003. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
  1004. package/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
  1005. package/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
  1006. package/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
  1007. package/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
  1008. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
  1009. package/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
  1010. package/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
  1011. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  1012. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
  1013. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  1014. package/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
  1015. package/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
  1016. package/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  1017. package/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
  1018. package/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
  1019. package/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
  1020. package/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
  1021. package/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
  1022. package/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
  1023. package/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
  1024. package/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
  1025. package/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
  1026. package/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
  1027. package/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
  1028. package/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
  1029. package/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  1030. package/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
  1031. package/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
  1032. package/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
  1033. package/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
  1034. package/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
  1035. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
  1036. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  1037. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +788 -0
  1038. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
  1039. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
  1040. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
  1041. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
  1042. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  1043. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  1044. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  1045. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
  1046. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  1047. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
  1048. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  1049. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
  1050. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  1051. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  1052. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  1053. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1054. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +211 -0
  1055. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_base_connection.py +165 -0
  1056. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +487 -0
  1057. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_request_methods.py +278 -0
  1058. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +34 -0
  1059. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +1099 -0
  1060. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1178 -0
  1061. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1062. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/__init__.py +17 -0
  1063. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/connection.py +260 -0
  1064. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
  1065. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/fetch.py +726 -0
  1066. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/request.py +22 -0
  1067. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/response.py +277 -0
  1068. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +564 -0
  1069. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +228 -0
  1070. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +335 -0
  1071. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +341 -0
  1072. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +89 -0
  1073. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/__init__.py +53 -0
  1074. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/connection.py +356 -0
  1075. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/probe.py +87 -0
  1076. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +651 -0
  1077. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/py.typed +2 -0
  1078. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +1474 -0
  1079. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +42 -0
  1080. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +137 -0
  1081. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +43 -0
  1082. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +254 -0
  1083. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +101 -0
  1084. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +549 -0
  1085. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +527 -0
  1086. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  1087. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +271 -0
  1088. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +275 -0
  1089. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +469 -0
  1090. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/util.py +42 -0
  1091. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +124 -0
  1092. package/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +18 -0
  1093. package/python/lib/python3.12/site-packages/pip/py.typed +4 -0
  1094. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/INSTALLER +1 -0
  1095. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/METADATA +109 -0
  1096. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/RECORD +866 -0
  1097. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/REQUESTED +0 -0
  1098. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/WHEEL +4 -0
  1099. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/direct_url.json +1 -0
  1100. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/entry_points.txt +4 -0
  1101. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/AUTHORS.txt +868 -0
  1102. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/LICENSE.txt +20 -0
  1103. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  1104. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  1105. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
  1106. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  1107. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
  1108. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  1109. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  1110. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1111. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1112. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
  1113. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  1114. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  1115. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1116. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  1117. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  1118. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  1119. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  1120. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
  1121. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  1122. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1123. package/python/lib/python3.12/site.py +693 -0
  1124. package/python/lib/python3.12/smtplib.py +1109 -0
  1125. package/python/lib/python3.12/sndhdr.py +271 -0
  1126. package/python/lib/python3.12/socket.py +983 -0
  1127. package/python/lib/python3.12/socketserver.py +863 -0
  1128. package/python/lib/python3.12/sqlite3/__init__.py +70 -0
  1129. package/python/lib/python3.12/sqlite3/__main__.py +127 -0
  1130. package/python/lib/python3.12/sqlite3/dbapi2.py +108 -0
  1131. package/python/lib/python3.12/sqlite3/dump.py +89 -0
  1132. package/python/lib/python3.12/sre_compile.py +7 -0
  1133. package/python/lib/python3.12/sre_constants.py +7 -0
  1134. package/python/lib/python3.12/sre_parse.py +7 -0
  1135. package/python/lib/python3.12/ssl.py +1488 -0
  1136. package/python/lib/python3.12/stat.py +195 -0
  1137. package/python/lib/python3.12/statistics.py +1454 -0
  1138. package/python/lib/python3.12/string.py +309 -0
  1139. package/python/lib/python3.12/stringprep.py +272 -0
  1140. package/python/lib/python3.12/struct.py +15 -0
  1141. package/python/lib/python3.12/subprocess.py +2216 -0
  1142. package/python/lib/python3.12/sunau.py +533 -0
  1143. package/python/lib/python3.12/symtable.py +362 -0
  1144. package/python/lib/python3.12/sysconfig.py +894 -0
  1145. package/python/lib/python3.12/tabnanny.py +340 -0
  1146. package/python/lib/python3.12/tarfile.py +3031 -0
  1147. package/python/lib/python3.12/telnetlib.py +680 -0
  1148. package/python/lib/python3.12/tempfile.py +956 -0
  1149. package/python/lib/python3.12/textwrap.py +491 -0
  1150. package/python/lib/python3.12/this.py +28 -0
  1151. package/python/lib/python3.12/threading.py +1708 -0
  1152. package/python/lib/python3.12/timeit.py +381 -0
  1153. package/python/lib/python3.12/token.py +143 -0
  1154. package/python/lib/python3.12/tokenize.py +594 -0
  1155. package/python/lib/python3.12/tomllib/__init__.py +10 -0
  1156. package/python/lib/python3.12/tomllib/_parser.py +691 -0
  1157. package/python/lib/python3.12/tomllib/_re.py +107 -0
  1158. package/python/lib/python3.12/tomllib/_types.py +10 -0
  1159. package/python/lib/python3.12/trace.py +748 -0
  1160. package/python/lib/python3.12/traceback.py +1187 -0
  1161. package/python/lib/python3.12/tracemalloc.py +560 -0
  1162. package/python/lib/python3.12/tty.py +73 -0
  1163. package/python/lib/python3.12/turtle.py +4207 -0
  1164. package/python/lib/python3.12/types.py +333 -0
  1165. package/python/lib/python3.12/typing.py +3494 -0
  1166. package/python/lib/python3.12/unittest/__init__.py +85 -0
  1167. package/python/lib/python3.12/unittest/__main__.py +18 -0
  1168. package/python/lib/python3.12/unittest/_log.py +86 -0
  1169. package/python/lib/python3.12/unittest/async_case.py +143 -0
  1170. package/python/lib/python3.12/unittest/case.py +1456 -0
  1171. package/python/lib/python3.12/unittest/loader.py +497 -0
  1172. package/python/lib/python3.12/unittest/main.py +291 -0
  1173. package/python/lib/python3.12/unittest/mock.py +3054 -0
  1174. package/python/lib/python3.12/unittest/result.py +256 -0
  1175. package/python/lib/python3.12/unittest/runner.py +292 -0
  1176. package/python/lib/python3.12/unittest/signals.py +71 -0
  1177. package/python/lib/python3.12/unittest/suite.py +379 -0
  1178. package/python/lib/python3.12/unittest/util.py +170 -0
  1179. package/python/lib/python3.12/urllib/__init__.py +0 -0
  1180. package/python/lib/python3.12/urllib/error.py +74 -0
  1181. package/python/lib/python3.12/urllib/parse.py +1262 -0
  1182. package/python/lib/python3.12/urllib/request.py +2816 -0
  1183. package/python/lib/python3.12/urllib/response.py +84 -0
  1184. package/python/lib/python3.12/urllib/robotparser.py +275 -0
  1185. package/python/lib/python3.12/uu.py +216 -0
  1186. package/python/lib/python3.12/uuid.py +793 -0
  1187. package/python/lib/python3.12/venv/__init__.py +608 -0
  1188. package/python/lib/python3.12/venv/__main__.py +10 -0
  1189. package/python/lib/python3.12/venv/scripts/common/Activate.ps1 +247 -0
  1190. package/python/lib/python3.12/venv/scripts/common/activate +76 -0
  1191. package/python/lib/python3.12/venv/scripts/posix/activate.csh +27 -0
  1192. package/python/lib/python3.12/venv/scripts/posix/activate.fish +69 -0
  1193. package/python/lib/python3.12/warnings.py +598 -0
  1194. package/python/lib/python3.12/wave.py +653 -0
  1195. package/python/lib/python3.12/weakref.py +674 -0
  1196. package/python/lib/python3.12/webbrowser.py +689 -0
  1197. package/python/lib/python3.12/wsgiref/__init__.py +25 -0
  1198. package/python/lib/python3.12/wsgiref/handlers.py +573 -0
  1199. package/python/lib/python3.12/wsgiref/headers.py +192 -0
  1200. package/python/lib/python3.12/wsgiref/simple_server.py +165 -0
  1201. package/python/lib/python3.12/wsgiref/types.py +54 -0
  1202. package/python/lib/python3.12/wsgiref/util.py +159 -0
  1203. package/python/lib/python3.12/wsgiref/validate.py +438 -0
  1204. package/python/lib/python3.12/xdrlib.py +242 -0
  1205. package/python/lib/python3.12/xml/__init__.py +20 -0
  1206. package/python/lib/python3.12/xml/dom/NodeFilter.py +27 -0
  1207. package/python/lib/python3.12/xml/dom/__init__.py +140 -0
  1208. package/python/lib/python3.12/xml/dom/domreg.py +99 -0
  1209. package/python/lib/python3.12/xml/dom/expatbuilder.py +962 -0
  1210. package/python/lib/python3.12/xml/dom/minicompat.py +109 -0
  1211. package/python/lib/python3.12/xml/dom/minidom.py +2008 -0
  1212. package/python/lib/python3.12/xml/dom/pulldom.py +336 -0
  1213. package/python/lib/python3.12/xml/dom/xmlbuilder.py +389 -0
  1214. package/python/lib/python3.12/xml/etree/ElementInclude.py +186 -0
  1215. package/python/lib/python3.12/xml/etree/ElementPath.py +423 -0
  1216. package/python/lib/python3.12/xml/etree/ElementTree.py +2085 -0
  1217. package/python/lib/python3.12/xml/etree/__init__.py +33 -0
  1218. package/python/lib/python3.12/xml/etree/cElementTree.py +3 -0
  1219. package/python/lib/python3.12/xml/parsers/__init__.py +8 -0
  1220. package/python/lib/python3.12/xml/parsers/expat.py +8 -0
  1221. package/python/lib/python3.12/xml/sax/__init__.py +94 -0
  1222. package/python/lib/python3.12/xml/sax/_exceptions.py +127 -0
  1223. package/python/lib/python3.12/xml/sax/expatreader.py +454 -0
  1224. package/python/lib/python3.12/xml/sax/handler.py +387 -0
  1225. package/python/lib/python3.12/xml/sax/saxutils.py +369 -0
  1226. package/python/lib/python3.12/xml/sax/xmlreader.py +378 -0
  1227. package/python/lib/python3.12/xmlrpc/__init__.py +1 -0
  1228. package/python/lib/python3.12/xmlrpc/client.py +1529 -0
  1229. package/python/lib/python3.12/xmlrpc/server.py +1002 -0
  1230. package/python/lib/python3.12/zipapp.py +206 -0
  1231. package/python/lib/python3.12/zipfile/__init__.py +2340 -0
  1232. package/python/lib/python3.12/zipfile/__main__.py +4 -0
  1233. package/python/lib/python3.12/zipfile/_path/__init__.py +412 -0
  1234. package/python/lib/python3.12/zipfile/_path/glob.py +53 -0
  1235. package/python/lib/python3.12/zipimport.py +712 -0
  1236. package/python/lib/python3.12/zoneinfo/__init__.py +31 -0
  1237. package/python/lib/python3.12/zoneinfo/_common.py +164 -0
  1238. package/python/lib/python3.12/zoneinfo/_tzpath.py +181 -0
  1239. package/python/lib/python3.12/zoneinfo/_zoneinfo.py +772 -0
@@ -0,0 +1,3433 @@
1
+ """Get useful information from live Python objects.
2
+
3
+ This module encapsulates the interface provided by the internal special
4
+ attributes (co_*, im_*, tb_*, etc.) in a friendlier fashion.
5
+ It also provides some help for examining source code and class layout.
6
+
7
+ Here are some of the useful functions provided by this module:
8
+
9
+ ismodule(), isclass(), ismethod(), isfunction(), isgeneratorfunction(),
10
+ isgenerator(), istraceback(), isframe(), iscode(), isbuiltin(),
11
+ isroutine() - check object types
12
+ getmembers() - get members of an object that satisfy a given condition
13
+
14
+ getfile(), getsourcefile(), getsource() - find an object's source code
15
+ getdoc(), getcomments() - get documentation on an object
16
+ getmodule() - determine the module that an object came from
17
+ getclasstree() - arrange classes so as to represent their hierarchy
18
+
19
+ getargvalues(), getcallargs() - get info about function arguments
20
+ getfullargspec() - same, with support for Python 3 features
21
+ formatargvalues() - format an argument spec
22
+ getouterframes(), getinnerframes() - get info about frames
23
+ currentframe() - get the current stack frame
24
+ stack(), trace() - get info about frames on the stack or in a traceback
25
+
26
+ signature() - get a Signature object for the callable
27
+
28
+ get_annotations() - safely compute an object's annotations
29
+ """
30
+
31
+ # This module is in the public domain. No warranties.
32
+
33
+ __author__ = ('Ka-Ping Yee <ping@lfw.org>',
34
+ 'Yury Selivanov <yselivanov@sprymix.com>')
35
+
36
+ __all__ = [
37
+ "AGEN_CLOSED",
38
+ "AGEN_CREATED",
39
+ "AGEN_RUNNING",
40
+ "AGEN_SUSPENDED",
41
+ "ArgInfo",
42
+ "Arguments",
43
+ "Attribute",
44
+ "BlockFinder",
45
+ "BoundArguments",
46
+ "BufferFlags",
47
+ "CORO_CLOSED",
48
+ "CORO_CREATED",
49
+ "CORO_RUNNING",
50
+ "CORO_SUSPENDED",
51
+ "CO_ASYNC_GENERATOR",
52
+ "CO_COROUTINE",
53
+ "CO_GENERATOR",
54
+ "CO_ITERABLE_COROUTINE",
55
+ "CO_NESTED",
56
+ "CO_NEWLOCALS",
57
+ "CO_NOFREE",
58
+ "CO_OPTIMIZED",
59
+ "CO_VARARGS",
60
+ "CO_VARKEYWORDS",
61
+ "ClassFoundException",
62
+ "ClosureVars",
63
+ "EndOfBlock",
64
+ "FrameInfo",
65
+ "FullArgSpec",
66
+ "GEN_CLOSED",
67
+ "GEN_CREATED",
68
+ "GEN_RUNNING",
69
+ "GEN_SUSPENDED",
70
+ "Parameter",
71
+ "Signature",
72
+ "TPFLAGS_IS_ABSTRACT",
73
+ "Traceback",
74
+ "classify_class_attrs",
75
+ "cleandoc",
76
+ "currentframe",
77
+ "findsource",
78
+ "formatannotation",
79
+ "formatannotationrelativeto",
80
+ "formatargvalues",
81
+ "get_annotations",
82
+ "getabsfile",
83
+ "getargs",
84
+ "getargvalues",
85
+ "getasyncgenlocals",
86
+ "getasyncgenstate",
87
+ "getattr_static",
88
+ "getblock",
89
+ "getcallargs",
90
+ "getclasstree",
91
+ "getclosurevars",
92
+ "getcomments",
93
+ "getcoroutinelocals",
94
+ "getcoroutinestate",
95
+ "getdoc",
96
+ "getfile",
97
+ "getframeinfo",
98
+ "getfullargspec",
99
+ "getgeneratorlocals",
100
+ "getgeneratorstate",
101
+ "getinnerframes",
102
+ "getlineno",
103
+ "getmembers",
104
+ "getmembers_static",
105
+ "getmodule",
106
+ "getmodulename",
107
+ "getmro",
108
+ "getouterframes",
109
+ "getsource",
110
+ "getsourcefile",
111
+ "getsourcelines",
112
+ "indentsize",
113
+ "isabstract",
114
+ "isasyncgen",
115
+ "isasyncgenfunction",
116
+ "isawaitable",
117
+ "isbuiltin",
118
+ "isclass",
119
+ "iscode",
120
+ "iscoroutine",
121
+ "iscoroutinefunction",
122
+ "isdatadescriptor",
123
+ "isframe",
124
+ "isfunction",
125
+ "isgenerator",
126
+ "isgeneratorfunction",
127
+ "isgetsetdescriptor",
128
+ "ismemberdescriptor",
129
+ "ismethod",
130
+ "ismethoddescriptor",
131
+ "ismethodwrapper",
132
+ "ismodule",
133
+ "isroutine",
134
+ "istraceback",
135
+ "markcoroutinefunction",
136
+ "signature",
137
+ "stack",
138
+ "trace",
139
+ "unwrap",
140
+ "walktree",
141
+ ]
142
+
143
+
144
+ import abc
145
+ import ast
146
+ import dis
147
+ import collections.abc
148
+ import enum
149
+ import importlib.machinery
150
+ import itertools
151
+ import linecache
152
+ import os
153
+ import re
154
+ import sys
155
+ import tokenize
156
+ import token
157
+ import types
158
+ import functools
159
+ import builtins
160
+ from keyword import iskeyword
161
+ from operator import attrgetter
162
+ from collections import namedtuple, OrderedDict
163
+ from weakref import ref as make_weakref
164
+
165
+ # Create constants for the compiler flags in Include/code.h
166
+ # We try to get them from dis to avoid duplication
167
+ mod_dict = globals()
168
+ for k, v in dis.COMPILER_FLAG_NAMES.items():
169
+ mod_dict["CO_" + v] = k
170
+ del k, v, mod_dict
171
+
172
+ # See Include/object.h
173
+ TPFLAGS_IS_ABSTRACT = 1 << 20
174
+
175
+
176
+ def get_annotations(obj, *, globals=None, locals=None, eval_str=False):
177
+ """Compute the annotations dict for an object.
178
+
179
+ obj may be a callable, class, or module.
180
+ Passing in an object of any other type raises TypeError.
181
+
182
+ Returns a dict. get_annotations() returns a new dict every time
183
+ it's called; calling it twice on the same object will return two
184
+ different but equivalent dicts.
185
+
186
+ This function handles several details for you:
187
+
188
+ * If eval_str is true, values of type str will
189
+ be un-stringized using eval(). This is intended
190
+ for use with stringized annotations
191
+ ("from __future__ import annotations").
192
+ * If obj doesn't have an annotations dict, returns an
193
+ empty dict. (Functions and methods always have an
194
+ annotations dict; classes, modules, and other types of
195
+ callables may not.)
196
+ * Ignores inherited annotations on classes. If a class
197
+ doesn't have its own annotations dict, returns an empty dict.
198
+ * All accesses to object members and dict values are done
199
+ using getattr() and dict.get() for safety.
200
+ * Always, always, always returns a freshly-created dict.
201
+
202
+ eval_str controls whether or not values of type str are replaced
203
+ with the result of calling eval() on those values:
204
+
205
+ * If eval_str is true, eval() is called on values of type str.
206
+ * If eval_str is false (the default), values of type str are unchanged.
207
+
208
+ globals and locals are passed in to eval(); see the documentation
209
+ for eval() for more information. If either globals or locals is
210
+ None, this function may replace that value with a context-specific
211
+ default, contingent on type(obj):
212
+
213
+ * If obj is a module, globals defaults to obj.__dict__.
214
+ * If obj is a class, globals defaults to
215
+ sys.modules[obj.__module__].__dict__ and locals
216
+ defaults to the obj class namespace.
217
+ * If obj is a callable, globals defaults to obj.__globals__,
218
+ although if obj is a wrapped function (using
219
+ functools.update_wrapper()) it is first unwrapped.
220
+ """
221
+ if isinstance(obj, type):
222
+ # class
223
+ obj_dict = getattr(obj, '__dict__', None)
224
+ if obj_dict and hasattr(obj_dict, 'get'):
225
+ ann = obj_dict.get('__annotations__', None)
226
+ if isinstance(ann, types.GetSetDescriptorType):
227
+ ann = None
228
+ else:
229
+ ann = None
230
+
231
+ obj_globals = None
232
+ module_name = getattr(obj, '__module__', None)
233
+ if module_name:
234
+ module = sys.modules.get(module_name, None)
235
+ if module:
236
+ obj_globals = getattr(module, '__dict__', None)
237
+ obj_locals = dict(vars(obj))
238
+ unwrap = obj
239
+ elif isinstance(obj, types.ModuleType):
240
+ # module
241
+ ann = getattr(obj, '__annotations__', None)
242
+ obj_globals = getattr(obj, '__dict__')
243
+ obj_locals = None
244
+ unwrap = None
245
+ elif callable(obj):
246
+ # this includes types.Function, types.BuiltinFunctionType,
247
+ # types.BuiltinMethodType, functools.partial, functools.singledispatch,
248
+ # "class funclike" from Lib/test/test_inspect... on and on it goes.
249
+ ann = getattr(obj, '__annotations__', None)
250
+ obj_globals = getattr(obj, '__globals__', None)
251
+ obj_locals = None
252
+ unwrap = obj
253
+ else:
254
+ raise TypeError(f"{obj!r} is not a module, class, or callable.")
255
+
256
+ if ann is None:
257
+ return {}
258
+
259
+ if not isinstance(ann, dict):
260
+ raise ValueError(f"{obj!r}.__annotations__ is neither a dict nor None")
261
+
262
+ if not ann:
263
+ return {}
264
+
265
+ if not eval_str:
266
+ return dict(ann)
267
+
268
+ if unwrap is not None:
269
+ while True:
270
+ if hasattr(unwrap, '__wrapped__'):
271
+ unwrap = unwrap.__wrapped__
272
+ continue
273
+ if isinstance(unwrap, functools.partial):
274
+ unwrap = unwrap.func
275
+ continue
276
+ break
277
+ if hasattr(unwrap, "__globals__"):
278
+ obj_globals = unwrap.__globals__
279
+
280
+ if globals is None:
281
+ globals = obj_globals
282
+ if locals is None:
283
+ locals = obj_locals or {}
284
+
285
+ # "Inject" type parameters into the local namespace
286
+ # (unless they are shadowed by assignments *in* the local namespace),
287
+ # as a way of emulating annotation scopes when calling `eval()`
288
+ if type_params := getattr(obj, "__type_params__", ()):
289
+ locals = {param.__name__: param for param in type_params} | locals
290
+
291
+ return_value = {key:
292
+ value if not isinstance(value, str) else eval(value, globals, locals)
293
+ for key, value in ann.items() }
294
+ return return_value
295
+
296
+
297
+ # ----------------------------------------------------------- type-checking
298
+ def ismodule(object):
299
+ """Return true if the object is a module."""
300
+ return isinstance(object, types.ModuleType)
301
+
302
+ def isclass(object):
303
+ """Return true if the object is a class."""
304
+ return isinstance(object, type)
305
+
306
+ def ismethod(object):
307
+ """Return true if the object is an instance method."""
308
+ return isinstance(object, types.MethodType)
309
+
310
+ def ismethoddescriptor(object):
311
+ """Return true if the object is a method descriptor.
312
+
313
+ But not if ismethod() or isclass() or isfunction() are true.
314
+
315
+ This is new in Python 2.2, and, for example, is true of int.__add__.
316
+ An object passing this test has a __get__ attribute but not a __set__
317
+ attribute, but beyond that the set of attributes varies. __name__ is
318
+ usually sensible, and __doc__ often is.
319
+
320
+ Methods implemented via descriptors that also pass one of the other
321
+ tests return false from the ismethoddescriptor() test, simply because
322
+ the other tests promise more -- you can, e.g., count on having the
323
+ __func__ attribute (etc) when an object passes ismethod()."""
324
+ if isclass(object) or ismethod(object) or isfunction(object):
325
+ # mutual exclusion
326
+ return False
327
+ tp = type(object)
328
+ return hasattr(tp, "__get__") and not hasattr(tp, "__set__")
329
+
330
+ def isdatadescriptor(object):
331
+ """Return true if the object is a data descriptor.
332
+
333
+ Data descriptors have a __set__ or a __delete__ attribute. Examples are
334
+ properties (defined in Python) and getsets and members (defined in C).
335
+ Typically, data descriptors will also have __name__ and __doc__ attributes
336
+ (properties, getsets, and members have both of these attributes), but this
337
+ is not guaranteed."""
338
+ if isclass(object) or ismethod(object) or isfunction(object):
339
+ # mutual exclusion
340
+ return False
341
+ tp = type(object)
342
+ return hasattr(tp, "__set__") or hasattr(tp, "__delete__")
343
+
344
+ if hasattr(types, 'MemberDescriptorType'):
345
+ # CPython and equivalent
346
+ def ismemberdescriptor(object):
347
+ """Return true if the object is a member descriptor.
348
+
349
+ Member descriptors are specialized descriptors defined in extension
350
+ modules."""
351
+ return isinstance(object, types.MemberDescriptorType)
352
+ else:
353
+ # Other implementations
354
+ def ismemberdescriptor(object):
355
+ """Return true if the object is a member descriptor.
356
+
357
+ Member descriptors are specialized descriptors defined in extension
358
+ modules."""
359
+ return False
360
+
361
+ if hasattr(types, 'GetSetDescriptorType'):
362
+ # CPython and equivalent
363
+ def isgetsetdescriptor(object):
364
+ """Return true if the object is a getset descriptor.
365
+
366
+ getset descriptors are specialized descriptors defined in extension
367
+ modules."""
368
+ return isinstance(object, types.GetSetDescriptorType)
369
+ else:
370
+ # Other implementations
371
+ def isgetsetdescriptor(object):
372
+ """Return true if the object is a getset descriptor.
373
+
374
+ getset descriptors are specialized descriptors defined in extension
375
+ modules."""
376
+ return False
377
+
378
+ def isfunction(object):
379
+ """Return true if the object is a user-defined function.
380
+
381
+ Function objects provide these attributes:
382
+ __doc__ documentation string
383
+ __name__ name with which this function was defined
384
+ __code__ code object containing compiled function bytecode
385
+ __defaults__ tuple of any default values for arguments
386
+ __globals__ global namespace in which this function was defined
387
+ __annotations__ dict of parameter annotations
388
+ __kwdefaults__ dict of keyword only parameters with defaults"""
389
+ return isinstance(object, types.FunctionType)
390
+
391
+ def _has_code_flag(f, flag):
392
+ """Return true if ``f`` is a function (or a method or functools.partial
393
+ wrapper wrapping a function) whose code object has the given ``flag``
394
+ set in its flags."""
395
+ while ismethod(f):
396
+ f = f.__func__
397
+ f = functools._unwrap_partial(f)
398
+ if not (isfunction(f) or _signature_is_functionlike(f)):
399
+ return False
400
+ return bool(f.__code__.co_flags & flag)
401
+
402
+ def isgeneratorfunction(obj):
403
+ """Return true if the object is a user-defined generator function.
404
+
405
+ Generator function objects provide the same attributes as functions.
406
+ See help(isfunction) for a list of attributes."""
407
+ return _has_code_flag(obj, CO_GENERATOR)
408
+
409
+ # A marker for markcoroutinefunction and iscoroutinefunction.
410
+ _is_coroutine_mark = object()
411
+
412
+ def _has_coroutine_mark(f):
413
+ while ismethod(f):
414
+ f = f.__func__
415
+ f = functools._unwrap_partial(f)
416
+ return getattr(f, "_is_coroutine_marker", None) is _is_coroutine_mark
417
+
418
+ def markcoroutinefunction(func):
419
+ """
420
+ Decorator to ensure callable is recognised as a coroutine function.
421
+ """
422
+ if hasattr(func, '__func__'):
423
+ func = func.__func__
424
+ func._is_coroutine_marker = _is_coroutine_mark
425
+ return func
426
+
427
+ def iscoroutinefunction(obj):
428
+ """Return true if the object is a coroutine function.
429
+
430
+ Coroutine functions are normally defined with "async def" syntax, but may
431
+ be marked via markcoroutinefunction.
432
+ """
433
+ return _has_code_flag(obj, CO_COROUTINE) or _has_coroutine_mark(obj)
434
+
435
+ def isasyncgenfunction(obj):
436
+ """Return true if the object is an asynchronous generator function.
437
+
438
+ Asynchronous generator functions are defined with "async def"
439
+ syntax and have "yield" expressions in their body.
440
+ """
441
+ return _has_code_flag(obj, CO_ASYNC_GENERATOR)
442
+
443
+ def isasyncgen(object):
444
+ """Return true if the object is an asynchronous generator."""
445
+ return isinstance(object, types.AsyncGeneratorType)
446
+
447
+ def isgenerator(object):
448
+ """Return true if the object is a generator.
449
+
450
+ Generator objects provide these attributes:
451
+ __iter__ defined to support iteration over container
452
+ close raises a new GeneratorExit exception inside the
453
+ generator to terminate the iteration
454
+ gi_code code object
455
+ gi_frame frame object or possibly None once the generator has
456
+ been exhausted
457
+ gi_running set to 1 when generator is executing, 0 otherwise
458
+ next return the next item from the container
459
+ send resumes the generator and "sends" a value that becomes
460
+ the result of the current yield-expression
461
+ throw used to raise an exception inside the generator"""
462
+ return isinstance(object, types.GeneratorType)
463
+
464
+ def iscoroutine(object):
465
+ """Return true if the object is a coroutine."""
466
+ return isinstance(object, types.CoroutineType)
467
+
468
+ def isawaitable(object):
469
+ """Return true if object can be passed to an ``await`` expression."""
470
+ return (isinstance(object, types.CoroutineType) or
471
+ isinstance(object, types.GeneratorType) and
472
+ bool(object.gi_code.co_flags & CO_ITERABLE_COROUTINE) or
473
+ isinstance(object, collections.abc.Awaitable))
474
+
475
+ def istraceback(object):
476
+ """Return true if the object is a traceback.
477
+
478
+ Traceback objects provide these attributes:
479
+ tb_frame frame object at this level
480
+ tb_lasti index of last attempted instruction in bytecode
481
+ tb_lineno current line number in Python source code
482
+ tb_next next inner traceback object (called by this level)"""
483
+ return isinstance(object, types.TracebackType)
484
+
485
+ def isframe(object):
486
+ """Return true if the object is a frame object.
487
+
488
+ Frame objects provide these attributes:
489
+ f_back next outer frame object (this frame's caller)
490
+ f_builtins built-in namespace seen by this frame
491
+ f_code code object being executed in this frame
492
+ f_globals global namespace seen by this frame
493
+ f_lasti index of last attempted instruction in bytecode
494
+ f_lineno current line number in Python source code
495
+ f_locals local namespace seen by this frame
496
+ f_trace tracing function for this frame, or None"""
497
+ return isinstance(object, types.FrameType)
498
+
499
+ def iscode(object):
500
+ """Return true if the object is a code object.
501
+
502
+ Code objects provide these attributes:
503
+ co_argcount number of arguments (not including *, ** args
504
+ or keyword only arguments)
505
+ co_code string of raw compiled bytecode
506
+ co_cellvars tuple of names of cell variables
507
+ co_consts tuple of constants used in the bytecode
508
+ co_filename name of file in which this code object was created
509
+ co_firstlineno number of first line in Python source code
510
+ co_flags bitmap: 1=optimized | 2=newlocals | 4=*arg | 8=**arg
511
+ | 16=nested | 32=generator | 64=nofree | 128=coroutine
512
+ | 256=iterable_coroutine | 512=async_generator
513
+ co_freevars tuple of names of free variables
514
+ co_posonlyargcount number of positional only arguments
515
+ co_kwonlyargcount number of keyword only arguments (not including ** arg)
516
+ co_lnotab encoded mapping of line numbers to bytecode indices
517
+ co_name name with which this code object was defined
518
+ co_names tuple of names other than arguments and function locals
519
+ co_nlocals number of local variables
520
+ co_stacksize virtual machine stack space required
521
+ co_varnames tuple of names of arguments and local variables"""
522
+ return isinstance(object, types.CodeType)
523
+
524
+ def isbuiltin(object):
525
+ """Return true if the object is a built-in function or method.
526
+
527
+ Built-in functions and methods provide these attributes:
528
+ __doc__ documentation string
529
+ __name__ original name of this function or method
530
+ __self__ instance to which a method is bound, or None"""
531
+ return isinstance(object, types.BuiltinFunctionType)
532
+
533
+ def ismethodwrapper(object):
534
+ """Return true if the object is a method wrapper."""
535
+ return isinstance(object, types.MethodWrapperType)
536
+
537
+ def isroutine(object):
538
+ """Return true if the object is any kind of function or method."""
539
+ return (isbuiltin(object)
540
+ or isfunction(object)
541
+ or ismethod(object)
542
+ or ismethoddescriptor(object)
543
+ or ismethodwrapper(object))
544
+
545
+ def isabstract(object):
546
+ """Return true if the object is an abstract base class (ABC)."""
547
+ if not isinstance(object, type):
548
+ return False
549
+ if object.__flags__ & TPFLAGS_IS_ABSTRACT:
550
+ return True
551
+ if not issubclass(type(object), abc.ABCMeta):
552
+ return False
553
+ if hasattr(object, '__abstractmethods__'):
554
+ # It looks like ABCMeta.__new__ has finished running;
555
+ # TPFLAGS_IS_ABSTRACT should have been accurate.
556
+ return False
557
+ # It looks like ABCMeta.__new__ has not finished running yet; we're
558
+ # probably in __init_subclass__. We'll look for abstractmethods manually.
559
+ for name, value in object.__dict__.items():
560
+ if getattr(value, "__isabstractmethod__", False):
561
+ return True
562
+ for base in object.__bases__:
563
+ for name in getattr(base, "__abstractmethods__", ()):
564
+ value = getattr(object, name, None)
565
+ if getattr(value, "__isabstractmethod__", False):
566
+ return True
567
+ return False
568
+
569
+ def _getmembers(object, predicate, getter):
570
+ results = []
571
+ processed = set()
572
+ names = dir(object)
573
+ if isclass(object):
574
+ mro = getmro(object)
575
+ # add any DynamicClassAttributes to the list of names if object is a class;
576
+ # this may result in duplicate entries if, for example, a virtual
577
+ # attribute with the same name as a DynamicClassAttribute exists
578
+ try:
579
+ for base in object.__bases__:
580
+ for k, v in base.__dict__.items():
581
+ if isinstance(v, types.DynamicClassAttribute):
582
+ names.append(k)
583
+ except AttributeError:
584
+ pass
585
+ else:
586
+ mro = ()
587
+ for key in names:
588
+ # First try to get the value via getattr. Some descriptors don't
589
+ # like calling their __get__ (see bug #1785), so fall back to
590
+ # looking in the __dict__.
591
+ try:
592
+ value = getter(object, key)
593
+ # handle the duplicate key
594
+ if key in processed:
595
+ raise AttributeError
596
+ except AttributeError:
597
+ for base in mro:
598
+ if key in base.__dict__:
599
+ value = base.__dict__[key]
600
+ break
601
+ else:
602
+ # could be a (currently) missing slot member, or a buggy
603
+ # __dir__; discard and move on
604
+ continue
605
+ if not predicate or predicate(value):
606
+ results.append((key, value))
607
+ processed.add(key)
608
+ results.sort(key=lambda pair: pair[0])
609
+ return results
610
+
611
+ def getmembers(object, predicate=None):
612
+ """Return all members of an object as (name, value) pairs sorted by name.
613
+ Optionally, only return members that satisfy a given predicate."""
614
+ return _getmembers(object, predicate, getattr)
615
+
616
+ def getmembers_static(object, predicate=None):
617
+ """Return all members of an object as (name, value) pairs sorted by name
618
+ without triggering dynamic lookup via the descriptor protocol,
619
+ __getattr__ or __getattribute__. Optionally, only return members that
620
+ satisfy a given predicate.
621
+
622
+ Note: this function may not be able to retrieve all members
623
+ that getmembers can fetch (like dynamically created attributes)
624
+ and may find members that getmembers can't (like descriptors
625
+ that raise AttributeError). It can also return descriptor objects
626
+ instead of instance members in some cases.
627
+ """
628
+ return _getmembers(object, predicate, getattr_static)
629
+
630
+ Attribute = namedtuple('Attribute', 'name kind defining_class object')
631
+
632
+ def classify_class_attrs(cls):
633
+ """Return list of attribute-descriptor tuples.
634
+
635
+ For each name in dir(cls), the return list contains a 4-tuple
636
+ with these elements:
637
+
638
+ 0. The name (a string).
639
+
640
+ 1. The kind of attribute this is, one of these strings:
641
+ 'class method' created via classmethod()
642
+ 'static method' created via staticmethod()
643
+ 'property' created via property()
644
+ 'method' any other flavor of method or descriptor
645
+ 'data' not a method
646
+
647
+ 2. The class which defined this attribute (a class).
648
+
649
+ 3. The object as obtained by calling getattr; if this fails, or if the
650
+ resulting object does not live anywhere in the class' mro (including
651
+ metaclasses) then the object is looked up in the defining class's
652
+ dict (found by walking the mro).
653
+
654
+ If one of the items in dir(cls) is stored in the metaclass it will now
655
+ be discovered and not have None be listed as the class in which it was
656
+ defined. Any items whose home class cannot be discovered are skipped.
657
+ """
658
+
659
+ mro = getmro(cls)
660
+ metamro = getmro(type(cls)) # for attributes stored in the metaclass
661
+ metamro = tuple(cls for cls in metamro if cls not in (type, object))
662
+ class_bases = (cls,) + mro
663
+ all_bases = class_bases + metamro
664
+ names = dir(cls)
665
+ # :dd any DynamicClassAttributes to the list of names;
666
+ # this may result in duplicate entries if, for example, a virtual
667
+ # attribute with the same name as a DynamicClassAttribute exists.
668
+ for base in mro:
669
+ for k, v in base.__dict__.items():
670
+ if isinstance(v, types.DynamicClassAttribute) and v.fget is not None:
671
+ names.append(k)
672
+ result = []
673
+ processed = set()
674
+
675
+ for name in names:
676
+ # Get the object associated with the name, and where it was defined.
677
+ # Normal objects will be looked up with both getattr and directly in
678
+ # its class' dict (in case getattr fails [bug #1785], and also to look
679
+ # for a docstring).
680
+ # For DynamicClassAttributes on the second pass we only look in the
681
+ # class's dict.
682
+ #
683
+ # Getting an obj from the __dict__ sometimes reveals more than
684
+ # using getattr. Static and class methods are dramatic examples.
685
+ homecls = None
686
+ get_obj = None
687
+ dict_obj = None
688
+ if name not in processed:
689
+ try:
690
+ if name == '__dict__':
691
+ raise Exception("__dict__ is special, don't want the proxy")
692
+ get_obj = getattr(cls, name)
693
+ except Exception:
694
+ pass
695
+ else:
696
+ homecls = getattr(get_obj, "__objclass__", homecls)
697
+ if homecls not in class_bases:
698
+ # if the resulting object does not live somewhere in the
699
+ # mro, drop it and search the mro manually
700
+ homecls = None
701
+ last_cls = None
702
+ # first look in the classes
703
+ for srch_cls in class_bases:
704
+ srch_obj = getattr(srch_cls, name, None)
705
+ if srch_obj is get_obj:
706
+ last_cls = srch_cls
707
+ # then check the metaclasses
708
+ for srch_cls in metamro:
709
+ try:
710
+ srch_obj = srch_cls.__getattr__(cls, name)
711
+ except AttributeError:
712
+ continue
713
+ if srch_obj is get_obj:
714
+ last_cls = srch_cls
715
+ if last_cls is not None:
716
+ homecls = last_cls
717
+ for base in all_bases:
718
+ if name in base.__dict__:
719
+ dict_obj = base.__dict__[name]
720
+ if homecls not in metamro:
721
+ homecls = base
722
+ break
723
+ if homecls is None:
724
+ # unable to locate the attribute anywhere, most likely due to
725
+ # buggy custom __dir__; discard and move on
726
+ continue
727
+ obj = get_obj if get_obj is not None else dict_obj
728
+ # Classify the object or its descriptor.
729
+ if isinstance(dict_obj, (staticmethod, types.BuiltinMethodType)):
730
+ kind = "static method"
731
+ obj = dict_obj
732
+ elif isinstance(dict_obj, (classmethod, types.ClassMethodDescriptorType)):
733
+ kind = "class method"
734
+ obj = dict_obj
735
+ elif isinstance(dict_obj, property):
736
+ kind = "property"
737
+ obj = dict_obj
738
+ elif isroutine(obj):
739
+ kind = "method"
740
+ else:
741
+ kind = "data"
742
+ result.append(Attribute(name, kind, homecls, obj))
743
+ processed.add(name)
744
+ return result
745
+
746
+ # ----------------------------------------------------------- class helpers
747
+
748
+ def getmro(cls):
749
+ "Return tuple of base classes (including cls) in method resolution order."
750
+ return cls.__mro__
751
+
752
+ # -------------------------------------------------------- function helpers
753
+
754
+ def unwrap(func, *, stop=None):
755
+ """Get the object wrapped by *func*.
756
+
757
+ Follows the chain of :attr:`__wrapped__` attributes returning the last
758
+ object in the chain.
759
+
760
+ *stop* is an optional callback accepting an object in the wrapper chain
761
+ as its sole argument that allows the unwrapping to be terminated early if
762
+ the callback returns a true value. If the callback never returns a true
763
+ value, the last object in the chain is returned as usual. For example,
764
+ :func:`signature` uses this to stop unwrapping if any object in the
765
+ chain has a ``__signature__`` attribute defined.
766
+
767
+ :exc:`ValueError` is raised if a cycle is encountered.
768
+
769
+ """
770
+ f = func # remember the original func for error reporting
771
+ # Memoise by id to tolerate non-hashable objects, but store objects to
772
+ # ensure they aren't destroyed, which would allow their IDs to be reused.
773
+ memo = {id(f): f}
774
+ recursion_limit = sys.getrecursionlimit()
775
+ while not isinstance(func, type) and hasattr(func, '__wrapped__'):
776
+ if stop is not None and stop(func):
777
+ break
778
+ func = func.__wrapped__
779
+ id_func = id(func)
780
+ if (id_func in memo) or (len(memo) >= recursion_limit):
781
+ raise ValueError('wrapper loop when unwrapping {!r}'.format(f))
782
+ memo[id_func] = func
783
+ return func
784
+
785
+ # -------------------------------------------------- source code extraction
786
+ def indentsize(line):
787
+ """Return the indent size, in spaces, at the start of a line of text."""
788
+ expline = line.expandtabs()
789
+ return len(expline) - len(expline.lstrip())
790
+
791
+ def _findclass(func):
792
+ cls = sys.modules.get(func.__module__)
793
+ if cls is None:
794
+ return None
795
+ for name in func.__qualname__.split('.')[:-1]:
796
+ cls = getattr(cls, name)
797
+ if not isclass(cls):
798
+ return None
799
+ return cls
800
+
801
+ def _finddoc(obj):
802
+ if isclass(obj):
803
+ for base in obj.__mro__:
804
+ if base is not object:
805
+ try:
806
+ doc = base.__doc__
807
+ except AttributeError:
808
+ continue
809
+ if doc is not None:
810
+ return doc
811
+ return None
812
+
813
+ if ismethod(obj):
814
+ name = obj.__func__.__name__
815
+ self = obj.__self__
816
+ if (isclass(self) and
817
+ getattr(getattr(self, name, None), '__func__') is obj.__func__):
818
+ # classmethod
819
+ cls = self
820
+ else:
821
+ cls = self.__class__
822
+ elif isfunction(obj):
823
+ name = obj.__name__
824
+ cls = _findclass(obj)
825
+ if cls is None or getattr(cls, name) is not obj:
826
+ return None
827
+ elif isbuiltin(obj):
828
+ name = obj.__name__
829
+ self = obj.__self__
830
+ if (isclass(self) and
831
+ self.__qualname__ + '.' + name == obj.__qualname__):
832
+ # classmethod
833
+ cls = self
834
+ else:
835
+ cls = self.__class__
836
+ # Should be tested before isdatadescriptor().
837
+ elif isinstance(obj, property):
838
+ func = obj.fget
839
+ name = func.__name__
840
+ cls = _findclass(func)
841
+ if cls is None or getattr(cls, name) is not obj:
842
+ return None
843
+ elif ismethoddescriptor(obj) or isdatadescriptor(obj):
844
+ name = obj.__name__
845
+ cls = obj.__objclass__
846
+ if getattr(cls, name) is not obj:
847
+ return None
848
+ if ismemberdescriptor(obj):
849
+ slots = getattr(cls, '__slots__', None)
850
+ if isinstance(slots, dict) and name in slots:
851
+ return slots[name]
852
+ else:
853
+ return None
854
+ for base in cls.__mro__:
855
+ try:
856
+ doc = getattr(base, name).__doc__
857
+ except AttributeError:
858
+ continue
859
+ if doc is not None:
860
+ return doc
861
+ return None
862
+
863
+ def getdoc(object):
864
+ """Get the documentation string for an object.
865
+
866
+ All tabs are expanded to spaces. To clean up docstrings that are
867
+ indented to line up with blocks of code, any whitespace than can be
868
+ uniformly removed from the second line onwards is removed."""
869
+ try:
870
+ doc = object.__doc__
871
+ except AttributeError:
872
+ return None
873
+ if doc is None:
874
+ try:
875
+ doc = _finddoc(object)
876
+ except (AttributeError, TypeError):
877
+ return None
878
+ if not isinstance(doc, str):
879
+ return None
880
+ return cleandoc(doc)
881
+
882
+ def cleandoc(doc):
883
+ """Clean up indentation from docstrings.
884
+
885
+ Any whitespace that can be uniformly removed from the second line
886
+ onwards is removed."""
887
+ try:
888
+ lines = doc.expandtabs().split('\n')
889
+ except UnicodeError:
890
+ return None
891
+ else:
892
+ # Find minimum indentation of any non-blank lines after first line.
893
+ margin = sys.maxsize
894
+ for line in lines[1:]:
895
+ content = len(line.lstrip())
896
+ if content:
897
+ indent = len(line) - content
898
+ margin = min(margin, indent)
899
+ # Remove indentation.
900
+ if lines:
901
+ lines[0] = lines[0].lstrip()
902
+ if margin < sys.maxsize:
903
+ for i in range(1, len(lines)): lines[i] = lines[i][margin:]
904
+ # Remove any trailing or leading blank lines.
905
+ while lines and not lines[-1]:
906
+ lines.pop()
907
+ while lines and not lines[0]:
908
+ lines.pop(0)
909
+ return '\n'.join(lines)
910
+
911
+ def getfile(object):
912
+ """Work out which source or compiled file an object was defined in."""
913
+ if ismodule(object):
914
+ if getattr(object, '__file__', None):
915
+ return object.__file__
916
+ raise TypeError('{!r} is a built-in module'.format(object))
917
+ if isclass(object):
918
+ if hasattr(object, '__module__'):
919
+ module = sys.modules.get(object.__module__)
920
+ if getattr(module, '__file__', None):
921
+ return module.__file__
922
+ if object.__module__ == '__main__':
923
+ raise OSError('source code not available')
924
+ raise TypeError('{!r} is a built-in class'.format(object))
925
+ if ismethod(object):
926
+ object = object.__func__
927
+ if isfunction(object):
928
+ object = object.__code__
929
+ if istraceback(object):
930
+ object = object.tb_frame
931
+ if isframe(object):
932
+ object = object.f_code
933
+ if iscode(object):
934
+ return object.co_filename
935
+ raise TypeError('module, class, method, function, traceback, frame, or '
936
+ 'code object was expected, got {}'.format(
937
+ type(object).__name__))
938
+
939
+ def getmodulename(path):
940
+ """Return the module name for a given file, or None."""
941
+ fname = os.path.basename(path)
942
+ # Check for paths that look like an actual module file
943
+ suffixes = [(-len(suffix), suffix)
944
+ for suffix in importlib.machinery.all_suffixes()]
945
+ suffixes.sort() # try longest suffixes first, in case they overlap
946
+ for neglen, suffix in suffixes:
947
+ if fname.endswith(suffix):
948
+ return fname[:neglen]
949
+ return None
950
+
951
+ def getsourcefile(object):
952
+ """Return the filename that can be used to locate an object's source.
953
+ Return None if no way can be identified to get the source.
954
+ """
955
+ filename = getfile(object)
956
+ all_bytecode_suffixes = importlib.machinery.DEBUG_BYTECODE_SUFFIXES[:]
957
+ all_bytecode_suffixes += importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES[:]
958
+ if any(filename.endswith(s) for s in all_bytecode_suffixes):
959
+ filename = (os.path.splitext(filename)[0] +
960
+ importlib.machinery.SOURCE_SUFFIXES[0])
961
+ elif any(filename.endswith(s) for s in
962
+ importlib.machinery.EXTENSION_SUFFIXES):
963
+ return None
964
+ # return a filename found in the linecache even if it doesn't exist on disk
965
+ if filename in linecache.cache:
966
+ return filename
967
+ if os.path.exists(filename):
968
+ return filename
969
+ # only return a non-existent filename if the module has a PEP 302 loader
970
+ module = getmodule(object, filename)
971
+ if getattr(module, '__loader__', None) is not None:
972
+ return filename
973
+ elif getattr(getattr(module, "__spec__", None), "loader", None) is not None:
974
+ return filename
975
+
976
+ def getabsfile(object, _filename=None):
977
+ """Return an absolute path to the source or compiled file for an object.
978
+
979
+ The idea is for each object to have a unique origin, so this routine
980
+ normalizes the result as much as possible."""
981
+ if _filename is None:
982
+ _filename = getsourcefile(object) or getfile(object)
983
+ return os.path.normcase(os.path.abspath(_filename))
984
+
985
+ modulesbyfile = {}
986
+ _filesbymodname = {}
987
+
988
+ def getmodule(object, _filename=None):
989
+ """Return the module an object was defined in, or None if not found."""
990
+ if ismodule(object):
991
+ return object
992
+ if hasattr(object, '__module__'):
993
+ return sys.modules.get(object.__module__)
994
+ # Try the filename to modulename cache
995
+ if _filename is not None and _filename in modulesbyfile:
996
+ return sys.modules.get(modulesbyfile[_filename])
997
+ # Try the cache again with the absolute file name
998
+ try:
999
+ file = getabsfile(object, _filename)
1000
+ except (TypeError, FileNotFoundError):
1001
+ return None
1002
+ if file in modulesbyfile:
1003
+ return sys.modules.get(modulesbyfile[file])
1004
+ # Update the filename to module name cache and check yet again
1005
+ # Copy sys.modules in order to cope with changes while iterating
1006
+ for modname, module in sys.modules.copy().items():
1007
+ if ismodule(module) and hasattr(module, '__file__'):
1008
+ f = module.__file__
1009
+ if f == _filesbymodname.get(modname, None):
1010
+ # Have already mapped this module, so skip it
1011
+ continue
1012
+ _filesbymodname[modname] = f
1013
+ f = getabsfile(module)
1014
+ # Always map to the name the module knows itself by
1015
+ modulesbyfile[f] = modulesbyfile[
1016
+ os.path.realpath(f)] = module.__name__
1017
+ if file in modulesbyfile:
1018
+ return sys.modules.get(modulesbyfile[file])
1019
+ # Check the main module
1020
+ main = sys.modules['__main__']
1021
+ if not hasattr(object, '__name__'):
1022
+ return None
1023
+ if hasattr(main, object.__name__):
1024
+ mainobject = getattr(main, object.__name__)
1025
+ if mainobject is object:
1026
+ return main
1027
+ # Check builtins
1028
+ builtin = sys.modules['builtins']
1029
+ if hasattr(builtin, object.__name__):
1030
+ builtinobject = getattr(builtin, object.__name__)
1031
+ if builtinobject is object:
1032
+ return builtin
1033
+
1034
+
1035
+ class ClassFoundException(Exception):
1036
+ pass
1037
+
1038
+
1039
+ class _ClassFinder(ast.NodeVisitor):
1040
+
1041
+ def __init__(self, qualname):
1042
+ self.stack = []
1043
+ self.qualname = qualname
1044
+
1045
+ def visit_FunctionDef(self, node):
1046
+ self.stack.append(node.name)
1047
+ self.stack.append('<locals>')
1048
+ self.generic_visit(node)
1049
+ self.stack.pop()
1050
+ self.stack.pop()
1051
+
1052
+ visit_AsyncFunctionDef = visit_FunctionDef
1053
+
1054
+ def visit_ClassDef(self, node):
1055
+ self.stack.append(node.name)
1056
+ if self.qualname == '.'.join(self.stack):
1057
+ # Return the decorator for the class if present
1058
+ if node.decorator_list:
1059
+ line_number = node.decorator_list[0].lineno
1060
+ else:
1061
+ line_number = node.lineno
1062
+
1063
+ # decrement by one since lines starts with indexing by zero
1064
+ line_number -= 1
1065
+ raise ClassFoundException(line_number)
1066
+ self.generic_visit(node)
1067
+ self.stack.pop()
1068
+
1069
+
1070
+ def findsource(object):
1071
+ """Return the entire source file and starting line number for an object.
1072
+
1073
+ The argument may be a module, class, method, function, traceback, frame,
1074
+ or code object. The source code is returned as a list of all the lines
1075
+ in the file and the line number indexes a line in that list. An OSError
1076
+ is raised if the source code cannot be retrieved."""
1077
+
1078
+ file = getsourcefile(object)
1079
+ if file:
1080
+ # Invalidate cache if needed.
1081
+ linecache.checkcache(file)
1082
+ else:
1083
+ file = getfile(object)
1084
+ # Allow filenames in form of "<something>" to pass through.
1085
+ # `doctest` monkeypatches `linecache` module to enable
1086
+ # inspection, so let `linecache.getlines` to be called.
1087
+ if not (file.startswith('<') and file.endswith('>')):
1088
+ raise OSError('source code not available')
1089
+
1090
+ module = getmodule(object, file)
1091
+ if module:
1092
+ lines = linecache.getlines(file, module.__dict__)
1093
+ else:
1094
+ lines = linecache.getlines(file)
1095
+ if not lines:
1096
+ raise OSError('could not get source code')
1097
+
1098
+ if ismodule(object):
1099
+ return lines, 0
1100
+
1101
+ if isclass(object):
1102
+ qualname = object.__qualname__
1103
+ source = ''.join(lines)
1104
+ tree = ast.parse(source)
1105
+ class_finder = _ClassFinder(qualname)
1106
+ try:
1107
+ class_finder.visit(tree)
1108
+ except ClassFoundException as e:
1109
+ line_number = e.args[0]
1110
+ return lines, line_number
1111
+ else:
1112
+ raise OSError('could not find class definition')
1113
+
1114
+ if ismethod(object):
1115
+ object = object.__func__
1116
+ if isfunction(object):
1117
+ object = object.__code__
1118
+ if istraceback(object):
1119
+ object = object.tb_frame
1120
+ if isframe(object):
1121
+ object = object.f_code
1122
+ if iscode(object):
1123
+ if not hasattr(object, 'co_firstlineno'):
1124
+ raise OSError('could not find function definition')
1125
+ lnum = object.co_firstlineno - 1
1126
+ pat = re.compile(r'^(\s*def\s)|(\s*async\s+def\s)|(.*(?<!\w)lambda(:|\s))|^(\s*@)')
1127
+ while lnum > 0:
1128
+ try:
1129
+ line = lines[lnum]
1130
+ except IndexError:
1131
+ raise OSError('lineno is out of bounds')
1132
+ if pat.match(line):
1133
+ break
1134
+ lnum = lnum - 1
1135
+ return lines, lnum
1136
+ raise OSError('could not find code object')
1137
+
1138
+ def getcomments(object):
1139
+ """Get lines of comments immediately preceding an object's source code.
1140
+
1141
+ Returns None when source can't be found.
1142
+ """
1143
+ try:
1144
+ lines, lnum = findsource(object)
1145
+ except (OSError, TypeError):
1146
+ return None
1147
+
1148
+ if ismodule(object):
1149
+ # Look for a comment block at the top of the file.
1150
+ start = 0
1151
+ if lines and lines[0][:2] == '#!': start = 1
1152
+ while start < len(lines) and lines[start].strip() in ('', '#'):
1153
+ start = start + 1
1154
+ if start < len(lines) and lines[start][:1] == '#':
1155
+ comments = []
1156
+ end = start
1157
+ while end < len(lines) and lines[end][:1] == '#':
1158
+ comments.append(lines[end].expandtabs())
1159
+ end = end + 1
1160
+ return ''.join(comments)
1161
+
1162
+ # Look for a preceding block of comments at the same indentation.
1163
+ elif lnum > 0:
1164
+ indent = indentsize(lines[lnum])
1165
+ end = lnum - 1
1166
+ if end >= 0 and lines[end].lstrip()[:1] == '#' and \
1167
+ indentsize(lines[end]) == indent:
1168
+ comments = [lines[end].expandtabs().lstrip()]
1169
+ if end > 0:
1170
+ end = end - 1
1171
+ comment = lines[end].expandtabs().lstrip()
1172
+ while comment[:1] == '#' and indentsize(lines[end]) == indent:
1173
+ comments[:0] = [comment]
1174
+ end = end - 1
1175
+ if end < 0: break
1176
+ comment = lines[end].expandtabs().lstrip()
1177
+ while comments and comments[0].strip() == '#':
1178
+ comments[:1] = []
1179
+ while comments and comments[-1].strip() == '#':
1180
+ comments[-1:] = []
1181
+ return ''.join(comments)
1182
+
1183
+ class EndOfBlock(Exception): pass
1184
+
1185
+ class BlockFinder:
1186
+ """Provide a tokeneater() method to detect the end of a code block."""
1187
+ def __init__(self):
1188
+ self.indent = 0
1189
+ self.islambda = False
1190
+ self.started = False
1191
+ self.passline = False
1192
+ self.indecorator = False
1193
+ self.last = 1
1194
+ self.body_col0 = None
1195
+
1196
+ def tokeneater(self, type, token, srowcol, erowcol, line):
1197
+ if not self.started and not self.indecorator:
1198
+ # skip any decorators
1199
+ if token == "@":
1200
+ self.indecorator = True
1201
+ # look for the first "def", "class" or "lambda"
1202
+ elif token in ("def", "class", "lambda"):
1203
+ if token == "lambda":
1204
+ self.islambda = True
1205
+ self.started = True
1206
+ self.passline = True # skip to the end of the line
1207
+ elif type == tokenize.NEWLINE:
1208
+ self.passline = False # stop skipping when a NEWLINE is seen
1209
+ self.last = srowcol[0]
1210
+ if self.islambda: # lambdas always end at the first NEWLINE
1211
+ raise EndOfBlock
1212
+ # hitting a NEWLINE when in a decorator without args
1213
+ # ends the decorator
1214
+ if self.indecorator:
1215
+ self.indecorator = False
1216
+ elif self.passline:
1217
+ pass
1218
+ elif type == tokenize.INDENT:
1219
+ if self.body_col0 is None and self.started:
1220
+ self.body_col0 = erowcol[1]
1221
+ self.indent = self.indent + 1
1222
+ self.passline = True
1223
+ elif type == tokenize.DEDENT:
1224
+ self.indent = self.indent - 1
1225
+ # the end of matching indent/dedent pairs end a block
1226
+ # (note that this only works for "def"/"class" blocks,
1227
+ # not e.g. for "if: else:" or "try: finally:" blocks)
1228
+ if self.indent <= 0:
1229
+ raise EndOfBlock
1230
+ elif type == tokenize.COMMENT:
1231
+ if self.body_col0 is not None and srowcol[1] >= self.body_col0:
1232
+ # Include comments if indented at least as much as the block
1233
+ self.last = srowcol[0]
1234
+ elif self.indent == 0 and type not in (tokenize.COMMENT, tokenize.NL):
1235
+ # any other token on the same indentation level end the previous
1236
+ # block as well, except the pseudo-tokens COMMENT and NL.
1237
+ raise EndOfBlock
1238
+
1239
+ def getblock(lines):
1240
+ """Extract the block of code at the top of the given list of lines."""
1241
+ blockfinder = BlockFinder()
1242
+ try:
1243
+ tokens = tokenize.generate_tokens(iter(lines).__next__)
1244
+ for _token in tokens:
1245
+ blockfinder.tokeneater(*_token)
1246
+ except (EndOfBlock, IndentationError):
1247
+ pass
1248
+ except SyntaxError as e:
1249
+ if "unmatched" not in e.msg:
1250
+ raise e from None
1251
+ _, *_token_info = _token
1252
+ try:
1253
+ blockfinder.tokeneater(tokenize.NEWLINE, *_token_info)
1254
+ except (EndOfBlock, IndentationError):
1255
+ pass
1256
+ return lines[:blockfinder.last]
1257
+
1258
+ def getsourcelines(object):
1259
+ """Return a list of source lines and starting line number for an object.
1260
+
1261
+ The argument may be a module, class, method, function, traceback, frame,
1262
+ or code object. The source code is returned as a list of the lines
1263
+ corresponding to the object and the line number indicates where in the
1264
+ original source file the first line of code was found. An OSError is
1265
+ raised if the source code cannot be retrieved."""
1266
+ object = unwrap(object)
1267
+ lines, lnum = findsource(object)
1268
+
1269
+ if istraceback(object):
1270
+ object = object.tb_frame
1271
+
1272
+ # for module or frame that corresponds to module, return all source lines
1273
+ if (ismodule(object) or
1274
+ (isframe(object) and object.f_code.co_name == "<module>")):
1275
+ return lines, 0
1276
+ else:
1277
+ return getblock(lines[lnum:]), lnum + 1
1278
+
1279
+ def getsource(object):
1280
+ """Return the text of the source code for an object.
1281
+
1282
+ The argument may be a module, class, method, function, traceback, frame,
1283
+ or code object. The source code is returned as a single string. An
1284
+ OSError is raised if the source code cannot be retrieved."""
1285
+ lines, lnum = getsourcelines(object)
1286
+ return ''.join(lines)
1287
+
1288
+ # --------------------------------------------------- class tree extraction
1289
+ def walktree(classes, children, parent):
1290
+ """Recursive helper function for getclasstree()."""
1291
+ results = []
1292
+ classes.sort(key=attrgetter('__module__', '__name__'))
1293
+ for c in classes:
1294
+ results.append((c, c.__bases__))
1295
+ if c in children:
1296
+ results.append(walktree(children[c], children, c))
1297
+ return results
1298
+
1299
+ def getclasstree(classes, unique=False):
1300
+ """Arrange the given list of classes into a hierarchy of nested lists.
1301
+
1302
+ Where a nested list appears, it contains classes derived from the class
1303
+ whose entry immediately precedes the list. Each entry is a 2-tuple
1304
+ containing a class and a tuple of its base classes. If the 'unique'
1305
+ argument is true, exactly one entry appears in the returned structure
1306
+ for each class in the given list. Otherwise, classes using multiple
1307
+ inheritance and their descendants will appear multiple times."""
1308
+ children = {}
1309
+ roots = []
1310
+ for c in classes:
1311
+ if c.__bases__:
1312
+ for parent in c.__bases__:
1313
+ if parent not in children:
1314
+ children[parent] = []
1315
+ if c not in children[parent]:
1316
+ children[parent].append(c)
1317
+ if unique and parent in classes: break
1318
+ elif c not in roots:
1319
+ roots.append(c)
1320
+ for parent in children:
1321
+ if parent not in classes:
1322
+ roots.append(parent)
1323
+ return walktree(roots, children, None)
1324
+
1325
+ # ------------------------------------------------ argument list extraction
1326
+ Arguments = namedtuple('Arguments', 'args, varargs, varkw')
1327
+
1328
+ def getargs(co):
1329
+ """Get information about the arguments accepted by a code object.
1330
+
1331
+ Three things are returned: (args, varargs, varkw), where
1332
+ 'args' is the list of argument names. Keyword-only arguments are
1333
+ appended. 'varargs' and 'varkw' are the names of the * and **
1334
+ arguments or None."""
1335
+ if not iscode(co):
1336
+ raise TypeError('{!r} is not a code object'.format(co))
1337
+
1338
+ names = co.co_varnames
1339
+ nargs = co.co_argcount
1340
+ nkwargs = co.co_kwonlyargcount
1341
+ args = list(names[:nargs])
1342
+ kwonlyargs = list(names[nargs:nargs+nkwargs])
1343
+
1344
+ nargs += nkwargs
1345
+ varargs = None
1346
+ if co.co_flags & CO_VARARGS:
1347
+ varargs = co.co_varnames[nargs]
1348
+ nargs = nargs + 1
1349
+ varkw = None
1350
+ if co.co_flags & CO_VARKEYWORDS:
1351
+ varkw = co.co_varnames[nargs]
1352
+ return Arguments(args + kwonlyargs, varargs, varkw)
1353
+
1354
+
1355
+ FullArgSpec = namedtuple('FullArgSpec',
1356
+ 'args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations')
1357
+
1358
+ def getfullargspec(func):
1359
+ """Get the names and default values of a callable object's parameters.
1360
+
1361
+ A tuple of seven things is returned:
1362
+ (args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, annotations).
1363
+ 'args' is a list of the parameter names.
1364
+ 'varargs' and 'varkw' are the names of the * and ** parameters or None.
1365
+ 'defaults' is an n-tuple of the default values of the last n parameters.
1366
+ 'kwonlyargs' is a list of keyword-only parameter names.
1367
+ 'kwonlydefaults' is a dictionary mapping names from kwonlyargs to defaults.
1368
+ 'annotations' is a dictionary mapping parameter names to annotations.
1369
+
1370
+ Notable differences from inspect.signature():
1371
+ - the "self" parameter is always reported, even for bound methods
1372
+ - wrapper chains defined by __wrapped__ *not* unwrapped automatically
1373
+ """
1374
+ try:
1375
+ # Re: `skip_bound_arg=False`
1376
+ #
1377
+ # There is a notable difference in behaviour between getfullargspec
1378
+ # and Signature: the former always returns 'self' parameter for bound
1379
+ # methods, whereas the Signature always shows the actual calling
1380
+ # signature of the passed object.
1381
+ #
1382
+ # To simulate this behaviour, we "unbind" bound methods, to trick
1383
+ # inspect.signature to always return their first parameter ("self",
1384
+ # usually)
1385
+
1386
+ # Re: `follow_wrapper_chains=False`
1387
+ #
1388
+ # getfullargspec() historically ignored __wrapped__ attributes,
1389
+ # so we ensure that remains the case in 3.3+
1390
+
1391
+ sig = _signature_from_callable(func,
1392
+ follow_wrapper_chains=False,
1393
+ skip_bound_arg=False,
1394
+ sigcls=Signature,
1395
+ eval_str=False)
1396
+ except Exception as ex:
1397
+ # Most of the times 'signature' will raise ValueError.
1398
+ # But, it can also raise AttributeError, and, maybe something
1399
+ # else. So to be fully backwards compatible, we catch all
1400
+ # possible exceptions here, and reraise a TypeError.
1401
+ raise TypeError('unsupported callable') from ex
1402
+
1403
+ args = []
1404
+ varargs = None
1405
+ varkw = None
1406
+ posonlyargs = []
1407
+ kwonlyargs = []
1408
+ annotations = {}
1409
+ defaults = ()
1410
+ kwdefaults = {}
1411
+
1412
+ if sig.return_annotation is not sig.empty:
1413
+ annotations['return'] = sig.return_annotation
1414
+
1415
+ for param in sig.parameters.values():
1416
+ kind = param.kind
1417
+ name = param.name
1418
+
1419
+ if kind is _POSITIONAL_ONLY:
1420
+ posonlyargs.append(name)
1421
+ if param.default is not param.empty:
1422
+ defaults += (param.default,)
1423
+ elif kind is _POSITIONAL_OR_KEYWORD:
1424
+ args.append(name)
1425
+ if param.default is not param.empty:
1426
+ defaults += (param.default,)
1427
+ elif kind is _VAR_POSITIONAL:
1428
+ varargs = name
1429
+ elif kind is _KEYWORD_ONLY:
1430
+ kwonlyargs.append(name)
1431
+ if param.default is not param.empty:
1432
+ kwdefaults[name] = param.default
1433
+ elif kind is _VAR_KEYWORD:
1434
+ varkw = name
1435
+
1436
+ if param.annotation is not param.empty:
1437
+ annotations[name] = param.annotation
1438
+
1439
+ if not kwdefaults:
1440
+ # compatibility with 'func.__kwdefaults__'
1441
+ kwdefaults = None
1442
+
1443
+ if not defaults:
1444
+ # compatibility with 'func.__defaults__'
1445
+ defaults = None
1446
+
1447
+ return FullArgSpec(posonlyargs + args, varargs, varkw, defaults,
1448
+ kwonlyargs, kwdefaults, annotations)
1449
+
1450
+
1451
+ ArgInfo = namedtuple('ArgInfo', 'args varargs keywords locals')
1452
+
1453
+ def getargvalues(frame):
1454
+ """Get information about arguments passed into a particular frame.
1455
+
1456
+ A tuple of four things is returned: (args, varargs, varkw, locals).
1457
+ 'args' is a list of the argument names.
1458
+ 'varargs' and 'varkw' are the names of the * and ** arguments or None.
1459
+ 'locals' is the locals dictionary of the given frame."""
1460
+ args, varargs, varkw = getargs(frame.f_code)
1461
+ return ArgInfo(args, varargs, varkw, frame.f_locals)
1462
+
1463
+ def formatannotation(annotation, base_module=None):
1464
+ if getattr(annotation, '__module__', None) == 'typing':
1465
+ def repl(match):
1466
+ text = match.group()
1467
+ return text.removeprefix('typing.')
1468
+ return re.sub(r'[\w\.]+', repl, repr(annotation))
1469
+ if isinstance(annotation, types.GenericAlias):
1470
+ return str(annotation)
1471
+ if isinstance(annotation, type):
1472
+ if annotation.__module__ in ('builtins', base_module):
1473
+ return annotation.__qualname__
1474
+ return annotation.__module__+'.'+annotation.__qualname__
1475
+ return repr(annotation)
1476
+
1477
+ def formatannotationrelativeto(object):
1478
+ module = getattr(object, '__module__', None)
1479
+ def _formatannotation(annotation):
1480
+ return formatannotation(annotation, module)
1481
+ return _formatannotation
1482
+
1483
+
1484
+ def formatargvalues(args, varargs, varkw, locals,
1485
+ formatarg=str,
1486
+ formatvarargs=lambda name: '*' + name,
1487
+ formatvarkw=lambda name: '**' + name,
1488
+ formatvalue=lambda value: '=' + repr(value)):
1489
+ """Format an argument spec from the 4 values returned by getargvalues.
1490
+
1491
+ The first four arguments are (args, varargs, varkw, locals). The
1492
+ next four arguments are the corresponding optional formatting functions
1493
+ that are called to turn names and values into strings. The ninth
1494
+ argument is an optional function to format the sequence of arguments."""
1495
+ def convert(name, locals=locals,
1496
+ formatarg=formatarg, formatvalue=formatvalue):
1497
+ return formatarg(name) + formatvalue(locals[name])
1498
+ specs = []
1499
+ for i in range(len(args)):
1500
+ specs.append(convert(args[i]))
1501
+ if varargs:
1502
+ specs.append(formatvarargs(varargs) + formatvalue(locals[varargs]))
1503
+ if varkw:
1504
+ specs.append(formatvarkw(varkw) + formatvalue(locals[varkw]))
1505
+ return '(' + ', '.join(specs) + ')'
1506
+
1507
+ def _missing_arguments(f_name, argnames, pos, values):
1508
+ names = [repr(name) for name in argnames if name not in values]
1509
+ missing = len(names)
1510
+ if missing == 1:
1511
+ s = names[0]
1512
+ elif missing == 2:
1513
+ s = "{} and {}".format(*names)
1514
+ else:
1515
+ tail = ", {} and {}".format(*names[-2:])
1516
+ del names[-2:]
1517
+ s = ", ".join(names) + tail
1518
+ raise TypeError("%s() missing %i required %s argument%s: %s" %
1519
+ (f_name, missing,
1520
+ "positional" if pos else "keyword-only",
1521
+ "" if missing == 1 else "s", s))
1522
+
1523
+ def _too_many(f_name, args, kwonly, varargs, defcount, given, values):
1524
+ atleast = len(args) - defcount
1525
+ kwonly_given = len([arg for arg in kwonly if arg in values])
1526
+ if varargs:
1527
+ plural = atleast != 1
1528
+ sig = "at least %d" % (atleast,)
1529
+ elif defcount:
1530
+ plural = True
1531
+ sig = "from %d to %d" % (atleast, len(args))
1532
+ else:
1533
+ plural = len(args) != 1
1534
+ sig = str(len(args))
1535
+ kwonly_sig = ""
1536
+ if kwonly_given:
1537
+ msg = " positional argument%s (and %d keyword-only argument%s)"
1538
+ kwonly_sig = (msg % ("s" if given != 1 else "", kwonly_given,
1539
+ "s" if kwonly_given != 1 else ""))
1540
+ raise TypeError("%s() takes %s positional argument%s but %d%s %s given" %
1541
+ (f_name, sig, "s" if plural else "", given, kwonly_sig,
1542
+ "was" if given == 1 and not kwonly_given else "were"))
1543
+
1544
+ def getcallargs(func, /, *positional, **named):
1545
+ """Get the mapping of arguments to values.
1546
+
1547
+ A dict is returned, with keys the function argument names (including the
1548
+ names of the * and ** arguments, if any), and values the respective bound
1549
+ values from 'positional' and 'named'."""
1550
+ spec = getfullargspec(func)
1551
+ args, varargs, varkw, defaults, kwonlyargs, kwonlydefaults, ann = spec
1552
+ f_name = func.__name__
1553
+ arg2value = {}
1554
+
1555
+
1556
+ if ismethod(func) and func.__self__ is not None:
1557
+ # implicit 'self' (or 'cls' for classmethods) argument
1558
+ positional = (func.__self__,) + positional
1559
+ num_pos = len(positional)
1560
+ num_args = len(args)
1561
+ num_defaults = len(defaults) if defaults else 0
1562
+
1563
+ n = min(num_pos, num_args)
1564
+ for i in range(n):
1565
+ arg2value[args[i]] = positional[i]
1566
+ if varargs:
1567
+ arg2value[varargs] = tuple(positional[n:])
1568
+ possible_kwargs = set(args + kwonlyargs)
1569
+ if varkw:
1570
+ arg2value[varkw] = {}
1571
+ for kw, value in named.items():
1572
+ if kw not in possible_kwargs:
1573
+ if not varkw:
1574
+ raise TypeError("%s() got an unexpected keyword argument %r" %
1575
+ (f_name, kw))
1576
+ arg2value[varkw][kw] = value
1577
+ continue
1578
+ if kw in arg2value:
1579
+ raise TypeError("%s() got multiple values for argument %r" %
1580
+ (f_name, kw))
1581
+ arg2value[kw] = value
1582
+ if num_pos > num_args and not varargs:
1583
+ _too_many(f_name, args, kwonlyargs, varargs, num_defaults,
1584
+ num_pos, arg2value)
1585
+ if num_pos < num_args:
1586
+ req = args[:num_args - num_defaults]
1587
+ for arg in req:
1588
+ if arg not in arg2value:
1589
+ _missing_arguments(f_name, req, True, arg2value)
1590
+ for i, arg in enumerate(args[num_args - num_defaults:]):
1591
+ if arg not in arg2value:
1592
+ arg2value[arg] = defaults[i]
1593
+ missing = 0
1594
+ for kwarg in kwonlyargs:
1595
+ if kwarg not in arg2value:
1596
+ if kwonlydefaults and kwarg in kwonlydefaults:
1597
+ arg2value[kwarg] = kwonlydefaults[kwarg]
1598
+ else:
1599
+ missing += 1
1600
+ if missing:
1601
+ _missing_arguments(f_name, kwonlyargs, False, arg2value)
1602
+ return arg2value
1603
+
1604
+ ClosureVars = namedtuple('ClosureVars', 'nonlocals globals builtins unbound')
1605
+
1606
+ def getclosurevars(func):
1607
+ """
1608
+ Get the mapping of free variables to their current values.
1609
+
1610
+ Returns a named tuple of dicts mapping the current nonlocal, global
1611
+ and builtin references as seen by the body of the function. A final
1612
+ set of unbound names that could not be resolved is also provided.
1613
+ """
1614
+
1615
+ if ismethod(func):
1616
+ func = func.__func__
1617
+
1618
+ if not isfunction(func):
1619
+ raise TypeError("{!r} is not a Python function".format(func))
1620
+
1621
+ code = func.__code__
1622
+ # Nonlocal references are named in co_freevars and resolved
1623
+ # by looking them up in __closure__ by positional index
1624
+ if func.__closure__ is None:
1625
+ nonlocal_vars = {}
1626
+ else:
1627
+ nonlocal_vars = {
1628
+ var : cell.cell_contents
1629
+ for var, cell in zip(code.co_freevars, func.__closure__)
1630
+ }
1631
+
1632
+ # Global and builtin references are named in co_names and resolved
1633
+ # by looking them up in __globals__ or __builtins__
1634
+ global_ns = func.__globals__
1635
+ builtin_ns = global_ns.get("__builtins__", builtins.__dict__)
1636
+ if ismodule(builtin_ns):
1637
+ builtin_ns = builtin_ns.__dict__
1638
+ global_vars = {}
1639
+ builtin_vars = {}
1640
+ unbound_names = set()
1641
+ global_names = set()
1642
+ for instruction in dis.get_instructions(code):
1643
+ opname = instruction.opname
1644
+ name = instruction.argval
1645
+ if opname == "LOAD_ATTR":
1646
+ unbound_names.add(name)
1647
+ elif opname == "LOAD_GLOBAL":
1648
+ global_names.add(name)
1649
+ for name in global_names:
1650
+ try:
1651
+ global_vars[name] = global_ns[name]
1652
+ except KeyError:
1653
+ try:
1654
+ builtin_vars[name] = builtin_ns[name]
1655
+ except KeyError:
1656
+ unbound_names.add(name)
1657
+
1658
+ return ClosureVars(nonlocal_vars, global_vars,
1659
+ builtin_vars, unbound_names)
1660
+
1661
+ # -------------------------------------------------- stack frame extraction
1662
+
1663
+ _Traceback = namedtuple('_Traceback', 'filename lineno function code_context index')
1664
+
1665
+ class Traceback(_Traceback):
1666
+ def __new__(cls, filename, lineno, function, code_context, index, *, positions=None):
1667
+ instance = super().__new__(cls, filename, lineno, function, code_context, index)
1668
+ instance.positions = positions
1669
+ return instance
1670
+
1671
+ def __repr__(self):
1672
+ return ('Traceback(filename={!r}, lineno={!r}, function={!r}, '
1673
+ 'code_context={!r}, index={!r}, positions={!r})'.format(
1674
+ self.filename, self.lineno, self.function, self.code_context,
1675
+ self.index, self.positions))
1676
+
1677
+ def _get_code_position_from_tb(tb):
1678
+ code, instruction_index = tb.tb_frame.f_code, tb.tb_lasti
1679
+ return _get_code_position(code, instruction_index)
1680
+
1681
+ def _get_code_position(code, instruction_index):
1682
+ if instruction_index < 0:
1683
+ return (None, None, None, None)
1684
+ positions_gen = code.co_positions()
1685
+ # The nth entry in code.co_positions() corresponds to instruction (2*n)th since Python 3.10+
1686
+ return next(itertools.islice(positions_gen, instruction_index // 2, None))
1687
+
1688
+ def getframeinfo(frame, context=1):
1689
+ """Get information about a frame or traceback object.
1690
+
1691
+ A tuple of five things is returned: the filename, the line number of
1692
+ the current line, the function name, a list of lines of context from
1693
+ the source code, and the index of the current line within that list.
1694
+ The optional second argument specifies the number of lines of context
1695
+ to return, which are centered around the current line."""
1696
+ if istraceback(frame):
1697
+ positions = _get_code_position_from_tb(frame)
1698
+ lineno = frame.tb_lineno
1699
+ frame = frame.tb_frame
1700
+ else:
1701
+ lineno = frame.f_lineno
1702
+ positions = _get_code_position(frame.f_code, frame.f_lasti)
1703
+
1704
+ if positions[0] is None:
1705
+ frame, *positions = (frame, lineno, *positions[1:])
1706
+ else:
1707
+ frame, *positions = (frame, *positions)
1708
+
1709
+ lineno = positions[0]
1710
+
1711
+ if not isframe(frame):
1712
+ raise TypeError('{!r} is not a frame or traceback object'.format(frame))
1713
+
1714
+ filename = getsourcefile(frame) or getfile(frame)
1715
+ if context > 0:
1716
+ start = lineno - 1 - context//2
1717
+ try:
1718
+ lines, lnum = findsource(frame)
1719
+ except OSError:
1720
+ lines = index = None
1721
+ else:
1722
+ start = max(0, min(start, len(lines) - context))
1723
+ lines = lines[start:start+context]
1724
+ index = lineno - 1 - start
1725
+ else:
1726
+ lines = index = None
1727
+
1728
+ return Traceback(filename, lineno, frame.f_code.co_name, lines,
1729
+ index, positions=dis.Positions(*positions))
1730
+
1731
+ def getlineno(frame):
1732
+ """Get the line number from a frame object, allowing for optimization."""
1733
+ # FrameType.f_lineno is now a descriptor that grovels co_lnotab
1734
+ return frame.f_lineno
1735
+
1736
+ _FrameInfo = namedtuple('_FrameInfo', ('frame',) + Traceback._fields)
1737
+ class FrameInfo(_FrameInfo):
1738
+ def __new__(cls, frame, filename, lineno, function, code_context, index, *, positions=None):
1739
+ instance = super().__new__(cls, frame, filename, lineno, function, code_context, index)
1740
+ instance.positions = positions
1741
+ return instance
1742
+
1743
+ def __repr__(self):
1744
+ return ('FrameInfo(frame={!r}, filename={!r}, lineno={!r}, function={!r}, '
1745
+ 'code_context={!r}, index={!r}, positions={!r})'.format(
1746
+ self.frame, self.filename, self.lineno, self.function,
1747
+ self.code_context, self.index, self.positions))
1748
+
1749
+ def getouterframes(frame, context=1):
1750
+ """Get a list of records for a frame and all higher (calling) frames.
1751
+
1752
+ Each record contains a frame object, filename, line number, function
1753
+ name, a list of lines of context, and index within the context."""
1754
+ framelist = []
1755
+ while frame:
1756
+ traceback_info = getframeinfo(frame, context)
1757
+ frameinfo = (frame,) + traceback_info
1758
+ framelist.append(FrameInfo(*frameinfo, positions=traceback_info.positions))
1759
+ frame = frame.f_back
1760
+ return framelist
1761
+
1762
+ def getinnerframes(tb, context=1):
1763
+ """Get a list of records for a traceback's frame and all lower frames.
1764
+
1765
+ Each record contains a frame object, filename, line number, function
1766
+ name, a list of lines of context, and index within the context."""
1767
+ framelist = []
1768
+ while tb:
1769
+ traceback_info = getframeinfo(tb, context)
1770
+ frameinfo = (tb.tb_frame,) + traceback_info
1771
+ framelist.append(FrameInfo(*frameinfo, positions=traceback_info.positions))
1772
+ tb = tb.tb_next
1773
+ return framelist
1774
+
1775
+ def currentframe():
1776
+ """Return the frame of the caller or None if this is not possible."""
1777
+ return sys._getframe(1) if hasattr(sys, "_getframe") else None
1778
+
1779
+ def stack(context=1):
1780
+ """Return a list of records for the stack above the caller's frame."""
1781
+ return getouterframes(sys._getframe(1), context)
1782
+
1783
+ def trace(context=1):
1784
+ """Return a list of records for the stack below the current exception."""
1785
+ exc = sys.exception()
1786
+ tb = None if exc is None else exc.__traceback__
1787
+ return getinnerframes(tb, context)
1788
+
1789
+
1790
+ # ------------------------------------------------ static version of getattr
1791
+
1792
+ _sentinel = object()
1793
+ _static_getmro = type.__dict__['__mro__'].__get__
1794
+ _get_dunder_dict_of_class = type.__dict__["__dict__"].__get__
1795
+
1796
+
1797
+ def _check_instance(obj, attr):
1798
+ instance_dict = {}
1799
+ try:
1800
+ instance_dict = object.__getattribute__(obj, "__dict__")
1801
+ except AttributeError:
1802
+ pass
1803
+ return dict.get(instance_dict, attr, _sentinel)
1804
+
1805
+
1806
+ def _check_class(klass, attr):
1807
+ for entry in _static_getmro(klass):
1808
+ if _shadowed_dict(type(entry)) is _sentinel and attr in entry.__dict__:
1809
+ return entry.__dict__[attr]
1810
+ return _sentinel
1811
+
1812
+
1813
+ @functools.lru_cache()
1814
+ def _shadowed_dict_from_weakref_mro_tuple(*weakref_mro):
1815
+ for weakref_entry in weakref_mro:
1816
+ # Normally we'd have to check whether the result of weakref_entry()
1817
+ # is None here, in case the object the weakref is pointing to has died.
1818
+ # In this specific case, however, we know that the only caller of this
1819
+ # function is `_shadowed_dict()`, and that therefore this weakref is
1820
+ # guaranteed to point to an object that is still alive.
1821
+ entry = weakref_entry()
1822
+ dunder_dict = _get_dunder_dict_of_class(entry)
1823
+ if '__dict__' in dunder_dict:
1824
+ class_dict = dunder_dict['__dict__']
1825
+ if not (type(class_dict) is types.GetSetDescriptorType and
1826
+ class_dict.__name__ == "__dict__" and
1827
+ class_dict.__objclass__ is entry):
1828
+ return class_dict
1829
+ return _sentinel
1830
+
1831
+
1832
+ def _shadowed_dict(klass):
1833
+ # gh-118013: the inner function here is decorated with lru_cache for
1834
+ # performance reasons, *but* make sure not to pass strong references
1835
+ # to the items in the mro. Doing so can lead to unexpected memory
1836
+ # consumption in cases where classes are dynamically created and
1837
+ # destroyed, and the dynamically created classes happen to be the only
1838
+ # objects that hold strong references to other objects that take up a
1839
+ # significant amount of memory.
1840
+ return _shadowed_dict_from_weakref_mro_tuple(
1841
+ *[make_weakref(entry) for entry in _static_getmro(klass)]
1842
+ )
1843
+
1844
+
1845
+ def getattr_static(obj, attr, default=_sentinel):
1846
+ """Retrieve attributes without triggering dynamic lookup via the
1847
+ descriptor protocol, __getattr__ or __getattribute__.
1848
+
1849
+ Note: this function may not be able to retrieve all attributes
1850
+ that getattr can fetch (like dynamically created attributes)
1851
+ and may find attributes that getattr can't (like descriptors
1852
+ that raise AttributeError). It can also return descriptor objects
1853
+ instead of instance members in some cases. See the
1854
+ documentation for details.
1855
+ """
1856
+ instance_result = _sentinel
1857
+
1858
+ objtype = type(obj)
1859
+ if type not in _static_getmro(objtype):
1860
+ klass = objtype
1861
+ dict_attr = _shadowed_dict(klass)
1862
+ if (dict_attr is _sentinel or
1863
+ type(dict_attr) is types.MemberDescriptorType):
1864
+ instance_result = _check_instance(obj, attr)
1865
+ else:
1866
+ klass = obj
1867
+
1868
+ klass_result = _check_class(klass, attr)
1869
+
1870
+ if instance_result is not _sentinel and klass_result is not _sentinel:
1871
+ if _check_class(type(klass_result), "__get__") is not _sentinel and (
1872
+ _check_class(type(klass_result), "__set__") is not _sentinel
1873
+ or _check_class(type(klass_result), "__delete__") is not _sentinel
1874
+ ):
1875
+ return klass_result
1876
+
1877
+ if instance_result is not _sentinel:
1878
+ return instance_result
1879
+ if klass_result is not _sentinel:
1880
+ return klass_result
1881
+
1882
+ if obj is klass:
1883
+ # for types we check the metaclass too
1884
+ for entry in _static_getmro(type(klass)):
1885
+ if (
1886
+ _shadowed_dict(type(entry)) is _sentinel
1887
+ and attr in entry.__dict__
1888
+ ):
1889
+ return entry.__dict__[attr]
1890
+ if default is not _sentinel:
1891
+ return default
1892
+ raise AttributeError(attr)
1893
+
1894
+
1895
+ # ------------------------------------------------ generator introspection
1896
+
1897
+ GEN_CREATED = 'GEN_CREATED'
1898
+ GEN_RUNNING = 'GEN_RUNNING'
1899
+ GEN_SUSPENDED = 'GEN_SUSPENDED'
1900
+ GEN_CLOSED = 'GEN_CLOSED'
1901
+
1902
+ def getgeneratorstate(generator):
1903
+ """Get current state of a generator-iterator.
1904
+
1905
+ Possible states are:
1906
+ GEN_CREATED: Waiting to start execution.
1907
+ GEN_RUNNING: Currently being executed by the interpreter.
1908
+ GEN_SUSPENDED: Currently suspended at a yield expression.
1909
+ GEN_CLOSED: Execution has completed.
1910
+ """
1911
+ if generator.gi_running:
1912
+ return GEN_RUNNING
1913
+ if generator.gi_suspended:
1914
+ return GEN_SUSPENDED
1915
+ if generator.gi_frame is None:
1916
+ return GEN_CLOSED
1917
+ return GEN_CREATED
1918
+
1919
+
1920
+ def getgeneratorlocals(generator):
1921
+ """
1922
+ Get the mapping of generator local variables to their current values.
1923
+
1924
+ A dict is returned, with the keys the local variable names and values the
1925
+ bound values."""
1926
+
1927
+ if not isgenerator(generator):
1928
+ raise TypeError("{!r} is not a Python generator".format(generator))
1929
+
1930
+ frame = getattr(generator, "gi_frame", None)
1931
+ if frame is not None:
1932
+ return generator.gi_frame.f_locals
1933
+ else:
1934
+ return {}
1935
+
1936
+
1937
+ # ------------------------------------------------ coroutine introspection
1938
+
1939
+ CORO_CREATED = 'CORO_CREATED'
1940
+ CORO_RUNNING = 'CORO_RUNNING'
1941
+ CORO_SUSPENDED = 'CORO_SUSPENDED'
1942
+ CORO_CLOSED = 'CORO_CLOSED'
1943
+
1944
+ def getcoroutinestate(coroutine):
1945
+ """Get current state of a coroutine object.
1946
+
1947
+ Possible states are:
1948
+ CORO_CREATED: Waiting to start execution.
1949
+ CORO_RUNNING: Currently being executed by the interpreter.
1950
+ CORO_SUSPENDED: Currently suspended at an await expression.
1951
+ CORO_CLOSED: Execution has completed.
1952
+ """
1953
+ if coroutine.cr_running:
1954
+ return CORO_RUNNING
1955
+ if coroutine.cr_suspended:
1956
+ return CORO_SUSPENDED
1957
+ if coroutine.cr_frame is None:
1958
+ return CORO_CLOSED
1959
+ return CORO_CREATED
1960
+
1961
+
1962
+ def getcoroutinelocals(coroutine):
1963
+ """
1964
+ Get the mapping of coroutine local variables to their current values.
1965
+
1966
+ A dict is returned, with the keys the local variable names and values the
1967
+ bound values."""
1968
+ frame = getattr(coroutine, "cr_frame", None)
1969
+ if frame is not None:
1970
+ return frame.f_locals
1971
+ else:
1972
+ return {}
1973
+
1974
+
1975
+ # ----------------------------------- asynchronous generator introspection
1976
+
1977
+ AGEN_CREATED = 'AGEN_CREATED'
1978
+ AGEN_RUNNING = 'AGEN_RUNNING'
1979
+ AGEN_SUSPENDED = 'AGEN_SUSPENDED'
1980
+ AGEN_CLOSED = 'AGEN_CLOSED'
1981
+
1982
+
1983
+ def getasyncgenstate(agen):
1984
+ """Get current state of an asynchronous generator object.
1985
+
1986
+ Possible states are:
1987
+ AGEN_CREATED: Waiting to start execution.
1988
+ AGEN_RUNNING: Currently being executed by the interpreter.
1989
+ AGEN_SUSPENDED: Currently suspended at a yield expression.
1990
+ AGEN_CLOSED: Execution has completed.
1991
+ """
1992
+ if agen.ag_running:
1993
+ return AGEN_RUNNING
1994
+ if agen.ag_suspended:
1995
+ return AGEN_SUSPENDED
1996
+ if agen.ag_frame is None:
1997
+ return AGEN_CLOSED
1998
+ return AGEN_CREATED
1999
+
2000
+
2001
+ def getasyncgenlocals(agen):
2002
+ """
2003
+ Get the mapping of asynchronous generator local variables to their current
2004
+ values.
2005
+
2006
+ A dict is returned, with the keys the local variable names and values the
2007
+ bound values."""
2008
+
2009
+ if not isasyncgen(agen):
2010
+ raise TypeError(f"{agen!r} is not a Python async generator")
2011
+
2012
+ frame = getattr(agen, "ag_frame", None)
2013
+ if frame is not None:
2014
+ return agen.ag_frame.f_locals
2015
+ else:
2016
+ return {}
2017
+
2018
+
2019
+ ###############################################################################
2020
+ ### Function Signature Object (PEP 362)
2021
+ ###############################################################################
2022
+
2023
+
2024
+ _NonUserDefinedCallables = (types.WrapperDescriptorType,
2025
+ types.MethodWrapperType,
2026
+ types.ClassMethodDescriptorType,
2027
+ types.BuiltinFunctionType)
2028
+
2029
+
2030
+ def _signature_get_user_defined_method(cls, method_name):
2031
+ """Private helper. Checks if ``cls`` has an attribute
2032
+ named ``method_name`` and returns it only if it is a
2033
+ pure python function.
2034
+ """
2035
+ if method_name == '__new__':
2036
+ meth = getattr(cls, method_name, None)
2037
+ else:
2038
+ meth = getattr_static(cls, method_name, None)
2039
+ if meth is None or isinstance(meth, _NonUserDefinedCallables):
2040
+ # Once '__signature__' will be added to 'C'-level
2041
+ # callables, this check won't be necessary
2042
+ return None
2043
+ if method_name != '__new__':
2044
+ meth = _descriptor_get(meth, cls)
2045
+ return meth
2046
+
2047
+
2048
+ def _signature_get_partial(wrapped_sig, partial, extra_args=()):
2049
+ """Private helper to calculate how 'wrapped_sig' signature will
2050
+ look like after applying a 'functools.partial' object (or alike)
2051
+ on it.
2052
+ """
2053
+
2054
+ old_params = wrapped_sig.parameters
2055
+ new_params = OrderedDict(old_params.items())
2056
+
2057
+ partial_args = partial.args or ()
2058
+ partial_keywords = partial.keywords or {}
2059
+
2060
+ if extra_args:
2061
+ partial_args = extra_args + partial_args
2062
+
2063
+ try:
2064
+ ba = wrapped_sig.bind_partial(*partial_args, **partial_keywords)
2065
+ except TypeError as ex:
2066
+ msg = 'partial object {!r} has incorrect arguments'.format(partial)
2067
+ raise ValueError(msg) from ex
2068
+
2069
+
2070
+ transform_to_kwonly = False
2071
+ for param_name, param in old_params.items():
2072
+ try:
2073
+ arg_value = ba.arguments[param_name]
2074
+ except KeyError:
2075
+ pass
2076
+ else:
2077
+ if param.kind is _POSITIONAL_ONLY:
2078
+ # If positional-only parameter is bound by partial,
2079
+ # it effectively disappears from the signature
2080
+ new_params.pop(param_name)
2081
+ continue
2082
+
2083
+ if param.kind is _POSITIONAL_OR_KEYWORD:
2084
+ if param_name in partial_keywords:
2085
+ # This means that this parameter, and all parameters
2086
+ # after it should be keyword-only (and var-positional
2087
+ # should be removed). Here's why. Consider the following
2088
+ # function:
2089
+ # foo(a, b, *args, c):
2090
+ # pass
2091
+ #
2092
+ # "partial(foo, a='spam')" will have the following
2093
+ # signature: "(*, a='spam', b, c)". Because attempting
2094
+ # to call that partial with "(10, 20)" arguments will
2095
+ # raise a TypeError, saying that "a" argument received
2096
+ # multiple values.
2097
+ transform_to_kwonly = True
2098
+ # Set the new default value
2099
+ new_params[param_name] = param.replace(default=arg_value)
2100
+ else:
2101
+ # was passed as a positional argument
2102
+ new_params.pop(param.name)
2103
+ continue
2104
+
2105
+ if param.kind is _KEYWORD_ONLY:
2106
+ # Set the new default value
2107
+ new_params[param_name] = param.replace(default=arg_value)
2108
+
2109
+ if transform_to_kwonly:
2110
+ assert param.kind is not _POSITIONAL_ONLY
2111
+
2112
+ if param.kind is _POSITIONAL_OR_KEYWORD:
2113
+ new_param = new_params[param_name].replace(kind=_KEYWORD_ONLY)
2114
+ new_params[param_name] = new_param
2115
+ new_params.move_to_end(param_name)
2116
+ elif param.kind in (_KEYWORD_ONLY, _VAR_KEYWORD):
2117
+ new_params.move_to_end(param_name)
2118
+ elif param.kind is _VAR_POSITIONAL:
2119
+ new_params.pop(param.name)
2120
+
2121
+ return wrapped_sig.replace(parameters=new_params.values())
2122
+
2123
+
2124
+ def _signature_bound_method(sig):
2125
+ """Private helper to transform signatures for unbound
2126
+ functions to bound methods.
2127
+ """
2128
+
2129
+ params = tuple(sig.parameters.values())
2130
+
2131
+ if not params or params[0].kind in (_VAR_KEYWORD, _KEYWORD_ONLY):
2132
+ raise ValueError('invalid method signature')
2133
+
2134
+ kind = params[0].kind
2135
+ if kind in (_POSITIONAL_OR_KEYWORD, _POSITIONAL_ONLY):
2136
+ # Drop first parameter:
2137
+ # '(p1, p2[, ...])' -> '(p2[, ...])'
2138
+ params = params[1:]
2139
+ else:
2140
+ if kind is not _VAR_POSITIONAL:
2141
+ # Unless we add a new parameter type we never
2142
+ # get here
2143
+ raise ValueError('invalid argument type')
2144
+ # It's a var-positional parameter.
2145
+ # Do nothing. '(*args[, ...])' -> '(*args[, ...])'
2146
+
2147
+ return sig.replace(parameters=params)
2148
+
2149
+
2150
+ def _signature_is_builtin(obj):
2151
+ """Private helper to test if `obj` is a callable that might
2152
+ support Argument Clinic's __text_signature__ protocol.
2153
+ """
2154
+ return (isbuiltin(obj) or
2155
+ ismethoddescriptor(obj) or
2156
+ isinstance(obj, _NonUserDefinedCallables) or
2157
+ # Can't test 'isinstance(type)' here, as it would
2158
+ # also be True for regular python classes.
2159
+ # Can't use the `in` operator here, as it would
2160
+ # invoke the custom __eq__ method.
2161
+ obj is type or obj is object)
2162
+
2163
+
2164
+ def _signature_is_functionlike(obj):
2165
+ """Private helper to test if `obj` is a duck type of FunctionType.
2166
+ A good example of such objects are functions compiled with
2167
+ Cython, which have all attributes that a pure Python function
2168
+ would have, but have their code statically compiled.
2169
+ """
2170
+
2171
+ if not callable(obj) or isclass(obj):
2172
+ # All function-like objects are obviously callables,
2173
+ # and not classes.
2174
+ return False
2175
+
2176
+ name = getattr(obj, '__name__', None)
2177
+ code = getattr(obj, '__code__', None)
2178
+ defaults = getattr(obj, '__defaults__', _void) # Important to use _void ...
2179
+ kwdefaults = getattr(obj, '__kwdefaults__', _void) # ... and not None here
2180
+ annotations = getattr(obj, '__annotations__', None)
2181
+
2182
+ return (isinstance(code, types.CodeType) and
2183
+ isinstance(name, str) and
2184
+ (defaults is None or isinstance(defaults, tuple)) and
2185
+ (kwdefaults is None or isinstance(kwdefaults, dict)) and
2186
+ (isinstance(annotations, (dict)) or annotations is None) )
2187
+
2188
+
2189
+ def _signature_strip_non_python_syntax(signature):
2190
+ """
2191
+ Private helper function. Takes a signature in Argument Clinic's
2192
+ extended signature format.
2193
+
2194
+ Returns a tuple of two things:
2195
+ * that signature re-rendered in standard Python syntax, and
2196
+ * the index of the "self" parameter (generally 0), or None if
2197
+ the function does not have a "self" parameter.
2198
+ """
2199
+
2200
+ if not signature:
2201
+ return signature, None
2202
+
2203
+ self_parameter = None
2204
+
2205
+ lines = [l.encode('ascii') for l in signature.split('\n') if l]
2206
+ generator = iter(lines).__next__
2207
+ token_stream = tokenize.tokenize(generator)
2208
+
2209
+ text = []
2210
+ add = text.append
2211
+
2212
+ current_parameter = 0
2213
+ OP = token.OP
2214
+ ERRORTOKEN = token.ERRORTOKEN
2215
+
2216
+ # token stream always starts with ENCODING token, skip it
2217
+ t = next(token_stream)
2218
+ assert t.type == tokenize.ENCODING
2219
+
2220
+ for t in token_stream:
2221
+ type, string = t.type, t.string
2222
+
2223
+ if type == OP:
2224
+ if string == ',':
2225
+ current_parameter += 1
2226
+
2227
+ if (type == OP) and (string == '$'):
2228
+ assert self_parameter is None
2229
+ self_parameter = current_parameter
2230
+ continue
2231
+
2232
+ add(string)
2233
+ if (string == ','):
2234
+ add(' ')
2235
+ clean_signature = ''.join(text).strip().replace("\n", "")
2236
+ return clean_signature, self_parameter
2237
+
2238
+
2239
+ def _signature_fromstr(cls, obj, s, skip_bound_arg=True):
2240
+ """Private helper to parse content of '__text_signature__'
2241
+ and return a Signature based on it.
2242
+ """
2243
+ Parameter = cls._parameter_cls
2244
+
2245
+ clean_signature, self_parameter = _signature_strip_non_python_syntax(s)
2246
+
2247
+ program = "def foo" + clean_signature + ": pass"
2248
+
2249
+ try:
2250
+ module = ast.parse(program)
2251
+ except SyntaxError:
2252
+ module = None
2253
+
2254
+ if not isinstance(module, ast.Module):
2255
+ raise ValueError("{!r} builtin has invalid signature".format(obj))
2256
+
2257
+ f = module.body[0]
2258
+
2259
+ parameters = []
2260
+ empty = Parameter.empty
2261
+
2262
+ module = None
2263
+ module_dict = {}
2264
+ module_name = getattr(obj, '__module__', None)
2265
+ if module_name:
2266
+ module = sys.modules.get(module_name, None)
2267
+ if module:
2268
+ module_dict = module.__dict__
2269
+ sys_module_dict = sys.modules.copy()
2270
+
2271
+ def parse_name(node):
2272
+ assert isinstance(node, ast.arg)
2273
+ if node.annotation is not None:
2274
+ raise ValueError("Annotations are not currently supported")
2275
+ return node.arg
2276
+
2277
+ def wrap_value(s):
2278
+ try:
2279
+ value = eval(s, module_dict)
2280
+ except NameError:
2281
+ try:
2282
+ value = eval(s, sys_module_dict)
2283
+ except NameError:
2284
+ raise ValueError
2285
+
2286
+ if isinstance(value, (str, int, float, bytes, bool, type(None))):
2287
+ return ast.Constant(value)
2288
+ raise ValueError
2289
+
2290
+ class RewriteSymbolics(ast.NodeTransformer):
2291
+ def visit_Attribute(self, node):
2292
+ a = []
2293
+ n = node
2294
+ while isinstance(n, ast.Attribute):
2295
+ a.append(n.attr)
2296
+ n = n.value
2297
+ if not isinstance(n, ast.Name):
2298
+ raise ValueError
2299
+ a.append(n.id)
2300
+ value = ".".join(reversed(a))
2301
+ return wrap_value(value)
2302
+
2303
+ def visit_Name(self, node):
2304
+ if not isinstance(node.ctx, ast.Load):
2305
+ raise ValueError()
2306
+ return wrap_value(node.id)
2307
+
2308
+ def visit_BinOp(self, node):
2309
+ # Support constant folding of a couple simple binary operations
2310
+ # commonly used to define default values in text signatures
2311
+ left = self.visit(node.left)
2312
+ right = self.visit(node.right)
2313
+ if not isinstance(left, ast.Constant) or not isinstance(right, ast.Constant):
2314
+ raise ValueError
2315
+ if isinstance(node.op, ast.Add):
2316
+ return ast.Constant(left.value + right.value)
2317
+ elif isinstance(node.op, ast.Sub):
2318
+ return ast.Constant(left.value - right.value)
2319
+ elif isinstance(node.op, ast.BitOr):
2320
+ return ast.Constant(left.value | right.value)
2321
+ raise ValueError
2322
+
2323
+ def p(name_node, default_node, default=empty):
2324
+ name = parse_name(name_node)
2325
+ if default_node and default_node is not _empty:
2326
+ try:
2327
+ default_node = RewriteSymbolics().visit(default_node)
2328
+ default = ast.literal_eval(default_node)
2329
+ except ValueError:
2330
+ raise ValueError("{!r} builtin has invalid signature".format(obj)) from None
2331
+ parameters.append(Parameter(name, kind, default=default, annotation=empty))
2332
+
2333
+ # non-keyword-only parameters
2334
+ total_non_kw_args = len(f.args.posonlyargs) + len(f.args.args)
2335
+ required_non_kw_args = total_non_kw_args - len(f.args.defaults)
2336
+ defaults = itertools.chain(itertools.repeat(None, required_non_kw_args), f.args.defaults)
2337
+
2338
+ kind = Parameter.POSITIONAL_ONLY
2339
+ for (name, default) in zip(f.args.posonlyargs, defaults):
2340
+ p(name, default)
2341
+
2342
+ kind = Parameter.POSITIONAL_OR_KEYWORD
2343
+ for (name, default) in zip(f.args.args, defaults):
2344
+ p(name, default)
2345
+
2346
+ # *args
2347
+ if f.args.vararg:
2348
+ kind = Parameter.VAR_POSITIONAL
2349
+ p(f.args.vararg, empty)
2350
+
2351
+ # keyword-only arguments
2352
+ kind = Parameter.KEYWORD_ONLY
2353
+ for name, default in zip(f.args.kwonlyargs, f.args.kw_defaults):
2354
+ p(name, default)
2355
+
2356
+ # **kwargs
2357
+ if f.args.kwarg:
2358
+ kind = Parameter.VAR_KEYWORD
2359
+ p(f.args.kwarg, empty)
2360
+
2361
+ if self_parameter is not None:
2362
+ # Possibly strip the bound argument:
2363
+ # - We *always* strip first bound argument if
2364
+ # it is a module.
2365
+ # - We don't strip first bound argument if
2366
+ # skip_bound_arg is False.
2367
+ assert parameters
2368
+ _self = getattr(obj, '__self__', None)
2369
+ self_isbound = _self is not None
2370
+ self_ismodule = ismodule(_self)
2371
+ if self_isbound and (self_ismodule or skip_bound_arg):
2372
+ parameters.pop(0)
2373
+ else:
2374
+ # for builtins, self parameter is always positional-only!
2375
+ p = parameters[0].replace(kind=Parameter.POSITIONAL_ONLY)
2376
+ parameters[0] = p
2377
+
2378
+ return cls(parameters, return_annotation=cls.empty)
2379
+
2380
+
2381
+ def _signature_from_builtin(cls, func, skip_bound_arg=True):
2382
+ """Private helper function to get signature for
2383
+ builtin callables.
2384
+ """
2385
+
2386
+ if not _signature_is_builtin(func):
2387
+ raise TypeError("{!r} is not a Python builtin "
2388
+ "function".format(func))
2389
+
2390
+ s = getattr(func, "__text_signature__", None)
2391
+ if not s:
2392
+ raise ValueError("no signature found for builtin {!r}".format(func))
2393
+
2394
+ return _signature_fromstr(cls, func, s, skip_bound_arg)
2395
+
2396
+
2397
+ def _signature_from_function(cls, func, skip_bound_arg=True,
2398
+ globals=None, locals=None, eval_str=False):
2399
+ """Private helper: constructs Signature for the given python function."""
2400
+
2401
+ is_duck_function = False
2402
+ if not isfunction(func):
2403
+ if _signature_is_functionlike(func):
2404
+ is_duck_function = True
2405
+ else:
2406
+ # If it's not a pure Python function, and not a duck type
2407
+ # of pure function:
2408
+ raise TypeError('{!r} is not a Python function'.format(func))
2409
+
2410
+ s = getattr(func, "__text_signature__", None)
2411
+ if s:
2412
+ return _signature_fromstr(cls, func, s, skip_bound_arg)
2413
+
2414
+ Parameter = cls._parameter_cls
2415
+
2416
+ # Parameter information.
2417
+ func_code = func.__code__
2418
+ pos_count = func_code.co_argcount
2419
+ arg_names = func_code.co_varnames
2420
+ posonly_count = func_code.co_posonlyargcount
2421
+ positional = arg_names[:pos_count]
2422
+ keyword_only_count = func_code.co_kwonlyargcount
2423
+ keyword_only = arg_names[pos_count:pos_count + keyword_only_count]
2424
+ annotations = get_annotations(func, globals=globals, locals=locals, eval_str=eval_str)
2425
+ defaults = func.__defaults__
2426
+ kwdefaults = func.__kwdefaults__
2427
+
2428
+ if defaults:
2429
+ pos_default_count = len(defaults)
2430
+ else:
2431
+ pos_default_count = 0
2432
+
2433
+ parameters = []
2434
+
2435
+ non_default_count = pos_count - pos_default_count
2436
+ posonly_left = posonly_count
2437
+
2438
+ # Non-keyword-only parameters w/o defaults.
2439
+ for name in positional[:non_default_count]:
2440
+ kind = _POSITIONAL_ONLY if posonly_left else _POSITIONAL_OR_KEYWORD
2441
+ annotation = annotations.get(name, _empty)
2442
+ parameters.append(Parameter(name, annotation=annotation,
2443
+ kind=kind))
2444
+ if posonly_left:
2445
+ posonly_left -= 1
2446
+
2447
+ # ... w/ defaults.
2448
+ for offset, name in enumerate(positional[non_default_count:]):
2449
+ kind = _POSITIONAL_ONLY if posonly_left else _POSITIONAL_OR_KEYWORD
2450
+ annotation = annotations.get(name, _empty)
2451
+ parameters.append(Parameter(name, annotation=annotation,
2452
+ kind=kind,
2453
+ default=defaults[offset]))
2454
+ if posonly_left:
2455
+ posonly_left -= 1
2456
+
2457
+ # *args
2458
+ if func_code.co_flags & CO_VARARGS:
2459
+ name = arg_names[pos_count + keyword_only_count]
2460
+ annotation = annotations.get(name, _empty)
2461
+ parameters.append(Parameter(name, annotation=annotation,
2462
+ kind=_VAR_POSITIONAL))
2463
+
2464
+ # Keyword-only parameters.
2465
+ for name in keyword_only:
2466
+ default = _empty
2467
+ if kwdefaults is not None:
2468
+ default = kwdefaults.get(name, _empty)
2469
+
2470
+ annotation = annotations.get(name, _empty)
2471
+ parameters.append(Parameter(name, annotation=annotation,
2472
+ kind=_KEYWORD_ONLY,
2473
+ default=default))
2474
+ # **kwargs
2475
+ if func_code.co_flags & CO_VARKEYWORDS:
2476
+ index = pos_count + keyword_only_count
2477
+ if func_code.co_flags & CO_VARARGS:
2478
+ index += 1
2479
+
2480
+ name = arg_names[index]
2481
+ annotation = annotations.get(name, _empty)
2482
+ parameters.append(Parameter(name, annotation=annotation,
2483
+ kind=_VAR_KEYWORD))
2484
+
2485
+ # Is 'func' is a pure Python function - don't validate the
2486
+ # parameters list (for correct order and defaults), it should be OK.
2487
+ return cls(parameters,
2488
+ return_annotation=annotations.get('return', _empty),
2489
+ __validate_parameters__=is_duck_function)
2490
+
2491
+
2492
+ def _descriptor_get(descriptor, obj):
2493
+ if isclass(descriptor):
2494
+ return descriptor
2495
+ get = getattr(type(descriptor), '__get__', _sentinel)
2496
+ if get is _sentinel:
2497
+ return descriptor
2498
+ return get(descriptor, obj, type(obj))
2499
+
2500
+
2501
+ def _signature_from_callable(obj, *,
2502
+ follow_wrapper_chains=True,
2503
+ skip_bound_arg=True,
2504
+ globals=None,
2505
+ locals=None,
2506
+ eval_str=False,
2507
+ sigcls):
2508
+
2509
+ """Private helper function to get signature for arbitrary
2510
+ callable objects.
2511
+ """
2512
+
2513
+ _get_signature_of = functools.partial(_signature_from_callable,
2514
+ follow_wrapper_chains=follow_wrapper_chains,
2515
+ skip_bound_arg=skip_bound_arg,
2516
+ globals=globals,
2517
+ locals=locals,
2518
+ sigcls=sigcls,
2519
+ eval_str=eval_str)
2520
+
2521
+ if not callable(obj):
2522
+ raise TypeError('{!r} is not a callable object'.format(obj))
2523
+
2524
+ if isinstance(obj, types.MethodType):
2525
+ # In this case we skip the first parameter of the underlying
2526
+ # function (usually `self` or `cls`).
2527
+ sig = _get_signature_of(obj.__func__)
2528
+
2529
+ if skip_bound_arg:
2530
+ return _signature_bound_method(sig)
2531
+ else:
2532
+ return sig
2533
+
2534
+ # Was this function wrapped by a decorator?
2535
+ if follow_wrapper_chains:
2536
+ # Unwrap until we find an explicit signature or a MethodType (which will be
2537
+ # handled explicitly below).
2538
+ obj = unwrap(obj, stop=(lambda f: hasattr(f, "__signature__")
2539
+ or isinstance(f, types.MethodType)))
2540
+ if isinstance(obj, types.MethodType):
2541
+ # If the unwrapped object is a *method*, we might want to
2542
+ # skip its first parameter (self).
2543
+ # See test_signature_wrapped_bound_method for details.
2544
+ return _get_signature_of(obj)
2545
+
2546
+ try:
2547
+ sig = obj.__signature__
2548
+ except AttributeError:
2549
+ pass
2550
+ else:
2551
+ if sig is not None:
2552
+ # since __text_signature__ is not writable on classes, __signature__
2553
+ # may contain text (or be a callable that returns text);
2554
+ # if so, convert it
2555
+ o_sig = sig
2556
+ if not isinstance(sig, (Signature, str)) and callable(sig):
2557
+ sig = sig()
2558
+ if isinstance(sig, str):
2559
+ sig = _signature_fromstr(sigcls, obj, sig)
2560
+ if not isinstance(sig, Signature):
2561
+ raise TypeError(
2562
+ 'unexpected object {!r} in __signature__ '
2563
+ 'attribute'.format(o_sig))
2564
+ return sig
2565
+
2566
+ try:
2567
+ partialmethod = obj._partialmethod
2568
+ except AttributeError:
2569
+ pass
2570
+ else:
2571
+ if isinstance(partialmethod, functools.partialmethod):
2572
+ # Unbound partialmethod (see functools.partialmethod)
2573
+ # This means, that we need to calculate the signature
2574
+ # as if it's a regular partial object, but taking into
2575
+ # account that the first positional argument
2576
+ # (usually `self`, or `cls`) will not be passed
2577
+ # automatically (as for boundmethods)
2578
+
2579
+ wrapped_sig = _get_signature_of(partialmethod.func)
2580
+
2581
+ sig = _signature_get_partial(wrapped_sig, partialmethod, (None,))
2582
+ first_wrapped_param = tuple(wrapped_sig.parameters.values())[0]
2583
+ if first_wrapped_param.kind is Parameter.VAR_POSITIONAL:
2584
+ # First argument of the wrapped callable is `*args`, as in
2585
+ # `partialmethod(lambda *args)`.
2586
+ return sig
2587
+ else:
2588
+ sig_params = tuple(sig.parameters.values())
2589
+ assert (not sig_params or
2590
+ first_wrapped_param is not sig_params[0])
2591
+ new_params = (first_wrapped_param,) + sig_params
2592
+ return sig.replace(parameters=new_params)
2593
+
2594
+ if isfunction(obj) or _signature_is_functionlike(obj):
2595
+ # If it's a pure Python function, or an object that is duck type
2596
+ # of a Python function (Cython functions, for instance), then:
2597
+ return _signature_from_function(sigcls, obj,
2598
+ skip_bound_arg=skip_bound_arg,
2599
+ globals=globals, locals=locals, eval_str=eval_str)
2600
+
2601
+ if _signature_is_builtin(obj):
2602
+ return _signature_from_builtin(sigcls, obj,
2603
+ skip_bound_arg=skip_bound_arg)
2604
+
2605
+ if isinstance(obj, functools.partial):
2606
+ wrapped_sig = _get_signature_of(obj.func)
2607
+ return _signature_get_partial(wrapped_sig, obj)
2608
+
2609
+ if isinstance(obj, type):
2610
+ # obj is a class or a metaclass
2611
+
2612
+ # First, let's see if it has an overloaded __call__ defined
2613
+ # in its metaclass
2614
+ call = _signature_get_user_defined_method(type(obj), '__call__')
2615
+ if call is not None:
2616
+ return _get_signature_of(call)
2617
+
2618
+ new = _signature_get_user_defined_method(obj, '__new__')
2619
+ init = _signature_get_user_defined_method(obj, '__init__')
2620
+
2621
+ # Go through the MRO and see if any class has user-defined
2622
+ # pure Python __new__ or __init__ method
2623
+ for base in obj.__mro__:
2624
+ # Now we check if the 'obj' class has an own '__new__' method
2625
+ if new is not None and '__new__' in base.__dict__:
2626
+ sig = _get_signature_of(new)
2627
+ if skip_bound_arg:
2628
+ sig = _signature_bound_method(sig)
2629
+ return sig
2630
+ # or an own '__init__' method
2631
+ elif init is not None and '__init__' in base.__dict__:
2632
+ return _get_signature_of(init)
2633
+
2634
+ # At this point we know, that `obj` is a class, with no user-
2635
+ # defined '__init__', '__new__', or class-level '__call__'
2636
+
2637
+ for base in obj.__mro__[:-1]:
2638
+ # Since '__text_signature__' is implemented as a
2639
+ # descriptor that extracts text signature from the
2640
+ # class docstring, if 'obj' is derived from a builtin
2641
+ # class, its own '__text_signature__' may be 'None'.
2642
+ # Therefore, we go through the MRO (except the last
2643
+ # class in there, which is 'object') to find the first
2644
+ # class with non-empty text signature.
2645
+ try:
2646
+ text_sig = base.__text_signature__
2647
+ except AttributeError:
2648
+ pass
2649
+ else:
2650
+ if text_sig:
2651
+ # If 'base' class has a __text_signature__ attribute:
2652
+ # return a signature based on it
2653
+ return _signature_fromstr(sigcls, base, text_sig)
2654
+
2655
+ # No '__text_signature__' was found for the 'obj' class.
2656
+ # Last option is to check if its '__init__' is
2657
+ # object.__init__ or type.__init__.
2658
+ if type not in obj.__mro__:
2659
+ # We have a class (not metaclass), but no user-defined
2660
+ # __init__ or __new__ for it
2661
+ if (obj.__init__ is object.__init__ and
2662
+ obj.__new__ is object.__new__):
2663
+ # Return a signature of 'object' builtin.
2664
+ return sigcls.from_callable(object)
2665
+ else:
2666
+ raise ValueError(
2667
+ 'no signature found for builtin type {!r}'.format(obj))
2668
+
2669
+ else:
2670
+ # An object with __call__
2671
+ call = getattr_static(type(obj), '__call__', None)
2672
+ if call is not None:
2673
+ call = _descriptor_get(call, obj)
2674
+ return _get_signature_of(call)
2675
+
2676
+ raise ValueError('callable {!r} is not supported by signature'.format(obj))
2677
+
2678
+
2679
+ class _void:
2680
+ """A private marker - used in Parameter & Signature."""
2681
+
2682
+
2683
+ class _empty:
2684
+ """Marker object for Signature.empty and Parameter.empty."""
2685
+
2686
+
2687
+ class _ParameterKind(enum.IntEnum):
2688
+ POSITIONAL_ONLY = 'positional-only'
2689
+ POSITIONAL_OR_KEYWORD = 'positional or keyword'
2690
+ VAR_POSITIONAL = 'variadic positional'
2691
+ KEYWORD_ONLY = 'keyword-only'
2692
+ VAR_KEYWORD = 'variadic keyword'
2693
+
2694
+ def __new__(cls, description):
2695
+ value = len(cls.__members__)
2696
+ member = int.__new__(cls, value)
2697
+ member._value_ = value
2698
+ member.description = description
2699
+ return member
2700
+
2701
+ def __str__(self):
2702
+ return self.name
2703
+
2704
+ _POSITIONAL_ONLY = _ParameterKind.POSITIONAL_ONLY
2705
+ _POSITIONAL_OR_KEYWORD = _ParameterKind.POSITIONAL_OR_KEYWORD
2706
+ _VAR_POSITIONAL = _ParameterKind.VAR_POSITIONAL
2707
+ _KEYWORD_ONLY = _ParameterKind.KEYWORD_ONLY
2708
+ _VAR_KEYWORD = _ParameterKind.VAR_KEYWORD
2709
+
2710
+
2711
+ class Parameter:
2712
+ """Represents a parameter in a function signature.
2713
+
2714
+ Has the following public attributes:
2715
+
2716
+ * name : str
2717
+ The name of the parameter as a string.
2718
+ * default : object
2719
+ The default value for the parameter if specified. If the
2720
+ parameter has no default value, this attribute is set to
2721
+ `Parameter.empty`.
2722
+ * annotation
2723
+ The annotation for the parameter if specified. If the
2724
+ parameter has no annotation, this attribute is set to
2725
+ `Parameter.empty`.
2726
+ * kind : str
2727
+ Describes how argument values are bound to the parameter.
2728
+ Possible values: `Parameter.POSITIONAL_ONLY`,
2729
+ `Parameter.POSITIONAL_OR_KEYWORD`, `Parameter.VAR_POSITIONAL`,
2730
+ `Parameter.KEYWORD_ONLY`, `Parameter.VAR_KEYWORD`.
2731
+ """
2732
+
2733
+ __slots__ = ('_name', '_kind', '_default', '_annotation')
2734
+
2735
+ POSITIONAL_ONLY = _POSITIONAL_ONLY
2736
+ POSITIONAL_OR_KEYWORD = _POSITIONAL_OR_KEYWORD
2737
+ VAR_POSITIONAL = _VAR_POSITIONAL
2738
+ KEYWORD_ONLY = _KEYWORD_ONLY
2739
+ VAR_KEYWORD = _VAR_KEYWORD
2740
+
2741
+ empty = _empty
2742
+
2743
+ def __init__(self, name, kind, *, default=_empty, annotation=_empty):
2744
+ try:
2745
+ self._kind = _ParameterKind(kind)
2746
+ except ValueError:
2747
+ raise ValueError(f'value {kind!r} is not a valid Parameter.kind')
2748
+ if default is not _empty:
2749
+ if self._kind in (_VAR_POSITIONAL, _VAR_KEYWORD):
2750
+ msg = '{} parameters cannot have default values'
2751
+ msg = msg.format(self._kind.description)
2752
+ raise ValueError(msg)
2753
+ self._default = default
2754
+ self._annotation = annotation
2755
+
2756
+ if name is _empty:
2757
+ raise ValueError('name is a required attribute for Parameter')
2758
+
2759
+ if not isinstance(name, str):
2760
+ msg = 'name must be a str, not a {}'.format(type(name).__name__)
2761
+ raise TypeError(msg)
2762
+
2763
+ if name[0] == '.' and name[1:].isdigit():
2764
+ # These are implicit arguments generated by comprehensions. In
2765
+ # order to provide a friendlier interface to users, we recast
2766
+ # their name as "implicitN" and treat them as positional-only.
2767
+ # See issue 19611.
2768
+ if self._kind != _POSITIONAL_OR_KEYWORD:
2769
+ msg = (
2770
+ 'implicit arguments must be passed as '
2771
+ 'positional or keyword arguments, not {}'
2772
+ )
2773
+ msg = msg.format(self._kind.description)
2774
+ raise ValueError(msg)
2775
+ self._kind = _POSITIONAL_ONLY
2776
+ name = 'implicit{}'.format(name[1:])
2777
+
2778
+ # It's possible for C functions to have a positional-only parameter
2779
+ # where the name is a keyword, so for compatibility we'll allow it.
2780
+ is_keyword = iskeyword(name) and self._kind is not _POSITIONAL_ONLY
2781
+ if is_keyword or not name.isidentifier():
2782
+ raise ValueError('{!r} is not a valid parameter name'.format(name))
2783
+
2784
+ self._name = name
2785
+
2786
+ def __reduce__(self):
2787
+ return (type(self),
2788
+ (self._name, self._kind),
2789
+ {'_default': self._default,
2790
+ '_annotation': self._annotation})
2791
+
2792
+ def __setstate__(self, state):
2793
+ self._default = state['_default']
2794
+ self._annotation = state['_annotation']
2795
+
2796
+ @property
2797
+ def name(self):
2798
+ return self._name
2799
+
2800
+ @property
2801
+ def default(self):
2802
+ return self._default
2803
+
2804
+ @property
2805
+ def annotation(self):
2806
+ return self._annotation
2807
+
2808
+ @property
2809
+ def kind(self):
2810
+ return self._kind
2811
+
2812
+ def replace(self, *, name=_void, kind=_void,
2813
+ annotation=_void, default=_void):
2814
+ """Creates a customized copy of the Parameter."""
2815
+
2816
+ if name is _void:
2817
+ name = self._name
2818
+
2819
+ if kind is _void:
2820
+ kind = self._kind
2821
+
2822
+ if annotation is _void:
2823
+ annotation = self._annotation
2824
+
2825
+ if default is _void:
2826
+ default = self._default
2827
+
2828
+ return type(self)(name, kind, default=default, annotation=annotation)
2829
+
2830
+ def __str__(self):
2831
+ kind = self.kind
2832
+ formatted = self._name
2833
+
2834
+ # Add annotation and default value
2835
+ if self._annotation is not _empty:
2836
+ formatted = '{}: {}'.format(formatted,
2837
+ formatannotation(self._annotation))
2838
+
2839
+ if self._default is not _empty:
2840
+ if self._annotation is not _empty:
2841
+ formatted = '{} = {}'.format(formatted, repr(self._default))
2842
+ else:
2843
+ formatted = '{}={}'.format(formatted, repr(self._default))
2844
+
2845
+ if kind == _VAR_POSITIONAL:
2846
+ formatted = '*' + formatted
2847
+ elif kind == _VAR_KEYWORD:
2848
+ formatted = '**' + formatted
2849
+
2850
+ return formatted
2851
+
2852
+ def __repr__(self):
2853
+ return '<{} "{}">'.format(self.__class__.__name__, self)
2854
+
2855
+ def __hash__(self):
2856
+ return hash((self._name, self._kind, self._annotation, self._default))
2857
+
2858
+ def __eq__(self, other):
2859
+ if self is other:
2860
+ return True
2861
+ if not isinstance(other, Parameter):
2862
+ return NotImplemented
2863
+ return (self._name == other._name and
2864
+ self._kind == other._kind and
2865
+ self._default == other._default and
2866
+ self._annotation == other._annotation)
2867
+
2868
+
2869
+ class BoundArguments:
2870
+ """Result of `Signature.bind` call. Holds the mapping of arguments
2871
+ to the function's parameters.
2872
+
2873
+ Has the following public attributes:
2874
+
2875
+ * arguments : dict
2876
+ An ordered mutable mapping of parameters' names to arguments' values.
2877
+ Does not contain arguments' default values.
2878
+ * signature : Signature
2879
+ The Signature object that created this instance.
2880
+ * args : tuple
2881
+ Tuple of positional arguments values.
2882
+ * kwargs : dict
2883
+ Dict of keyword arguments values.
2884
+ """
2885
+
2886
+ __slots__ = ('arguments', '_signature', '__weakref__')
2887
+
2888
+ def __init__(self, signature, arguments):
2889
+ self.arguments = arguments
2890
+ self._signature = signature
2891
+
2892
+ @property
2893
+ def signature(self):
2894
+ return self._signature
2895
+
2896
+ @property
2897
+ def args(self):
2898
+ args = []
2899
+ for param_name, param in self._signature.parameters.items():
2900
+ if param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY):
2901
+ break
2902
+
2903
+ try:
2904
+ arg = self.arguments[param_name]
2905
+ except KeyError:
2906
+ # We're done here. Other arguments
2907
+ # will be mapped in 'BoundArguments.kwargs'
2908
+ break
2909
+ else:
2910
+ if param.kind == _VAR_POSITIONAL:
2911
+ # *args
2912
+ args.extend(arg)
2913
+ else:
2914
+ # plain argument
2915
+ args.append(arg)
2916
+
2917
+ return tuple(args)
2918
+
2919
+ @property
2920
+ def kwargs(self):
2921
+ kwargs = {}
2922
+ kwargs_started = False
2923
+ for param_name, param in self._signature.parameters.items():
2924
+ if not kwargs_started:
2925
+ if param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY):
2926
+ kwargs_started = True
2927
+ else:
2928
+ if param_name not in self.arguments:
2929
+ kwargs_started = True
2930
+ continue
2931
+
2932
+ if not kwargs_started:
2933
+ continue
2934
+
2935
+ try:
2936
+ arg = self.arguments[param_name]
2937
+ except KeyError:
2938
+ pass
2939
+ else:
2940
+ if param.kind == _VAR_KEYWORD:
2941
+ # **kwargs
2942
+ kwargs.update(arg)
2943
+ else:
2944
+ # plain keyword argument
2945
+ kwargs[param_name] = arg
2946
+
2947
+ return kwargs
2948
+
2949
+ def apply_defaults(self):
2950
+ """Set default values for missing arguments.
2951
+
2952
+ For variable-positional arguments (*args) the default is an
2953
+ empty tuple.
2954
+
2955
+ For variable-keyword arguments (**kwargs) the default is an
2956
+ empty dict.
2957
+ """
2958
+ arguments = self.arguments
2959
+ new_arguments = []
2960
+ for name, param in self._signature.parameters.items():
2961
+ try:
2962
+ new_arguments.append((name, arguments[name]))
2963
+ except KeyError:
2964
+ if param.default is not _empty:
2965
+ val = param.default
2966
+ elif param.kind is _VAR_POSITIONAL:
2967
+ val = ()
2968
+ elif param.kind is _VAR_KEYWORD:
2969
+ val = {}
2970
+ else:
2971
+ # This BoundArguments was likely produced by
2972
+ # Signature.bind_partial().
2973
+ continue
2974
+ new_arguments.append((name, val))
2975
+ self.arguments = dict(new_arguments)
2976
+
2977
+ def __eq__(self, other):
2978
+ if self is other:
2979
+ return True
2980
+ if not isinstance(other, BoundArguments):
2981
+ return NotImplemented
2982
+ return (self.signature == other.signature and
2983
+ self.arguments == other.arguments)
2984
+
2985
+ def __setstate__(self, state):
2986
+ self._signature = state['_signature']
2987
+ self.arguments = state['arguments']
2988
+
2989
+ def __getstate__(self):
2990
+ return {'_signature': self._signature, 'arguments': self.arguments}
2991
+
2992
+ def __repr__(self):
2993
+ args = []
2994
+ for arg, value in self.arguments.items():
2995
+ args.append('{}={!r}'.format(arg, value))
2996
+ return '<{} ({})>'.format(self.__class__.__name__, ', '.join(args))
2997
+
2998
+
2999
+ class Signature:
3000
+ """A Signature object represents the overall signature of a function.
3001
+ It stores a Parameter object for each parameter accepted by the
3002
+ function, as well as information specific to the function itself.
3003
+
3004
+ A Signature object has the following public attributes and methods:
3005
+
3006
+ * parameters : OrderedDict
3007
+ An ordered mapping of parameters' names to the corresponding
3008
+ Parameter objects (keyword-only arguments are in the same order
3009
+ as listed in `code.co_varnames`).
3010
+ * return_annotation : object
3011
+ The annotation for the return type of the function if specified.
3012
+ If the function has no annotation for its return type, this
3013
+ attribute is set to `Signature.empty`.
3014
+ * bind(*args, **kwargs) -> BoundArguments
3015
+ Creates a mapping from positional and keyword arguments to
3016
+ parameters.
3017
+ * bind_partial(*args, **kwargs) -> BoundArguments
3018
+ Creates a partial mapping from positional and keyword arguments
3019
+ to parameters (simulating 'functools.partial' behavior.)
3020
+ """
3021
+
3022
+ __slots__ = ('_return_annotation', '_parameters')
3023
+
3024
+ _parameter_cls = Parameter
3025
+ _bound_arguments_cls = BoundArguments
3026
+
3027
+ empty = _empty
3028
+
3029
+ def __init__(self, parameters=None, *, return_annotation=_empty,
3030
+ __validate_parameters__=True):
3031
+ """Constructs Signature from the given list of Parameter
3032
+ objects and 'return_annotation'. All arguments are optional.
3033
+ """
3034
+
3035
+ if parameters is None:
3036
+ params = OrderedDict()
3037
+ else:
3038
+ if __validate_parameters__:
3039
+ params = OrderedDict()
3040
+ top_kind = _POSITIONAL_ONLY
3041
+ seen_default = False
3042
+
3043
+ for param in parameters:
3044
+ kind = param.kind
3045
+ name = param.name
3046
+
3047
+ if kind < top_kind:
3048
+ msg = (
3049
+ 'wrong parameter order: {} parameter before {} '
3050
+ 'parameter'
3051
+ )
3052
+ msg = msg.format(top_kind.description,
3053
+ kind.description)
3054
+ raise ValueError(msg)
3055
+ elif kind > top_kind:
3056
+ top_kind = kind
3057
+
3058
+ if kind in (_POSITIONAL_ONLY, _POSITIONAL_OR_KEYWORD):
3059
+ if param.default is _empty:
3060
+ if seen_default:
3061
+ # No default for this parameter, but the
3062
+ # previous parameter of had a default
3063
+ msg = 'non-default argument follows default ' \
3064
+ 'argument'
3065
+ raise ValueError(msg)
3066
+ else:
3067
+ # There is a default for this parameter.
3068
+ seen_default = True
3069
+
3070
+ if name in params:
3071
+ msg = 'duplicate parameter name: {!r}'.format(name)
3072
+ raise ValueError(msg)
3073
+
3074
+ params[name] = param
3075
+ else:
3076
+ params = OrderedDict((param.name, param) for param in parameters)
3077
+
3078
+ self._parameters = types.MappingProxyType(params)
3079
+ self._return_annotation = return_annotation
3080
+
3081
+ @classmethod
3082
+ def from_callable(cls, obj, *,
3083
+ follow_wrapped=True, globals=None, locals=None, eval_str=False):
3084
+ """Constructs Signature for the given callable object."""
3085
+ return _signature_from_callable(obj, sigcls=cls,
3086
+ follow_wrapper_chains=follow_wrapped,
3087
+ globals=globals, locals=locals, eval_str=eval_str)
3088
+
3089
+ @property
3090
+ def parameters(self):
3091
+ return self._parameters
3092
+
3093
+ @property
3094
+ def return_annotation(self):
3095
+ return self._return_annotation
3096
+
3097
+ def replace(self, *, parameters=_void, return_annotation=_void):
3098
+ """Creates a customized copy of the Signature.
3099
+ Pass 'parameters' and/or 'return_annotation' arguments
3100
+ to override them in the new copy.
3101
+ """
3102
+
3103
+ if parameters is _void:
3104
+ parameters = self.parameters.values()
3105
+
3106
+ if return_annotation is _void:
3107
+ return_annotation = self._return_annotation
3108
+
3109
+ return type(self)(parameters,
3110
+ return_annotation=return_annotation)
3111
+
3112
+ def _hash_basis(self):
3113
+ params = tuple(param for param in self.parameters.values()
3114
+ if param.kind != _KEYWORD_ONLY)
3115
+
3116
+ kwo_params = {param.name: param for param in self.parameters.values()
3117
+ if param.kind == _KEYWORD_ONLY}
3118
+
3119
+ return params, kwo_params, self.return_annotation
3120
+
3121
+ def __hash__(self):
3122
+ params, kwo_params, return_annotation = self._hash_basis()
3123
+ kwo_params = frozenset(kwo_params.values())
3124
+ return hash((params, kwo_params, return_annotation))
3125
+
3126
+ def __eq__(self, other):
3127
+ if self is other:
3128
+ return True
3129
+ if not isinstance(other, Signature):
3130
+ return NotImplemented
3131
+ return self._hash_basis() == other._hash_basis()
3132
+
3133
+ def _bind(self, args, kwargs, *, partial=False):
3134
+ """Private method. Don't use directly."""
3135
+
3136
+ arguments = {}
3137
+
3138
+ parameters = iter(self.parameters.values())
3139
+ parameters_ex = ()
3140
+ arg_vals = iter(args)
3141
+
3142
+ pos_only_param_in_kwargs = []
3143
+
3144
+ while True:
3145
+ # Let's iterate through the positional arguments and corresponding
3146
+ # parameters
3147
+ try:
3148
+ arg_val = next(arg_vals)
3149
+ except StopIteration:
3150
+ # No more positional arguments
3151
+ try:
3152
+ param = next(parameters)
3153
+ except StopIteration:
3154
+ # No more parameters. That's it. Just need to check that
3155
+ # we have no `kwargs` after this while loop
3156
+ break
3157
+ else:
3158
+ if param.kind == _VAR_POSITIONAL:
3159
+ # That's OK, just empty *args. Let's start parsing
3160
+ # kwargs
3161
+ break
3162
+ elif param.name in kwargs:
3163
+ if param.kind == _POSITIONAL_ONLY:
3164
+ if param.default is _empty:
3165
+ msg = f'missing a required positional-only argument: {param.name!r}'
3166
+ raise TypeError(msg)
3167
+ # Raise a TypeError once we are sure there is no
3168
+ # **kwargs param later.
3169
+ pos_only_param_in_kwargs.append(param)
3170
+ continue
3171
+ parameters_ex = (param,)
3172
+ break
3173
+ elif (param.kind == _VAR_KEYWORD or
3174
+ param.default is not _empty):
3175
+ # That's fine too - we have a default value for this
3176
+ # parameter. So, lets start parsing `kwargs`, starting
3177
+ # with the current parameter
3178
+ parameters_ex = (param,)
3179
+ break
3180
+ else:
3181
+ # No default, not VAR_KEYWORD, not VAR_POSITIONAL,
3182
+ # not in `kwargs`
3183
+ if partial:
3184
+ parameters_ex = (param,)
3185
+ break
3186
+ else:
3187
+ if param.kind == _KEYWORD_ONLY:
3188
+ argtype = ' keyword-only'
3189
+ else:
3190
+ argtype = ''
3191
+ msg = 'missing a required{argtype} argument: {arg!r}'
3192
+ msg = msg.format(arg=param.name, argtype=argtype)
3193
+ raise TypeError(msg) from None
3194
+ else:
3195
+ # We have a positional argument to process
3196
+ try:
3197
+ param = next(parameters)
3198
+ except StopIteration:
3199
+ raise TypeError('too many positional arguments') from None
3200
+ else:
3201
+ if param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY):
3202
+ # Looks like we have no parameter for this positional
3203
+ # argument
3204
+ raise TypeError(
3205
+ 'too many positional arguments') from None
3206
+
3207
+ if param.kind == _VAR_POSITIONAL:
3208
+ # We have an '*args'-like argument, let's fill it with
3209
+ # all positional arguments we have left and move on to
3210
+ # the next phase
3211
+ values = [arg_val]
3212
+ values.extend(arg_vals)
3213
+ arguments[param.name] = tuple(values)
3214
+ break
3215
+
3216
+ if param.name in kwargs and param.kind != _POSITIONAL_ONLY:
3217
+ raise TypeError(
3218
+ 'multiple values for argument {arg!r}'.format(
3219
+ arg=param.name)) from None
3220
+
3221
+ arguments[param.name] = arg_val
3222
+
3223
+ # Now, we iterate through the remaining parameters to process
3224
+ # keyword arguments
3225
+ kwargs_param = None
3226
+ for param in itertools.chain(parameters_ex, parameters):
3227
+ if param.kind == _VAR_KEYWORD:
3228
+ # Memorize that we have a '**kwargs'-like parameter
3229
+ kwargs_param = param
3230
+ continue
3231
+
3232
+ if param.kind == _VAR_POSITIONAL:
3233
+ # Named arguments don't refer to '*args'-like parameters.
3234
+ # We only arrive here if the positional arguments ended
3235
+ # before reaching the last parameter before *args.
3236
+ continue
3237
+
3238
+ param_name = param.name
3239
+ try:
3240
+ arg_val = kwargs.pop(param_name)
3241
+ except KeyError:
3242
+ # We have no value for this parameter. It's fine though,
3243
+ # if it has a default value, or it is an '*args'-like
3244
+ # parameter, left alone by the processing of positional
3245
+ # arguments.
3246
+ if (not partial and param.kind != _VAR_POSITIONAL and
3247
+ param.default is _empty):
3248
+ raise TypeError('missing a required argument: {arg!r}'. \
3249
+ format(arg=param_name)) from None
3250
+
3251
+ else:
3252
+ arguments[param_name] = arg_val
3253
+
3254
+ if kwargs:
3255
+ if kwargs_param is not None:
3256
+ # Process our '**kwargs'-like parameter
3257
+ arguments[kwargs_param.name] = kwargs
3258
+ elif pos_only_param_in_kwargs:
3259
+ raise TypeError(
3260
+ 'got some positional-only arguments passed as '
3261
+ 'keyword arguments: {arg!r}'.format(
3262
+ arg=', '.join(
3263
+ param.name
3264
+ for param in pos_only_param_in_kwargs
3265
+ ),
3266
+ ),
3267
+ )
3268
+ else:
3269
+ raise TypeError(
3270
+ 'got an unexpected keyword argument {arg!r}'.format(
3271
+ arg=next(iter(kwargs))))
3272
+
3273
+ return self._bound_arguments_cls(self, arguments)
3274
+
3275
+ def bind(self, /, *args, **kwargs):
3276
+ """Get a BoundArguments object, that maps the passed `args`
3277
+ and `kwargs` to the function's signature. Raises `TypeError`
3278
+ if the passed arguments can not be bound.
3279
+ """
3280
+ return self._bind(args, kwargs)
3281
+
3282
+ def bind_partial(self, /, *args, **kwargs):
3283
+ """Get a BoundArguments object, that partially maps the
3284
+ passed `args` and `kwargs` to the function's signature.
3285
+ Raises `TypeError` if the passed arguments can not be bound.
3286
+ """
3287
+ return self._bind(args, kwargs, partial=True)
3288
+
3289
+ def __reduce__(self):
3290
+ return (type(self),
3291
+ (tuple(self._parameters.values()),),
3292
+ {'_return_annotation': self._return_annotation})
3293
+
3294
+ def __setstate__(self, state):
3295
+ self._return_annotation = state['_return_annotation']
3296
+
3297
+ def __repr__(self):
3298
+ return '<{} {}>'.format(self.__class__.__name__, self)
3299
+
3300
+ def __str__(self):
3301
+ result = []
3302
+ render_pos_only_separator = False
3303
+ render_kw_only_separator = True
3304
+ for param in self.parameters.values():
3305
+ formatted = str(param)
3306
+
3307
+ kind = param.kind
3308
+
3309
+ if kind == _POSITIONAL_ONLY:
3310
+ render_pos_only_separator = True
3311
+ elif render_pos_only_separator:
3312
+ # It's not a positional-only parameter, and the flag
3313
+ # is set to 'True' (there were pos-only params before.)
3314
+ result.append('/')
3315
+ render_pos_only_separator = False
3316
+
3317
+ if kind == _VAR_POSITIONAL:
3318
+ # OK, we have an '*args'-like parameter, so we won't need
3319
+ # a '*' to separate keyword-only arguments
3320
+ render_kw_only_separator = False
3321
+ elif kind == _KEYWORD_ONLY and render_kw_only_separator:
3322
+ # We have a keyword-only parameter to render and we haven't
3323
+ # rendered an '*args'-like parameter before, so add a '*'
3324
+ # separator to the parameters list ("foo(arg1, *, arg2)" case)
3325
+ result.append('*')
3326
+ # This condition should be only triggered once, so
3327
+ # reset the flag
3328
+ render_kw_only_separator = False
3329
+
3330
+ result.append(formatted)
3331
+
3332
+ if render_pos_only_separator:
3333
+ # There were only positional-only parameters, hence the
3334
+ # flag was not reset to 'False'
3335
+ result.append('/')
3336
+
3337
+ rendered = '({})'.format(', '.join(result))
3338
+
3339
+ if self.return_annotation is not _empty:
3340
+ anno = formatannotation(self.return_annotation)
3341
+ rendered += ' -> {}'.format(anno)
3342
+
3343
+ return rendered
3344
+
3345
+
3346
+ def signature(obj, *, follow_wrapped=True, globals=None, locals=None, eval_str=False):
3347
+ """Get a signature object for the passed callable."""
3348
+ return Signature.from_callable(obj, follow_wrapped=follow_wrapped,
3349
+ globals=globals, locals=locals, eval_str=eval_str)
3350
+
3351
+
3352
+ class BufferFlags(enum.IntFlag):
3353
+ SIMPLE = 0x0
3354
+ WRITABLE = 0x1
3355
+ FORMAT = 0x4
3356
+ ND = 0x8
3357
+ STRIDES = 0x10 | ND
3358
+ C_CONTIGUOUS = 0x20 | STRIDES
3359
+ F_CONTIGUOUS = 0x40 | STRIDES
3360
+ ANY_CONTIGUOUS = 0x80 | STRIDES
3361
+ INDIRECT = 0x100 | STRIDES
3362
+ CONTIG = ND | WRITABLE
3363
+ CONTIG_RO = ND
3364
+ STRIDED = STRIDES | WRITABLE
3365
+ STRIDED_RO = STRIDES
3366
+ RECORDS = STRIDES | WRITABLE | FORMAT
3367
+ RECORDS_RO = STRIDES | FORMAT
3368
+ FULL = INDIRECT | WRITABLE | FORMAT
3369
+ FULL_RO = INDIRECT | FORMAT
3370
+ READ = 0x100
3371
+ WRITE = 0x200
3372
+
3373
+
3374
+ def _main():
3375
+ """ Logic for inspecting an object given at command line """
3376
+ import argparse
3377
+ import importlib
3378
+
3379
+ parser = argparse.ArgumentParser()
3380
+ parser.add_argument(
3381
+ 'object',
3382
+ help="The object to be analysed. "
3383
+ "It supports the 'module:qualname' syntax")
3384
+ parser.add_argument(
3385
+ '-d', '--details', action='store_true',
3386
+ help='Display info about the module rather than its source code')
3387
+
3388
+ args = parser.parse_args()
3389
+
3390
+ target = args.object
3391
+ mod_name, has_attrs, attrs = target.partition(":")
3392
+ try:
3393
+ obj = module = importlib.import_module(mod_name)
3394
+ except Exception as exc:
3395
+ msg = "Failed to import {} ({}: {})".format(mod_name,
3396
+ type(exc).__name__,
3397
+ exc)
3398
+ print(msg, file=sys.stderr)
3399
+ sys.exit(2)
3400
+
3401
+ if has_attrs:
3402
+ parts = attrs.split(".")
3403
+ obj = module
3404
+ for part in parts:
3405
+ obj = getattr(obj, part)
3406
+
3407
+ if module.__name__ in sys.builtin_module_names:
3408
+ print("Can't get info for builtin modules.", file=sys.stderr)
3409
+ sys.exit(1)
3410
+
3411
+ if args.details:
3412
+ print('Target: {}'.format(target))
3413
+ print('Origin: {}'.format(getsourcefile(module)))
3414
+ print('Cached: {}'.format(module.__cached__))
3415
+ if obj is module:
3416
+ print('Loader: {}'.format(repr(module.__loader__)))
3417
+ if hasattr(module, '__path__'):
3418
+ print('Submodule search path: {}'.format(module.__path__))
3419
+ else:
3420
+ try:
3421
+ __, lineno = findsource(obj)
3422
+ except Exception:
3423
+ pass
3424
+ else:
3425
+ print('Line: {}'.format(lineno))
3426
+
3427
+ print('\n')
3428
+ else:
3429
+ print(getsource(obj))
3430
+
3431
+
3432
+ if __name__ == "__main__":
3433
+ _main()