@pairling/runtime-darwin-arm64 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1317) hide show
  1. package/bin/pairling-connectd +0 -0
  2. package/manifest.json +9 -3
  3. package/package.json +1 -1
  4. package/python/bin/2to3-3.12 +7 -0
  5. package/python/bin/idle3.12 +7 -0
  6. package/python/bin/pip +8 -0
  7. package/python/bin/pip3 +8 -0
  8. package/python/bin/pip3.12 +8 -0
  9. package/python/bin/pydoc3.12 +7 -0
  10. package/python/bin/python3 +0 -0
  11. package/python/bin/python3.12 +0 -0
  12. package/python/bin/python3.12-config +76 -0
  13. package/python/include/python3.12/Python.h +109 -0
  14. package/python/include/python3.12/abstract.h +899 -0
  15. package/python/include/python3.12/bltinmodule.h +14 -0
  16. package/python/include/python3.12/boolobject.h +42 -0
  17. package/python/include/python3.12/bytearrayobject.h +44 -0
  18. package/python/include/python3.12/bytesobject.h +69 -0
  19. package/python/include/python3.12/ceval.h +168 -0
  20. package/python/include/python3.12/codecs.h +248 -0
  21. package/python/include/python3.12/compile.h +22 -0
  22. package/python/include/python3.12/complexobject.h +30 -0
  23. package/python/include/python3.12/cpython/abstract.h +206 -0
  24. package/python/include/python3.12/cpython/bytearrayobject.h +34 -0
  25. package/python/include/python3.12/cpython/bytesobject.h +133 -0
  26. package/python/include/python3.12/cpython/cellobject.h +44 -0
  27. package/python/include/python3.12/cpython/ceval.h +35 -0
  28. package/python/include/python3.12/cpython/classobject.h +71 -0
  29. package/python/include/python3.12/cpython/code.h +389 -0
  30. package/python/include/python3.12/cpython/compile.h +69 -0
  31. package/python/include/python3.12/cpython/complexobject.h +44 -0
  32. package/python/include/python3.12/cpython/context.h +78 -0
  33. package/python/include/python3.12/cpython/descrobject.h +64 -0
  34. package/python/include/python3.12/cpython/dictobject.h +118 -0
  35. package/python/include/python3.12/cpython/fileobject.h +19 -0
  36. package/python/include/python3.12/cpython/fileutils.h +8 -0
  37. package/python/include/python3.12/cpython/floatobject.h +27 -0
  38. package/python/include/python3.12/cpython/frameobject.h +29 -0
  39. package/python/include/python3.12/cpython/funcobject.h +190 -0
  40. package/python/include/python3.12/cpython/genobject.h +89 -0
  41. package/python/include/python3.12/cpython/import.h +46 -0
  42. package/python/include/python3.12/cpython/initconfig.h +256 -0
  43. package/python/include/python3.12/cpython/interpreteridobject.h +11 -0
  44. package/python/include/python3.12/cpython/listobject.h +47 -0
  45. package/python/include/python3.12/cpython/longintrepr.h +133 -0
  46. package/python/include/python3.12/cpython/longobject.h +100 -0
  47. package/python/include/python3.12/cpython/memoryobject.h +52 -0
  48. package/python/include/python3.12/cpython/methodobject.h +66 -0
  49. package/python/include/python3.12/cpython/modsupport.h +109 -0
  50. package/python/include/python3.12/cpython/object.h +575 -0
  51. package/python/include/python3.12/cpython/objimpl.h +95 -0
  52. package/python/include/python3.12/cpython/odictobject.h +43 -0
  53. package/python/include/python3.12/cpython/picklebufobject.h +31 -0
  54. package/python/include/python3.12/cpython/pthread_stubs.h +88 -0
  55. package/python/include/python3.12/cpython/pyctype.h +39 -0
  56. package/python/include/python3.12/cpython/pydebug.h +38 -0
  57. package/python/include/python3.12/cpython/pyerrors.h +178 -0
  58. package/python/include/python3.12/cpython/pyfpe.h +15 -0
  59. package/python/include/python3.12/cpython/pyframe.h +35 -0
  60. package/python/include/python3.12/cpython/pylifecycle.h +111 -0
  61. package/python/include/python3.12/cpython/pymem.h +98 -0
  62. package/python/include/python3.12/cpython/pystate.h +456 -0
  63. package/python/include/python3.12/cpython/pythonrun.h +121 -0
  64. package/python/include/python3.12/cpython/pythread.h +42 -0
  65. package/python/include/python3.12/cpython/pytime.h +331 -0
  66. package/python/include/python3.12/cpython/setobject.h +72 -0
  67. package/python/include/python3.12/cpython/sysmodule.h +16 -0
  68. package/python/include/python3.12/cpython/traceback.h +16 -0
  69. package/python/include/python3.12/cpython/tupleobject.h +39 -0
  70. package/python/include/python3.12/cpython/unicodeobject.h +976 -0
  71. package/python/include/python3.12/cpython/warnings.h +20 -0
  72. package/python/include/python3.12/cpython/weakrefobject.h +56 -0
  73. package/python/include/python3.12/datetime.h +267 -0
  74. package/python/include/python3.12/descrobject.h +100 -0
  75. package/python/include/python3.12/dictobject.h +97 -0
  76. package/python/include/python3.12/dynamic_annotations.h +499 -0
  77. package/python/include/python3.12/enumobject.h +17 -0
  78. package/python/include/python3.12/errcode.h +38 -0
  79. package/python/include/python3.12/exports.h +36 -0
  80. package/python/include/python3.12/fileobject.h +49 -0
  81. package/python/include/python3.12/fileutils.h +26 -0
  82. package/python/include/python3.12/floatobject.h +54 -0
  83. package/python/include/python3.12/frameobject.h +20 -0
  84. package/python/include/python3.12/genericaliasobject.h +14 -0
  85. package/python/include/python3.12/import.h +98 -0
  86. package/python/include/python3.12/internal/pycore_abstract.h +25 -0
  87. package/python/include/python3.12/internal/pycore_asdl.h +112 -0
  88. package/python/include/python3.12/internal/pycore_ast.h +922 -0
  89. package/python/include/python3.12/internal/pycore_ast_state.h +265 -0
  90. package/python/include/python3.12/internal/pycore_atexit.h +57 -0
  91. package/python/include/python3.12/internal/pycore_atomic.h +557 -0
  92. package/python/include/python3.12/internal/pycore_atomic_funcs.h +94 -0
  93. package/python/include/python3.12/internal/pycore_bitutils.h +186 -0
  94. package/python/include/python3.12/internal/pycore_blocks_output_buffer.h +317 -0
  95. package/python/include/python3.12/internal/pycore_bytes_methods.h +73 -0
  96. package/python/include/python3.12/internal/pycore_bytesobject.h +47 -0
  97. package/python/include/python3.12/internal/pycore_call.h +133 -0
  98. package/python/include/python3.12/internal/pycore_ceval.h +164 -0
  99. package/python/include/python3.12/internal/pycore_ceval_state.h +103 -0
  100. package/python/include/python3.12/internal/pycore_code.h +496 -0
  101. package/python/include/python3.12/internal/pycore_compile.h +118 -0
  102. package/python/include/python3.12/internal/pycore_condvar.h +99 -0
  103. package/python/include/python3.12/internal/pycore_context.h +71 -0
  104. package/python/include/python3.12/internal/pycore_descrobject.h +26 -0
  105. package/python/include/python3.12/internal/pycore_dict.h +199 -0
  106. package/python/include/python3.12/internal/pycore_dict_state.h +50 -0
  107. package/python/include/python3.12/internal/pycore_dtoa.h +69 -0
  108. package/python/include/python3.12/internal/pycore_emscripten_signal.h +25 -0
  109. package/python/include/python3.12/internal/pycore_exceptions.h +37 -0
  110. package/python/include/python3.12/internal/pycore_faulthandler.h +99 -0
  111. package/python/include/python3.12/internal/pycore_fileutils.h +292 -0
  112. package/python/include/python3.12/internal/pycore_fileutils_windows.h +98 -0
  113. package/python/include/python3.12/internal/pycore_floatobject.h +71 -0
  114. package/python/include/python3.12/internal/pycore_flowgraph.h +120 -0
  115. package/python/include/python3.12/internal/pycore_format.h +27 -0
  116. package/python/include/python3.12/internal/pycore_frame.h +283 -0
  117. package/python/include/python3.12/internal/pycore_function.h +26 -0
  118. package/python/include/python3.12/internal/pycore_gc.h +211 -0
  119. package/python/include/python3.12/internal/pycore_genobject.h +49 -0
  120. package/python/include/python3.12/internal/pycore_getopt.h +22 -0
  121. package/python/include/python3.12/internal/pycore_gil.h +50 -0
  122. package/python/include/python3.12/internal/pycore_global_objects.h +105 -0
  123. package/python/include/python3.12/internal/pycore_global_objects_fini_generated.h +1517 -0
  124. package/python/include/python3.12/internal/pycore_global_strings.h +777 -0
  125. package/python/include/python3.12/internal/pycore_hamt.h +134 -0
  126. package/python/include/python3.12/internal/pycore_hashtable.h +149 -0
  127. package/python/include/python3.12/internal/pycore_import.h +183 -0
  128. package/python/include/python3.12/internal/pycore_initconfig.h +179 -0
  129. package/python/include/python3.12/internal/pycore_instruments.h +106 -0
  130. package/python/include/python3.12/internal/pycore_interp.h +275 -0
  131. package/python/include/python3.12/internal/pycore_intrinsics.h +32 -0
  132. package/python/include/python3.12/internal/pycore_list.h +83 -0
  133. package/python/include/python3.12/internal/pycore_long.h +258 -0
  134. package/python/include/python3.12/internal/pycore_memoryobject.h +18 -0
  135. package/python/include/python3.12/internal/pycore_moduleobject.h +45 -0
  136. package/python/include/python3.12/internal/pycore_namespace.h +20 -0
  137. package/python/include/python3.12/internal/pycore_object.h +455 -0
  138. package/python/include/python3.12/internal/pycore_object_state.h +42 -0
  139. package/python/include/python3.12/internal/pycore_obmalloc.h +700 -0
  140. package/python/include/python3.12/internal/pycore_obmalloc_init.h +73 -0
  141. package/python/include/python3.12/internal/pycore_opcode.h +587 -0
  142. package/python/include/python3.12/internal/pycore_opcode_utils.h +92 -0
  143. package/python/include/python3.12/internal/pycore_parser.h +66 -0
  144. package/python/include/python3.12/internal/pycore_pathconfig.h +24 -0
  145. package/python/include/python3.12/internal/pycore_pyarena.h +64 -0
  146. package/python/include/python3.12/internal/pycore_pyerrors.h +129 -0
  147. package/python/include/python3.12/internal/pycore_pyhash.h +40 -0
  148. package/python/include/python3.12/internal/pycore_pylifecycle.h +99 -0
  149. package/python/include/python3.12/internal/pycore_pymath.h +205 -0
  150. package/python/include/python3.12/internal/pycore_pymem.h +98 -0
  151. package/python/include/python3.12/internal/pycore_pymem_init.h +85 -0
  152. package/python/include/python3.12/internal/pycore_pystate.h +180 -0
  153. package/python/include/python3.12/internal/pycore_pythread.h +81 -0
  154. package/python/include/python3.12/internal/pycore_range.h +21 -0
  155. package/python/include/python3.12/internal/pycore_runtime.h +235 -0
  156. package/python/include/python3.12/internal/pycore_runtime_init.h +188 -0
  157. package/python/include/python3.12/internal/pycore_runtime_init_generated.h +1511 -0
  158. package/python/include/python3.12/internal/pycore_signal.h +98 -0
  159. package/python/include/python3.12/internal/pycore_sliceobject.h +22 -0
  160. package/python/include/python3.12/internal/pycore_strhex.h +36 -0
  161. package/python/include/python3.12/internal/pycore_structseq.h +39 -0
  162. package/python/include/python3.12/internal/pycore_symtable.h +160 -0
  163. package/python/include/python3.12/internal/pycore_sysmodule.h +34 -0
  164. package/python/include/python3.12/internal/pycore_time.h +25 -0
  165. package/python/include/python3.12/internal/pycore_token.h +108 -0
  166. package/python/include/python3.12/internal/pycore_traceback.h +101 -0
  167. package/python/include/python3.12/internal/pycore_tracemalloc.h +123 -0
  168. package/python/include/python3.12/internal/pycore_tuple.h +79 -0
  169. package/python/include/python3.12/internal/pycore_typeobject.h +151 -0
  170. package/python/include/python3.12/internal/pycore_typevarobject.h +24 -0
  171. package/python/include/python3.12/internal/pycore_ucnhash.h +34 -0
  172. package/python/include/python3.12/internal/pycore_unicodeobject.h +86 -0
  173. package/python/include/python3.12/internal/pycore_unicodeobject_generated.h +2832 -0
  174. package/python/include/python3.12/internal/pycore_unionobject.h +23 -0
  175. package/python/include/python3.12/internal/pycore_warnings.h +29 -0
  176. package/python/include/python3.12/interpreteridobject.h +17 -0
  177. package/python/include/python3.12/intrcheck.h +30 -0
  178. package/python/include/python3.12/iterobject.h +27 -0
  179. package/python/include/python3.12/listobject.h +52 -0
  180. package/python/include/python3.12/longobject.h +108 -0
  181. package/python/include/python3.12/marshal.h +31 -0
  182. package/python/include/python3.12/memoryobject.h +34 -0
  183. package/python/include/python3.12/methodobject.h +132 -0
  184. package/python/include/python3.12/modsupport.h +168 -0
  185. package/python/include/python3.12/moduleobject.h +119 -0
  186. package/python/include/python3.12/object.h +993 -0
  187. package/python/include/python3.12/objimpl.h +234 -0
  188. package/python/include/python3.12/opcode.h +271 -0
  189. package/python/include/python3.12/osdefs.h +51 -0
  190. package/python/include/python3.12/osmodule.h +17 -0
  191. package/python/include/python3.12/patchlevel.h +35 -0
  192. package/python/include/python3.12/py_curses.h +99 -0
  193. package/python/include/python3.12/pybuffer.h +145 -0
  194. package/python/include/python3.12/pycapsule.h +59 -0
  195. package/python/include/python3.12/pyconfig.h +1943 -0
  196. package/python/include/python3.12/pydtrace.h +59 -0
  197. package/python/include/python3.12/pyerrors.h +337 -0
  198. package/python/include/python3.12/pyexpat.h +62 -0
  199. package/python/include/python3.12/pyframe.h +26 -0
  200. package/python/include/python3.12/pyhash.h +144 -0
  201. package/python/include/python3.12/pylifecycle.h +78 -0
  202. package/python/include/python3.12/pymacconfig.h +99 -0
  203. package/python/include/python3.12/pymacro.h +172 -0
  204. package/python/include/python3.12/pymath.h +62 -0
  205. package/python/include/python3.12/pymem.h +104 -0
  206. package/python/include/python3.12/pyport.h +782 -0
  207. package/python/include/python3.12/pystate.h +132 -0
  208. package/python/include/python3.12/pystats.h +110 -0
  209. package/python/include/python3.12/pystrcmp.h +23 -0
  210. package/python/include/python3.12/pystrtod.h +46 -0
  211. package/python/include/python3.12/pythonrun.h +49 -0
  212. package/python/include/python3.12/pythread.h +135 -0
  213. package/python/include/python3.12/pytypedefs.h +30 -0
  214. package/python/include/python3.12/rangeobject.h +27 -0
  215. package/python/include/python3.12/setobject.h +49 -0
  216. package/python/include/python3.12/sliceobject.h +65 -0
  217. package/python/include/python3.12/structmember.h +56 -0
  218. package/python/include/python3.12/structseq.h +49 -0
  219. package/python/include/python3.12/sysmodule.h +54 -0
  220. package/python/include/python3.12/traceback.h +26 -0
  221. package/python/include/python3.12/tracemalloc.h +77 -0
  222. package/python/include/python3.12/tupleobject.h +46 -0
  223. package/python/include/python3.12/typeslots.h +88 -0
  224. package/python/include/python3.12/unicodeobject.h +1020 -0
  225. package/python/include/python3.12/warnings.h +45 -0
  226. package/python/include/python3.12/weakrefobject.h +42 -0
  227. package/python/lib/libpython3.12.dylib +0 -0
  228. package/python/lib/python3.12/LICENSE.txt +279 -0
  229. package/python/lib/python3.12/__future__.py +147 -0
  230. package/python/lib/python3.12/__hello__.py +16 -0
  231. package/python/lib/python3.12/__phello__/__init__.py +7 -0
  232. package/python/lib/python3.12/__phello__/spam.py +7 -0
  233. package/python/lib/python3.12/__pycache__/_compression.cpython-312.pyc +0 -0
  234. package/python/lib/python3.12/__pycache__/_weakrefset.cpython-312.pyc +0 -0
  235. package/python/lib/python3.12/__pycache__/base64.cpython-312.pyc +0 -0
  236. package/python/lib/python3.12/__pycache__/bisect.cpython-312.pyc +0 -0
  237. package/python/lib/python3.12/__pycache__/bz2.cpython-312.pyc +0 -0
  238. package/python/lib/python3.12/__pycache__/calendar.cpython-312.pyc +0 -0
  239. package/python/lib/python3.12/__pycache__/contextlib.cpython-312.pyc +0 -0
  240. package/python/lib/python3.12/__pycache__/copyreg.cpython-312.pyc +0 -0
  241. package/python/lib/python3.12/__pycache__/datetime.cpython-312.pyc +0 -0
  242. package/python/lib/python3.12/__pycache__/enum.cpython-312.pyc +0 -0
  243. package/python/lib/python3.12/__pycache__/fnmatch.cpython-312.pyc +0 -0
  244. package/python/lib/python3.12/__pycache__/functools.cpython-312.pyc +0 -0
  245. package/python/lib/python3.12/__pycache__/hashlib.cpython-312.pyc +0 -0
  246. package/python/lib/python3.12/__pycache__/hmac.cpython-312.pyc +0 -0
  247. package/python/lib/python3.12/__pycache__/ipaddress.cpython-312.pyc +0 -0
  248. package/python/lib/python3.12/__pycache__/keyword.cpython-312.pyc +0 -0
  249. package/python/lib/python3.12/__pycache__/locale.cpython-312.pyc +0 -0
  250. package/python/lib/python3.12/__pycache__/lzma.cpython-312.pyc +0 -0
  251. package/python/lib/python3.12/__pycache__/operator.cpython-312.pyc +0 -0
  252. package/python/lib/python3.12/__pycache__/plistlib.cpython-312.pyc +0 -0
  253. package/python/lib/python3.12/__pycache__/pty.cpython-312.pyc +0 -0
  254. package/python/lib/python3.12/__pycache__/quopri.cpython-312.pyc +0 -0
  255. package/python/lib/python3.12/__pycache__/random.cpython-312.pyc +0 -0
  256. package/python/lib/python3.12/__pycache__/reprlib.cpython-312.pyc +0 -0
  257. package/python/lib/python3.12/__pycache__/selectors.cpython-312.pyc +0 -0
  258. package/python/lib/python3.12/__pycache__/shutil.cpython-312.pyc +0 -0
  259. package/python/lib/python3.12/__pycache__/signal.cpython-312.pyc +0 -0
  260. package/python/lib/python3.12/__pycache__/socket.cpython-312.pyc +0 -0
  261. package/python/lib/python3.12/__pycache__/ssl.cpython-312.pyc +0 -0
  262. package/python/lib/python3.12/__pycache__/string.cpython-312.pyc +0 -0
  263. package/python/lib/python3.12/__pycache__/struct.cpython-312.pyc +0 -0
  264. package/python/lib/python3.12/__pycache__/subprocess.cpython-312.pyc +0 -0
  265. package/python/lib/python3.12/__pycache__/tempfile.cpython-312.pyc +0 -0
  266. package/python/lib/python3.12/__pycache__/threading.cpython-312.pyc +0 -0
  267. package/python/lib/python3.12/__pycache__/tty.cpython-312.pyc +0 -0
  268. package/python/lib/python3.12/__pycache__/types.cpython-312.pyc +0 -0
  269. package/python/lib/python3.12/__pycache__/warnings.cpython-312.pyc +0 -0
  270. package/python/lib/python3.12/__pycache__/weakref.cpython-312.pyc +0 -0
  271. package/python/lib/python3.12/_aix_support.py +108 -0
  272. package/python/lib/python3.12/_collections_abc.py +1173 -0
  273. package/python/lib/python3.12/_compat_pickle.py +252 -0
  274. package/python/lib/python3.12/_compression.py +162 -0
  275. package/python/lib/python3.12/_markupbase.py +396 -0
  276. package/python/lib/python3.12/_osx_support.py +579 -0
  277. package/python/lib/python3.12/_py_abc.py +147 -0
  278. package/python/lib/python3.12/_pydatetime.py +2643 -0
  279. package/python/lib/python3.12/_pydecimal.py +6339 -0
  280. package/python/lib/python3.12/_pyio.py +2698 -0
  281. package/python/lib/python3.12/_pylong.py +329 -0
  282. package/python/lib/python3.12/_sitebuiltins.py +103 -0
  283. package/python/lib/python3.12/_strptime.py +664 -0
  284. package/python/lib/python3.12/_sysconfigdata__darwin_darwin.py +984 -0
  285. package/python/lib/python3.12/_threading_local.py +242 -0
  286. package/python/lib/python3.12/_weakrefset.py +205 -0
  287. package/python/lib/python3.12/abc.py +188 -0
  288. package/python/lib/python3.12/aifc.py +984 -0
  289. package/python/lib/python3.12/antigravity.py +17 -0
  290. package/python/lib/python3.12/argparse.py +2650 -0
  291. package/python/lib/python3.12/ast.py +1840 -0
  292. package/python/lib/python3.12/asyncio/__init__.py +47 -0
  293. package/python/lib/python3.12/asyncio/__main__.py +128 -0
  294. package/python/lib/python3.12/asyncio/base_events.py +2024 -0
  295. package/python/lib/python3.12/asyncio/base_futures.py +67 -0
  296. package/python/lib/python3.12/asyncio/base_subprocess.py +285 -0
  297. package/python/lib/python3.12/asyncio/base_tasks.py +94 -0
  298. package/python/lib/python3.12/asyncio/constants.py +41 -0
  299. package/python/lib/python3.12/asyncio/coroutines.py +109 -0
  300. package/python/lib/python3.12/asyncio/events.py +868 -0
  301. package/python/lib/python3.12/asyncio/exceptions.py +62 -0
  302. package/python/lib/python3.12/asyncio/format_helpers.py +76 -0
  303. package/python/lib/python3.12/asyncio/futures.py +430 -0
  304. package/python/lib/python3.12/asyncio/locks.py +586 -0
  305. package/python/lib/python3.12/asyncio/log.py +7 -0
  306. package/python/lib/python3.12/asyncio/mixins.py +21 -0
  307. package/python/lib/python3.12/asyncio/proactor_events.py +897 -0
  308. package/python/lib/python3.12/asyncio/protocols.py +216 -0
  309. package/python/lib/python3.12/asyncio/queues.py +244 -0
  310. package/python/lib/python3.12/asyncio/runners.py +216 -0
  311. package/python/lib/python3.12/asyncio/selector_events.py +1324 -0
  312. package/python/lib/python3.12/asyncio/sslproto.py +929 -0
  313. package/python/lib/python3.12/asyncio/staggered.py +174 -0
  314. package/python/lib/python3.12/asyncio/streams.py +770 -0
  315. package/python/lib/python3.12/asyncio/subprocess.py +229 -0
  316. package/python/lib/python3.12/asyncio/taskgroups.py +268 -0
  317. package/python/lib/python3.12/asyncio/tasks.py +1065 -0
  318. package/python/lib/python3.12/asyncio/threads.py +25 -0
  319. package/python/lib/python3.12/asyncio/timeouts.py +168 -0
  320. package/python/lib/python3.12/asyncio/transports.py +335 -0
  321. package/python/lib/python3.12/asyncio/trsock.py +98 -0
  322. package/python/lib/python3.12/asyncio/unix_events.py +1500 -0
  323. package/python/lib/python3.12/asyncio/windows_events.py +901 -0
  324. package/python/lib/python3.12/asyncio/windows_utils.py +173 -0
  325. package/python/lib/python3.12/base64.py +586 -0
  326. package/python/lib/python3.12/bdb.py +920 -0
  327. package/python/lib/python3.12/bisect.py +118 -0
  328. package/python/lib/python3.12/bz2.py +344 -0
  329. package/python/lib/python3.12/cProfile.py +195 -0
  330. package/python/lib/python3.12/calendar.py +808 -0
  331. package/python/lib/python3.12/cgi.py +1014 -0
  332. package/python/lib/python3.12/cgitb.py +332 -0
  333. package/python/lib/python3.12/chunk.py +173 -0
  334. package/python/lib/python3.12/cmd.py +401 -0
  335. package/python/lib/python3.12/code.py +324 -0
  336. package/python/lib/python3.12/codecs.py +1129 -0
  337. package/python/lib/python3.12/codeop.py +161 -0
  338. package/python/lib/python3.12/collections/__init__.py +1592 -0
  339. package/python/lib/python3.12/collections/__pycache__/__init__.cpython-312.pyc +0 -0
  340. package/python/lib/python3.12/collections/__pycache__/abc.cpython-312.pyc +0 -0
  341. package/python/lib/python3.12/collections/abc.py +3 -0
  342. package/python/lib/python3.12/colorsys.py +166 -0
  343. package/python/lib/python3.12/compileall.py +469 -0
  344. package/python/lib/python3.12/concurrent/__init__.py +1 -0
  345. package/python/lib/python3.12/concurrent/futures/__init__.py +54 -0
  346. package/python/lib/python3.12/concurrent/futures/_base.py +654 -0
  347. package/python/lib/python3.12/concurrent/futures/process.py +876 -0
  348. package/python/lib/python3.12/concurrent/futures/thread.py +240 -0
  349. package/python/lib/python3.12/config-3.12-darwin/Makefile +3224 -0
  350. package/python/lib/python3.12/config-3.12-darwin/Setup +303 -0
  351. package/python/lib/python3.12/config-3.12-darwin/Setup.bootstrap +36 -0
  352. package/python/lib/python3.12/config-3.12-darwin/Setup.local +90 -0
  353. package/python/lib/python3.12/config-3.12-darwin/Setup.stdlib +183 -0
  354. package/python/lib/python3.12/config-3.12-darwin/config.c +246 -0
  355. package/python/lib/python3.12/config-3.12-darwin/config.c.in +71 -0
  356. package/python/lib/python3.12/config-3.12-darwin/install-sh +541 -0
  357. package/python/lib/python3.12/config-3.12-darwin/makesetup +353 -0
  358. package/python/lib/python3.12/config-3.12-darwin/python-config.py +76 -0
  359. package/python/lib/python3.12/config-3.12-darwin/python.o +0 -0
  360. package/python/lib/python3.12/configparser.py +1333 -0
  361. package/python/lib/python3.12/contextlib.py +800 -0
  362. package/python/lib/python3.12/contextvars.py +4 -0
  363. package/python/lib/python3.12/copy.py +292 -0
  364. package/python/lib/python3.12/copyreg.py +217 -0
  365. package/python/lib/python3.12/crypt.py +124 -0
  366. package/python/lib/python3.12/csv.py +451 -0
  367. package/python/lib/python3.12/ctypes/__init__.py +582 -0
  368. package/python/lib/python3.12/ctypes/_aix.py +327 -0
  369. package/python/lib/python3.12/ctypes/_endian.py +78 -0
  370. package/python/lib/python3.12/ctypes/macholib/README.ctypes +7 -0
  371. package/python/lib/python3.12/ctypes/macholib/__init__.py +9 -0
  372. package/python/lib/python3.12/ctypes/macholib/dyld.py +165 -0
  373. package/python/lib/python3.12/ctypes/macholib/dylib.py +42 -0
  374. package/python/lib/python3.12/ctypes/macholib/fetch_macholib +2 -0
  375. package/python/lib/python3.12/ctypes/macholib/fetch_macholib.bat +1 -0
  376. package/python/lib/python3.12/ctypes/macholib/framework.py +42 -0
  377. package/python/lib/python3.12/ctypes/util.py +379 -0
  378. package/python/lib/python3.12/ctypes/wintypes.py +202 -0
  379. package/python/lib/python3.12/curses/__init__.py +101 -0
  380. package/python/lib/python3.12/curses/ascii.py +99 -0
  381. package/python/lib/python3.12/curses/has_key.py +192 -0
  382. package/python/lib/python3.12/curses/panel.py +6 -0
  383. package/python/lib/python3.12/curses/textpad.py +204 -0
  384. package/python/lib/python3.12/dataclasses.py +1588 -0
  385. package/python/lib/python3.12/datetime.py +9 -0
  386. package/python/lib/python3.12/dbm/__init__.py +190 -0
  387. package/python/lib/python3.12/dbm/dumb.py +317 -0
  388. package/python/lib/python3.12/dbm/gnu.py +3 -0
  389. package/python/lib/python3.12/dbm/ndbm.py +3 -0
  390. package/python/lib/python3.12/decimal.py +108 -0
  391. package/python/lib/python3.12/difflib.py +2056 -0
  392. package/python/lib/python3.12/dis.py +805 -0
  393. package/python/lib/python3.12/doctest.py +2845 -0
  394. package/python/lib/python3.12/email/__init__.py +61 -0
  395. package/python/lib/python3.12/email/__pycache__/__init__.cpython-312.pyc +0 -0
  396. package/python/lib/python3.12/email/__pycache__/_encoded_words.cpython-312.pyc +0 -0
  397. package/python/lib/python3.12/email/__pycache__/_parseaddr.cpython-312.pyc +0 -0
  398. package/python/lib/python3.12/email/__pycache__/_policybase.cpython-312.pyc +0 -0
  399. package/python/lib/python3.12/email/__pycache__/base64mime.cpython-312.pyc +0 -0
  400. package/python/lib/python3.12/email/__pycache__/charset.cpython-312.pyc +0 -0
  401. package/python/lib/python3.12/email/__pycache__/encoders.cpython-312.pyc +0 -0
  402. package/python/lib/python3.12/email/__pycache__/errors.cpython-312.pyc +0 -0
  403. package/python/lib/python3.12/email/__pycache__/feedparser.cpython-312.pyc +0 -0
  404. package/python/lib/python3.12/email/__pycache__/header.cpython-312.pyc +0 -0
  405. package/python/lib/python3.12/email/__pycache__/iterators.cpython-312.pyc +0 -0
  406. package/python/lib/python3.12/email/__pycache__/message.cpython-312.pyc +0 -0
  407. package/python/lib/python3.12/email/__pycache__/parser.cpython-312.pyc +0 -0
  408. package/python/lib/python3.12/email/__pycache__/quoprimime.cpython-312.pyc +0 -0
  409. package/python/lib/python3.12/email/__pycache__/utils.cpython-312.pyc +0 -0
  410. package/python/lib/python3.12/email/_encoded_words.py +233 -0
  411. package/python/lib/python3.12/email/_header_value_parser.py +3108 -0
  412. package/python/lib/python3.12/email/_parseaddr.py +557 -0
  413. package/python/lib/python3.12/email/_policybase.py +382 -0
  414. package/python/lib/python3.12/email/architecture.rst +216 -0
  415. package/python/lib/python3.12/email/base64mime.py +115 -0
  416. package/python/lib/python3.12/email/charset.py +398 -0
  417. package/python/lib/python3.12/email/contentmanager.py +251 -0
  418. package/python/lib/python3.12/email/encoders.py +65 -0
  419. package/python/lib/python3.12/email/errors.py +117 -0
  420. package/python/lib/python3.12/email/feedparser.py +534 -0
  421. package/python/lib/python3.12/email/generator.py +530 -0
  422. package/python/lib/python3.12/email/header.py +573 -0
  423. package/python/lib/python3.12/email/headerregistry.py +604 -0
  424. package/python/lib/python3.12/email/iterators.py +68 -0
  425. package/python/lib/python3.12/email/message.py +1215 -0
  426. package/python/lib/python3.12/email/mime/__init__.py +0 -0
  427. package/python/lib/python3.12/email/mime/application.py +37 -0
  428. package/python/lib/python3.12/email/mime/audio.py +100 -0
  429. package/python/lib/python3.12/email/mime/base.py +29 -0
  430. package/python/lib/python3.12/email/mime/image.py +152 -0
  431. package/python/lib/python3.12/email/mime/message.py +33 -0
  432. package/python/lib/python3.12/email/mime/multipart.py +47 -0
  433. package/python/lib/python3.12/email/mime/nonmultipart.py +21 -0
  434. package/python/lib/python3.12/email/mime/text.py +40 -0
  435. package/python/lib/python3.12/email/parser.py +127 -0
  436. package/python/lib/python3.12/email/policy.py +232 -0
  437. package/python/lib/python3.12/email/quoprimime.py +300 -0
  438. package/python/lib/python3.12/email/utils.py +486 -0
  439. package/python/lib/python3.12/encodings/__init__.py +174 -0
  440. package/python/lib/python3.12/encodings/__pycache__/__init__.cpython-312.pyc +0 -0
  441. package/python/lib/python3.12/encodings/__pycache__/aliases.cpython-312.pyc +0 -0
  442. package/python/lib/python3.12/encodings/__pycache__/utf_8.cpython-312.pyc +0 -0
  443. package/python/lib/python3.12/encodings/aliases.py +551 -0
  444. package/python/lib/python3.12/encodings/ascii.py +50 -0
  445. package/python/lib/python3.12/encodings/base64_codec.py +55 -0
  446. package/python/lib/python3.12/encodings/big5.py +39 -0
  447. package/python/lib/python3.12/encodings/big5hkscs.py +39 -0
  448. package/python/lib/python3.12/encodings/bz2_codec.py +78 -0
  449. package/python/lib/python3.12/encodings/charmap.py +69 -0
  450. package/python/lib/python3.12/encodings/cp037.py +307 -0
  451. package/python/lib/python3.12/encodings/cp1006.py +307 -0
  452. package/python/lib/python3.12/encodings/cp1026.py +307 -0
  453. package/python/lib/python3.12/encodings/cp1125.py +698 -0
  454. package/python/lib/python3.12/encodings/cp1140.py +307 -0
  455. package/python/lib/python3.12/encodings/cp1250.py +307 -0
  456. package/python/lib/python3.12/encodings/cp1251.py +307 -0
  457. package/python/lib/python3.12/encodings/cp1252.py +307 -0
  458. package/python/lib/python3.12/encodings/cp1253.py +307 -0
  459. package/python/lib/python3.12/encodings/cp1254.py +307 -0
  460. package/python/lib/python3.12/encodings/cp1255.py +307 -0
  461. package/python/lib/python3.12/encodings/cp1256.py +307 -0
  462. package/python/lib/python3.12/encodings/cp1257.py +307 -0
  463. package/python/lib/python3.12/encodings/cp1258.py +307 -0
  464. package/python/lib/python3.12/encodings/cp273.py +307 -0
  465. package/python/lib/python3.12/encodings/cp424.py +307 -0
  466. package/python/lib/python3.12/encodings/cp437.py +698 -0
  467. package/python/lib/python3.12/encodings/cp500.py +307 -0
  468. package/python/lib/python3.12/encodings/cp720.py +309 -0
  469. package/python/lib/python3.12/encodings/cp737.py +698 -0
  470. package/python/lib/python3.12/encodings/cp775.py +697 -0
  471. package/python/lib/python3.12/encodings/cp850.py +698 -0
  472. package/python/lib/python3.12/encodings/cp852.py +698 -0
  473. package/python/lib/python3.12/encodings/cp855.py +698 -0
  474. package/python/lib/python3.12/encodings/cp856.py +307 -0
  475. package/python/lib/python3.12/encodings/cp857.py +694 -0
  476. package/python/lib/python3.12/encodings/cp858.py +698 -0
  477. package/python/lib/python3.12/encodings/cp860.py +698 -0
  478. package/python/lib/python3.12/encodings/cp861.py +698 -0
  479. package/python/lib/python3.12/encodings/cp862.py +698 -0
  480. package/python/lib/python3.12/encodings/cp863.py +698 -0
  481. package/python/lib/python3.12/encodings/cp864.py +690 -0
  482. package/python/lib/python3.12/encodings/cp865.py +698 -0
  483. package/python/lib/python3.12/encodings/cp866.py +698 -0
  484. package/python/lib/python3.12/encodings/cp869.py +689 -0
  485. package/python/lib/python3.12/encodings/cp874.py +307 -0
  486. package/python/lib/python3.12/encodings/cp875.py +307 -0
  487. package/python/lib/python3.12/encodings/cp932.py +39 -0
  488. package/python/lib/python3.12/encodings/cp949.py +39 -0
  489. package/python/lib/python3.12/encodings/cp950.py +39 -0
  490. package/python/lib/python3.12/encodings/euc_jis_2004.py +39 -0
  491. package/python/lib/python3.12/encodings/euc_jisx0213.py +39 -0
  492. package/python/lib/python3.12/encodings/euc_jp.py +39 -0
  493. package/python/lib/python3.12/encodings/euc_kr.py +39 -0
  494. package/python/lib/python3.12/encodings/gb18030.py +39 -0
  495. package/python/lib/python3.12/encodings/gb2312.py +39 -0
  496. package/python/lib/python3.12/encodings/gbk.py +39 -0
  497. package/python/lib/python3.12/encodings/hex_codec.py +55 -0
  498. package/python/lib/python3.12/encodings/hp_roman8.py +314 -0
  499. package/python/lib/python3.12/encodings/hz.py +39 -0
  500. package/python/lib/python3.12/encodings/idna.py +317 -0
  501. package/python/lib/python3.12/encodings/iso2022_jp.py +39 -0
  502. package/python/lib/python3.12/encodings/iso2022_jp_1.py +39 -0
  503. package/python/lib/python3.12/encodings/iso2022_jp_2.py +39 -0
  504. package/python/lib/python3.12/encodings/iso2022_jp_2004.py +39 -0
  505. package/python/lib/python3.12/encodings/iso2022_jp_3.py +39 -0
  506. package/python/lib/python3.12/encodings/iso2022_jp_ext.py +39 -0
  507. package/python/lib/python3.12/encodings/iso2022_kr.py +39 -0
  508. package/python/lib/python3.12/encodings/iso8859_1.py +307 -0
  509. package/python/lib/python3.12/encodings/iso8859_10.py +307 -0
  510. package/python/lib/python3.12/encodings/iso8859_11.py +307 -0
  511. package/python/lib/python3.12/encodings/iso8859_13.py +307 -0
  512. package/python/lib/python3.12/encodings/iso8859_14.py +307 -0
  513. package/python/lib/python3.12/encodings/iso8859_15.py +307 -0
  514. package/python/lib/python3.12/encodings/iso8859_16.py +307 -0
  515. package/python/lib/python3.12/encodings/iso8859_2.py +307 -0
  516. package/python/lib/python3.12/encodings/iso8859_3.py +307 -0
  517. package/python/lib/python3.12/encodings/iso8859_4.py +307 -0
  518. package/python/lib/python3.12/encodings/iso8859_5.py +307 -0
  519. package/python/lib/python3.12/encodings/iso8859_6.py +307 -0
  520. package/python/lib/python3.12/encodings/iso8859_7.py +307 -0
  521. package/python/lib/python3.12/encodings/iso8859_8.py +307 -0
  522. package/python/lib/python3.12/encodings/iso8859_9.py +307 -0
  523. package/python/lib/python3.12/encodings/johab.py +39 -0
  524. package/python/lib/python3.12/encodings/koi8_r.py +307 -0
  525. package/python/lib/python3.12/encodings/koi8_t.py +308 -0
  526. package/python/lib/python3.12/encodings/koi8_u.py +307 -0
  527. package/python/lib/python3.12/encodings/kz1048.py +307 -0
  528. package/python/lib/python3.12/encodings/latin_1.py +50 -0
  529. package/python/lib/python3.12/encodings/mac_arabic.py +698 -0
  530. package/python/lib/python3.12/encodings/mac_croatian.py +307 -0
  531. package/python/lib/python3.12/encodings/mac_cyrillic.py +307 -0
  532. package/python/lib/python3.12/encodings/mac_farsi.py +307 -0
  533. package/python/lib/python3.12/encodings/mac_greek.py +307 -0
  534. package/python/lib/python3.12/encodings/mac_iceland.py +307 -0
  535. package/python/lib/python3.12/encodings/mac_latin2.py +312 -0
  536. package/python/lib/python3.12/encodings/mac_roman.py +307 -0
  537. package/python/lib/python3.12/encodings/mac_romanian.py +307 -0
  538. package/python/lib/python3.12/encodings/mac_turkish.py +307 -0
  539. package/python/lib/python3.12/encodings/mbcs.py +47 -0
  540. package/python/lib/python3.12/encodings/oem.py +41 -0
  541. package/python/lib/python3.12/encodings/palmos.py +308 -0
  542. package/python/lib/python3.12/encodings/ptcp154.py +312 -0
  543. package/python/lib/python3.12/encodings/punycode.py +237 -0
  544. package/python/lib/python3.12/encodings/quopri_codec.py +56 -0
  545. package/python/lib/python3.12/encodings/raw_unicode_escape.py +46 -0
  546. package/python/lib/python3.12/encodings/rot_13.py +113 -0
  547. package/python/lib/python3.12/encodings/shift_jis.py +39 -0
  548. package/python/lib/python3.12/encodings/shift_jis_2004.py +39 -0
  549. package/python/lib/python3.12/encodings/shift_jisx0213.py +39 -0
  550. package/python/lib/python3.12/encodings/tis_620.py +307 -0
  551. package/python/lib/python3.12/encodings/undefined.py +49 -0
  552. package/python/lib/python3.12/encodings/unicode_escape.py +46 -0
  553. package/python/lib/python3.12/encodings/utf_16.py +155 -0
  554. package/python/lib/python3.12/encodings/utf_16_be.py +42 -0
  555. package/python/lib/python3.12/encodings/utf_16_le.py +42 -0
  556. package/python/lib/python3.12/encodings/utf_32.py +150 -0
  557. package/python/lib/python3.12/encodings/utf_32_be.py +37 -0
  558. package/python/lib/python3.12/encodings/utf_32_le.py +37 -0
  559. package/python/lib/python3.12/encodings/utf_7.py +38 -0
  560. package/python/lib/python3.12/encodings/utf_8.py +42 -0
  561. package/python/lib/python3.12/encodings/utf_8_sig.py +130 -0
  562. package/python/lib/python3.12/encodings/uu_codec.py +103 -0
  563. package/python/lib/python3.12/encodings/zlib_codec.py +77 -0
  564. package/python/lib/python3.12/ensurepip/__init__.py +291 -0
  565. package/python/lib/python3.12/ensurepip/__main__.py +5 -0
  566. package/python/lib/python3.12/ensurepip/_bundled/pip-25.0.1-py3-none-any.whl +0 -0
  567. package/python/lib/python3.12/ensurepip/_uninstall.py +31 -0
  568. package/python/lib/python3.12/enum.py +2108 -0
  569. package/python/lib/python3.12/filecmp.py +315 -0
  570. package/python/lib/python3.12/fileinput.py +442 -0
  571. package/python/lib/python3.12/fnmatch.py +185 -0
  572. package/python/lib/python3.12/fractions.py +990 -0
  573. package/python/lib/python3.12/ftplib.py +966 -0
  574. package/python/lib/python3.12/functools.py +1009 -0
  575. package/python/lib/python3.12/genericpath.py +176 -0
  576. package/python/lib/python3.12/getopt.py +215 -0
  577. package/python/lib/python3.12/getpass.py +185 -0
  578. package/python/lib/python3.12/gettext.py +646 -0
  579. package/python/lib/python3.12/glob.py +252 -0
  580. package/python/lib/python3.12/graphlib.py +250 -0
  581. package/python/lib/python3.12/gzip.py +711 -0
  582. package/python/lib/python3.12/hashlib.py +253 -0
  583. package/python/lib/python3.12/heapq.py +603 -0
  584. package/python/lib/python3.12/hmac.py +219 -0
  585. package/python/lib/python3.12/html/__init__.py +132 -0
  586. package/python/lib/python3.12/html/entities.py +2513 -0
  587. package/python/lib/python3.12/html/parser.py +535 -0
  588. package/python/lib/python3.12/http/__init__.py +200 -0
  589. package/python/lib/python3.12/http/__pycache__/__init__.cpython-312.pyc +0 -0
  590. package/python/lib/python3.12/http/__pycache__/client.cpython-312.pyc +0 -0
  591. package/python/lib/python3.12/http/client.py +1570 -0
  592. package/python/lib/python3.12/http/cookiejar.py +2121 -0
  593. package/python/lib/python3.12/http/cookies.py +615 -0
  594. package/python/lib/python3.12/http/server.py +1335 -0
  595. package/python/lib/python3.12/imaplib.py +1641 -0
  596. package/python/lib/python3.12/imghdr.py +180 -0
  597. package/python/lib/python3.12/importlib/__init__.py +138 -0
  598. package/python/lib/python3.12/importlib/_abc.py +39 -0
  599. package/python/lib/python3.12/importlib/_bootstrap.py +1551 -0
  600. package/python/lib/python3.12/importlib/_bootstrap_external.py +1749 -0
  601. package/python/lib/python3.12/importlib/abc.py +239 -0
  602. package/python/lib/python3.12/importlib/machinery.py +20 -0
  603. package/python/lib/python3.12/importlib/metadata/__init__.py +966 -0
  604. package/python/lib/python3.12/importlib/metadata/_adapters.py +89 -0
  605. package/python/lib/python3.12/importlib/metadata/_collections.py +30 -0
  606. package/python/lib/python3.12/importlib/metadata/_functools.py +104 -0
  607. package/python/lib/python3.12/importlib/metadata/_itertools.py +73 -0
  608. package/python/lib/python3.12/importlib/metadata/_meta.py +63 -0
  609. package/python/lib/python3.12/importlib/metadata/_text.py +99 -0
  610. package/python/lib/python3.12/importlib/readers.py +12 -0
  611. package/python/lib/python3.12/importlib/resources/__init__.py +38 -0
  612. package/python/lib/python3.12/importlib/resources/_adapters.py +168 -0
  613. package/python/lib/python3.12/importlib/resources/_common.py +208 -0
  614. package/python/lib/python3.12/importlib/resources/_itertools.py +38 -0
  615. package/python/lib/python3.12/importlib/resources/_legacy.py +98 -0
  616. package/python/lib/python3.12/importlib/resources/abc.py +173 -0
  617. package/python/lib/python3.12/importlib/resources/readers.py +146 -0
  618. package/python/lib/python3.12/importlib/resources/simple.py +106 -0
  619. package/python/lib/python3.12/importlib/simple.py +14 -0
  620. package/python/lib/python3.12/importlib/util.py +270 -0
  621. package/python/lib/python3.12/inspect.py +3433 -0
  622. package/python/lib/python3.12/io.py +99 -0
  623. package/python/lib/python3.12/ipaddress.py +2430 -0
  624. package/python/lib/python3.12/json/__init__.py +359 -0
  625. package/python/lib/python3.12/json/__pycache__/__init__.cpython-312.pyc +0 -0
  626. package/python/lib/python3.12/json/__pycache__/decoder.cpython-312.pyc +0 -0
  627. package/python/lib/python3.12/json/__pycache__/encoder.cpython-312.pyc +0 -0
  628. package/python/lib/python3.12/json/__pycache__/scanner.cpython-312.pyc +0 -0
  629. package/python/lib/python3.12/json/decoder.py +357 -0
  630. package/python/lib/python3.12/json/encoder.py +443 -0
  631. package/python/lib/python3.12/json/scanner.py +73 -0
  632. package/python/lib/python3.12/json/tool.py +85 -0
  633. package/python/lib/python3.12/keyword.py +64 -0
  634. package/python/lib/python3.12/lib-dynload/.empty +0 -0
  635. package/python/lib/python3.12/lib-dynload/_crypt.cpython-312-darwin.so +0 -0
  636. package/python/lib/python3.12/lib-dynload/_dbm.cpython-312-darwin.so +0 -0
  637. package/python/lib/python3.12/linecache.py +185 -0
  638. package/python/lib/python3.12/locale.py +1779 -0
  639. package/python/lib/python3.12/logging/__init__.py +2345 -0
  640. package/python/lib/python3.12/logging/config.py +1078 -0
  641. package/python/lib/python3.12/logging/handlers.py +1624 -0
  642. package/python/lib/python3.12/lzma.py +356 -0
  643. package/python/lib/python3.12/mailbox.py +2153 -0
  644. package/python/lib/python3.12/mailcap.py +302 -0
  645. package/python/lib/python3.12/mimetypes.py +656 -0
  646. package/python/lib/python3.12/modulefinder.py +666 -0
  647. package/python/lib/python3.12/multiprocessing/__init__.py +37 -0
  648. package/python/lib/python3.12/multiprocessing/connection.py +1178 -0
  649. package/python/lib/python3.12/multiprocessing/context.py +377 -0
  650. package/python/lib/python3.12/multiprocessing/dummy/__init__.py +126 -0
  651. package/python/lib/python3.12/multiprocessing/dummy/connection.py +75 -0
  652. package/python/lib/python3.12/multiprocessing/forkserver.py +350 -0
  653. package/python/lib/python3.12/multiprocessing/heap.py +337 -0
  654. package/python/lib/python3.12/multiprocessing/managers.py +1387 -0
  655. package/python/lib/python3.12/multiprocessing/pool.py +957 -0
  656. package/python/lib/python3.12/multiprocessing/popen_fork.py +83 -0
  657. package/python/lib/python3.12/multiprocessing/popen_forkserver.py +74 -0
  658. package/python/lib/python3.12/multiprocessing/popen_spawn_posix.py +72 -0
  659. package/python/lib/python3.12/multiprocessing/popen_spawn_win32.py +145 -0
  660. package/python/lib/python3.12/multiprocessing/process.py +439 -0
  661. package/python/lib/python3.12/multiprocessing/queues.py +401 -0
  662. package/python/lib/python3.12/multiprocessing/reduction.py +281 -0
  663. package/python/lib/python3.12/multiprocessing/resource_sharer.py +154 -0
  664. package/python/lib/python3.12/multiprocessing/resource_tracker.py +294 -0
  665. package/python/lib/python3.12/multiprocessing/shared_memory.py +534 -0
  666. package/python/lib/python3.12/multiprocessing/sharedctypes.py +240 -0
  667. package/python/lib/python3.12/multiprocessing/spawn.py +307 -0
  668. package/python/lib/python3.12/multiprocessing/synchronize.py +404 -0
  669. package/python/lib/python3.12/multiprocessing/util.py +494 -0
  670. package/python/lib/python3.12/netrc.py +192 -0
  671. package/python/lib/python3.12/nntplib.py +1093 -0
  672. package/python/lib/python3.12/ntpath.py +869 -0
  673. package/python/lib/python3.12/nturl2path.py +69 -0
  674. package/python/lib/python3.12/numbers.py +418 -0
  675. package/python/lib/python3.12/opcode.py +493 -0
  676. package/python/lib/python3.12/operator.py +467 -0
  677. package/python/lib/python3.12/optparse.py +1681 -0
  678. package/python/lib/python3.12/os.py +1159 -0
  679. package/python/lib/python3.12/pathlib.py +1435 -0
  680. package/python/lib/python3.12/pdb.py +1987 -0
  681. package/python/lib/python3.12/pickle.py +1866 -0
  682. package/python/lib/python3.12/pickletools.py +2904 -0
  683. package/python/lib/python3.12/pipes.py +250 -0
  684. package/python/lib/python3.12/pkgutil.py +529 -0
  685. package/python/lib/python3.12/platform.py +1359 -0
  686. package/python/lib/python3.12/plistlib.py +920 -0
  687. package/python/lib/python3.12/poplib.py +478 -0
  688. package/python/lib/python3.12/posixpath.py +577 -0
  689. package/python/lib/python3.12/pprint.py +658 -0
  690. package/python/lib/python3.12/profile.py +615 -0
  691. package/python/lib/python3.12/pstats.py +778 -0
  692. package/python/lib/python3.12/pty.py +211 -0
  693. package/python/lib/python3.12/py_compile.py +212 -0
  694. package/python/lib/python3.12/pyclbr.py +314 -0
  695. package/python/lib/python3.12/pydoc.py +2950 -0
  696. package/python/lib/python3.12/pydoc_data/__init__.py +0 -0
  697. package/python/lib/python3.12/pydoc_data/_pydoc.css +112 -0
  698. package/python/lib/python3.12/pydoc_data/topics.py +12500 -0
  699. package/python/lib/python3.12/queue.py +326 -0
  700. package/python/lib/python3.12/quopri.py +237 -0
  701. package/python/lib/python3.12/random.py +996 -0
  702. package/python/lib/python3.12/re/__init__.py +385 -0
  703. package/python/lib/python3.12/re/__pycache__/__init__.cpython-312.pyc +0 -0
  704. package/python/lib/python3.12/re/__pycache__/_casefix.cpython-312.pyc +0 -0
  705. package/python/lib/python3.12/re/__pycache__/_compiler.cpython-312.pyc +0 -0
  706. package/python/lib/python3.12/re/__pycache__/_constants.cpython-312.pyc +0 -0
  707. package/python/lib/python3.12/re/__pycache__/_parser.cpython-312.pyc +0 -0
  708. package/python/lib/python3.12/re/_casefix.py +106 -0
  709. package/python/lib/python3.12/re/_compiler.py +770 -0
  710. package/python/lib/python3.12/re/_constants.py +220 -0
  711. package/python/lib/python3.12/re/_parser.py +1080 -0
  712. package/python/lib/python3.12/reprlib.py +214 -0
  713. package/python/lib/python3.12/rlcompleter.py +219 -0
  714. package/python/lib/python3.12/runpy.py +319 -0
  715. package/python/lib/python3.12/sched.py +167 -0
  716. package/python/lib/python3.12/secrets.py +71 -0
  717. package/python/lib/python3.12/selectors.py +623 -0
  718. package/python/lib/python3.12/shelve.py +243 -0
  719. package/python/lib/python3.12/shlex.py +345 -0
  720. package/python/lib/python3.12/shutil.py +1566 -0
  721. package/python/lib/python3.12/signal.py +94 -0
  722. package/python/lib/python3.12/site-packages/README.txt +2 -0
  723. package/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
  724. package/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
  725. package/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
  726. package/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
  727. package/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
  728. package/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
  729. package/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
  730. package/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
  731. package/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +264 -0
  732. package/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1298 -0
  733. package/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
  734. package/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +212 -0
  735. package/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
  736. package/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
  737. package/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
  738. package/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
  739. package/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +472 -0
  740. package/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
  741. package/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
  742. package/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
  743. package/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
  744. package/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
  745. package/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
  746. package/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
  747. package/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +196 -0
  748. package/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
  749. package/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
  750. package/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
  751. package/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
  752. package/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
  753. package/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
  754. package/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +904 -0
  755. package/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +403 -0
  756. package/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
  757. package/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
  758. package/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
  759. package/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
  760. package/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
  761. package/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
  762. package/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
  763. package/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
  764. package/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
  765. package/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
  766. package/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
  767. package/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
  768. package/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
  769. package/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
  770. package/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1113 -0
  771. package/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
  772. package/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +438 -0
  773. package/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
  774. package/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
  775. package/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
  776. package/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
  777. package/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
  778. package/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
  779. package/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
  780. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  781. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  782. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +235 -0
  783. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
  784. package/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  785. package/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
  786. package/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +23 -0
  787. package/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +42 -0
  788. package/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
  789. package/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
  790. package/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
  791. package/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
  792. package/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +91 -0
  793. package/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +23 -0
  794. package/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +124 -0
  795. package/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +36 -0
  796. package/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
  797. package/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
  798. package/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
  799. package/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +570 -0
  800. package/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
  801. package/python/lib/python3.12/site-packages/pip/_internal/network/download.py +340 -0
  802. package/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
  803. package/python/lib/python3.12/site-packages/pip/_internal/network/session.py +537 -0
  804. package/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
  805. package/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  806. package/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  807. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  808. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  809. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  810. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  811. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  812. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  813. package/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
  814. package/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
  815. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  816. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +759 -0
  817. package/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +751 -0
  818. package/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
  819. package/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
  820. package/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +677 -0
  821. package/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
  822. package/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +86 -0
  823. package/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +622 -0
  824. package/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +838 -0
  825. package/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
  826. package/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
  827. package/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  828. package/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
  829. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  830. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  831. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  832. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +164 -0
  833. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +599 -0
  834. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +914 -0
  835. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  836. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +306 -0
  837. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  838. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
  839. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  840. package/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +246 -0
  841. package/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  842. package/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  843. package/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
  844. package/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
  845. package/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
  846. package/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  847. package/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
  848. package/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +139 -0
  849. package/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +92 -0
  850. package/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
  851. package/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  852. package/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +201 -0
  853. package/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
  854. package/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
  855. package/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
  856. package/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
  857. package/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
  858. package/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
  859. package/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +283 -0
  860. package/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
  861. package/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
  862. package/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
  863. package/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +381 -0
  864. package/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
  865. package/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
  866. package/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
  867. package/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
  868. package/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  869. package/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
  870. package/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  871. package/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
  872. package/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
  873. package/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
  874. package/python/lib/python3.12/site-packages/pip/_vendor/README.rst +178 -0
  875. package/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
  876. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  877. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
  878. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  879. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
  880. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  881. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  882. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  883. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  884. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  885. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
  886. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  887. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  888. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  889. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  890. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
  891. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  892. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  893. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4494 -0
  894. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
  895. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  896. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
  897. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  898. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  899. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
  900. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  901. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  902. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  903. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  904. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
  905. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  906. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  907. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  908. package/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
  909. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
  910. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
  911. package/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
  912. package/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  913. package/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
  914. package/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
  915. package/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
  916. package/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
  917. package/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
  918. package/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
  919. package/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
  920. package/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
  921. package/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  922. package/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
  923. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
  924. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  925. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  926. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  927. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  928. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
  929. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  930. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
  931. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  932. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
  933. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  934. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  935. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +393 -0
  936. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +33 -0
  937. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
  938. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/dependency_groups.py +302 -0
  939. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/direct_url.py +325 -0
  940. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/errors.py +94 -0
  941. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +186 -0
  942. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
  943. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +492 -0
  944. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +964 -0
  945. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  946. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +905 -0
  947. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +129 -0
  948. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1943 -0
  949. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +932 -0
  950. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +296 -0
  951. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +1231 -0
  952. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
  953. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  954. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
  955. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  956. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  957. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  958. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
  959. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
  960. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  961. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
  962. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
  963. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
  964. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
  965. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  966. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  967. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
  968. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
  969. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  970. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  971. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  972. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  973. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  974. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  975. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  976. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
  977. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  978. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  979. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  980. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  981. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  982. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
  983. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  984. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  985. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
  986. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  987. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
  988. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  989. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  990. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  991. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  992. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  993. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  994. package/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
  995. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +178 -0
  996. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
  997. package/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +51 -0
  998. package/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +697 -0
  999. package/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
  1000. package/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
  1001. package/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +18 -0
  1002. package/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
  1003. package/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
  1004. package/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +152 -0
  1005. package/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +124 -0
  1006. package/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +34 -0
  1007. package/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1041 -0
  1008. package/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
  1009. package/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +834 -0
  1010. package/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  1011. package/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
  1012. package/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1083 -0
  1013. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
  1014. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  1015. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  1016. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  1017. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  1018. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  1019. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  1020. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  1021. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  1022. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  1023. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  1024. package/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
  1025. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
  1026. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
  1027. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  1028. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  1029. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  1030. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  1031. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
  1032. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  1033. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  1034. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  1035. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
  1036. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  1037. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  1038. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
  1039. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  1040. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  1041. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
  1042. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
  1043. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  1044. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
  1045. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  1046. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  1047. package/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
  1048. package/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
  1049. package/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
  1050. package/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
  1051. package/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
  1052. package/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
  1053. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
  1054. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  1055. package/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
  1056. package/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
  1057. package/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
  1058. package/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
  1059. package/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
  1060. package/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  1061. package/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  1062. package/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
  1063. package/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
  1064. package/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  1065. package/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
  1066. package/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  1067. package/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
  1068. package/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  1069. package/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
  1070. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
  1071. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
  1072. package/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
  1073. package/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
  1074. package/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
  1075. package/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
  1076. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
  1077. package/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
  1078. package/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
  1079. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  1080. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
  1081. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  1082. package/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
  1083. package/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
  1084. package/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  1085. package/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
  1086. package/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
  1087. package/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
  1088. package/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
  1089. package/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
  1090. package/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
  1091. package/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
  1092. package/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
  1093. package/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
  1094. package/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
  1095. package/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
  1096. package/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
  1097. package/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  1098. package/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
  1099. package/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
  1100. package/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
  1101. package/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
  1102. package/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
  1103. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
  1104. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  1105. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +788 -0
  1106. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
  1107. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
  1108. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
  1109. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
  1110. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  1111. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  1112. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  1113. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
  1114. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  1115. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
  1116. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  1117. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
  1118. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  1119. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  1120. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  1121. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1122. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +211 -0
  1123. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_base_connection.py +165 -0
  1124. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +487 -0
  1125. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_request_methods.py +278 -0
  1126. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +34 -0
  1127. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +1099 -0
  1128. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1178 -0
  1129. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1130. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/__init__.py +17 -0
  1131. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/connection.py +260 -0
  1132. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
  1133. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/fetch.py +726 -0
  1134. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/request.py +22 -0
  1135. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/response.py +277 -0
  1136. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +564 -0
  1137. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +228 -0
  1138. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +335 -0
  1139. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +341 -0
  1140. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +89 -0
  1141. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/__init__.py +53 -0
  1142. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/connection.py +356 -0
  1143. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/probe.py +87 -0
  1144. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +651 -0
  1145. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/py.typed +2 -0
  1146. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +1474 -0
  1147. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +42 -0
  1148. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +137 -0
  1149. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +43 -0
  1150. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +254 -0
  1151. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +101 -0
  1152. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +549 -0
  1153. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +527 -0
  1154. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  1155. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +271 -0
  1156. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +275 -0
  1157. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +469 -0
  1158. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/util.py +42 -0
  1159. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +124 -0
  1160. package/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +18 -0
  1161. package/python/lib/python3.12/site-packages/pip/py.typed +4 -0
  1162. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/INSTALLER +1 -0
  1163. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/METADATA +109 -0
  1164. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/RECORD +866 -0
  1165. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/REQUESTED +0 -0
  1166. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/WHEEL +4 -0
  1167. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/direct_url.json +1 -0
  1168. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/entry_points.txt +4 -0
  1169. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/AUTHORS.txt +868 -0
  1170. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/LICENSE.txt +20 -0
  1171. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  1172. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  1173. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
  1174. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  1175. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
  1176. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  1177. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  1178. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1179. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1180. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
  1181. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  1182. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  1183. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1184. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  1185. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  1186. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  1187. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  1188. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
  1189. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  1190. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1191. package/python/lib/python3.12/site.py +693 -0
  1192. package/python/lib/python3.12/smtplib.py +1109 -0
  1193. package/python/lib/python3.12/sndhdr.py +271 -0
  1194. package/python/lib/python3.12/socket.py +983 -0
  1195. package/python/lib/python3.12/socketserver.py +863 -0
  1196. package/python/lib/python3.12/sqlite3/__init__.py +70 -0
  1197. package/python/lib/python3.12/sqlite3/__main__.py +127 -0
  1198. package/python/lib/python3.12/sqlite3/__pycache__/__init__.cpython-312.pyc +0 -0
  1199. package/python/lib/python3.12/sqlite3/__pycache__/dbapi2.cpython-312.pyc +0 -0
  1200. package/python/lib/python3.12/sqlite3/dbapi2.py +108 -0
  1201. package/python/lib/python3.12/sqlite3/dump.py +89 -0
  1202. package/python/lib/python3.12/sre_compile.py +7 -0
  1203. package/python/lib/python3.12/sre_constants.py +7 -0
  1204. package/python/lib/python3.12/sre_parse.py +7 -0
  1205. package/python/lib/python3.12/ssl.py +1488 -0
  1206. package/python/lib/python3.12/stat.py +195 -0
  1207. package/python/lib/python3.12/statistics.py +1454 -0
  1208. package/python/lib/python3.12/string.py +309 -0
  1209. package/python/lib/python3.12/stringprep.py +272 -0
  1210. package/python/lib/python3.12/struct.py +15 -0
  1211. package/python/lib/python3.12/subprocess.py +2216 -0
  1212. package/python/lib/python3.12/sunau.py +533 -0
  1213. package/python/lib/python3.12/symtable.py +362 -0
  1214. package/python/lib/python3.12/sysconfig.py +894 -0
  1215. package/python/lib/python3.12/tabnanny.py +340 -0
  1216. package/python/lib/python3.12/tarfile.py +3031 -0
  1217. package/python/lib/python3.12/telnetlib.py +680 -0
  1218. package/python/lib/python3.12/tempfile.py +956 -0
  1219. package/python/lib/python3.12/textwrap.py +491 -0
  1220. package/python/lib/python3.12/this.py +28 -0
  1221. package/python/lib/python3.12/threading.py +1708 -0
  1222. package/python/lib/python3.12/timeit.py +381 -0
  1223. package/python/lib/python3.12/token.py +143 -0
  1224. package/python/lib/python3.12/tokenize.py +594 -0
  1225. package/python/lib/python3.12/tomllib/__init__.py +10 -0
  1226. package/python/lib/python3.12/tomllib/_parser.py +691 -0
  1227. package/python/lib/python3.12/tomllib/_re.py +107 -0
  1228. package/python/lib/python3.12/tomllib/_types.py +10 -0
  1229. package/python/lib/python3.12/trace.py +748 -0
  1230. package/python/lib/python3.12/traceback.py +1187 -0
  1231. package/python/lib/python3.12/tracemalloc.py +560 -0
  1232. package/python/lib/python3.12/tty.py +73 -0
  1233. package/python/lib/python3.12/turtle.py +4207 -0
  1234. package/python/lib/python3.12/types.py +333 -0
  1235. package/python/lib/python3.12/typing.py +3494 -0
  1236. package/python/lib/python3.12/unittest/__init__.py +85 -0
  1237. package/python/lib/python3.12/unittest/__main__.py +18 -0
  1238. package/python/lib/python3.12/unittest/_log.py +86 -0
  1239. package/python/lib/python3.12/unittest/async_case.py +143 -0
  1240. package/python/lib/python3.12/unittest/case.py +1456 -0
  1241. package/python/lib/python3.12/unittest/loader.py +497 -0
  1242. package/python/lib/python3.12/unittest/main.py +291 -0
  1243. package/python/lib/python3.12/unittest/mock.py +3054 -0
  1244. package/python/lib/python3.12/unittest/result.py +256 -0
  1245. package/python/lib/python3.12/unittest/runner.py +292 -0
  1246. package/python/lib/python3.12/unittest/signals.py +71 -0
  1247. package/python/lib/python3.12/unittest/suite.py +379 -0
  1248. package/python/lib/python3.12/unittest/util.py +170 -0
  1249. package/python/lib/python3.12/urllib/__init__.py +0 -0
  1250. package/python/lib/python3.12/urllib/__pycache__/__init__.cpython-312.pyc +0 -0
  1251. package/python/lib/python3.12/urllib/__pycache__/error.cpython-312.pyc +0 -0
  1252. package/python/lib/python3.12/urllib/__pycache__/parse.cpython-312.pyc +0 -0
  1253. package/python/lib/python3.12/urllib/__pycache__/request.cpython-312.pyc +0 -0
  1254. package/python/lib/python3.12/urllib/__pycache__/response.cpython-312.pyc +0 -0
  1255. package/python/lib/python3.12/urllib/error.py +74 -0
  1256. package/python/lib/python3.12/urllib/parse.py +1262 -0
  1257. package/python/lib/python3.12/urllib/request.py +2816 -0
  1258. package/python/lib/python3.12/urllib/response.py +84 -0
  1259. package/python/lib/python3.12/urllib/robotparser.py +275 -0
  1260. package/python/lib/python3.12/uu.py +216 -0
  1261. package/python/lib/python3.12/uuid.py +793 -0
  1262. package/python/lib/python3.12/venv/__init__.py +608 -0
  1263. package/python/lib/python3.12/venv/__main__.py +10 -0
  1264. package/python/lib/python3.12/venv/scripts/common/Activate.ps1 +247 -0
  1265. package/python/lib/python3.12/venv/scripts/common/activate +76 -0
  1266. package/python/lib/python3.12/venv/scripts/posix/activate.csh +27 -0
  1267. package/python/lib/python3.12/venv/scripts/posix/activate.fish +69 -0
  1268. package/python/lib/python3.12/warnings.py +598 -0
  1269. package/python/lib/python3.12/wave.py +653 -0
  1270. package/python/lib/python3.12/weakref.py +674 -0
  1271. package/python/lib/python3.12/webbrowser.py +689 -0
  1272. package/python/lib/python3.12/wsgiref/__init__.py +25 -0
  1273. package/python/lib/python3.12/wsgiref/handlers.py +573 -0
  1274. package/python/lib/python3.12/wsgiref/headers.py +192 -0
  1275. package/python/lib/python3.12/wsgiref/simple_server.py +165 -0
  1276. package/python/lib/python3.12/wsgiref/types.py +54 -0
  1277. package/python/lib/python3.12/wsgiref/util.py +159 -0
  1278. package/python/lib/python3.12/wsgiref/validate.py +438 -0
  1279. package/python/lib/python3.12/xdrlib.py +242 -0
  1280. package/python/lib/python3.12/xml/__init__.py +20 -0
  1281. package/python/lib/python3.12/xml/__pycache__/__init__.cpython-312.pyc +0 -0
  1282. package/python/lib/python3.12/xml/dom/NodeFilter.py +27 -0
  1283. package/python/lib/python3.12/xml/dom/__init__.py +140 -0
  1284. package/python/lib/python3.12/xml/dom/domreg.py +99 -0
  1285. package/python/lib/python3.12/xml/dom/expatbuilder.py +962 -0
  1286. package/python/lib/python3.12/xml/dom/minicompat.py +109 -0
  1287. package/python/lib/python3.12/xml/dom/minidom.py +2008 -0
  1288. package/python/lib/python3.12/xml/dom/pulldom.py +336 -0
  1289. package/python/lib/python3.12/xml/dom/xmlbuilder.py +389 -0
  1290. package/python/lib/python3.12/xml/etree/ElementInclude.py +186 -0
  1291. package/python/lib/python3.12/xml/etree/ElementPath.py +423 -0
  1292. package/python/lib/python3.12/xml/etree/ElementTree.py +2085 -0
  1293. package/python/lib/python3.12/xml/etree/__init__.py +33 -0
  1294. package/python/lib/python3.12/xml/etree/cElementTree.py +3 -0
  1295. package/python/lib/python3.12/xml/parsers/__init__.py +8 -0
  1296. package/python/lib/python3.12/xml/parsers/__pycache__/__init__.cpython-312.pyc +0 -0
  1297. package/python/lib/python3.12/xml/parsers/__pycache__/expat.cpython-312.pyc +0 -0
  1298. package/python/lib/python3.12/xml/parsers/expat.py +8 -0
  1299. package/python/lib/python3.12/xml/sax/__init__.py +94 -0
  1300. package/python/lib/python3.12/xml/sax/_exceptions.py +127 -0
  1301. package/python/lib/python3.12/xml/sax/expatreader.py +454 -0
  1302. package/python/lib/python3.12/xml/sax/handler.py +387 -0
  1303. package/python/lib/python3.12/xml/sax/saxutils.py +369 -0
  1304. package/python/lib/python3.12/xml/sax/xmlreader.py +378 -0
  1305. package/python/lib/python3.12/xmlrpc/__init__.py +1 -0
  1306. package/python/lib/python3.12/xmlrpc/client.py +1529 -0
  1307. package/python/lib/python3.12/xmlrpc/server.py +1002 -0
  1308. package/python/lib/python3.12/zipapp.py +206 -0
  1309. package/python/lib/python3.12/zipfile/__init__.py +2340 -0
  1310. package/python/lib/python3.12/zipfile/__main__.py +4 -0
  1311. package/python/lib/python3.12/zipfile/_path/__init__.py +412 -0
  1312. package/python/lib/python3.12/zipfile/_path/glob.py +53 -0
  1313. package/python/lib/python3.12/zipimport.py +712 -0
  1314. package/python/lib/python3.12/zoneinfo/__init__.py +31 -0
  1315. package/python/lib/python3.12/zoneinfo/_common.py +164 -0
  1316. package/python/lib/python3.12/zoneinfo/_tzpath.py +181 -0
  1317. package/python/lib/python3.12/zoneinfo/_zoneinfo.py +772 -0
@@ -0,0 +1,3054 @@
1
+ # mock.py
2
+ # Test tools for mocking and patching.
3
+ # Maintained by Michael Foord
4
+ # Backport for other versions of Python available from
5
+ # https://pypi.org/project/mock
6
+
7
+ __all__ = (
8
+ 'Mock',
9
+ 'MagicMock',
10
+ 'patch',
11
+ 'sentinel',
12
+ 'DEFAULT',
13
+ 'ANY',
14
+ 'call',
15
+ 'create_autospec',
16
+ 'AsyncMock',
17
+ 'FILTER_DIR',
18
+ 'NonCallableMock',
19
+ 'NonCallableMagicMock',
20
+ 'mock_open',
21
+ 'PropertyMock',
22
+ 'seal',
23
+ )
24
+
25
+
26
+ import asyncio
27
+ import contextlib
28
+ import io
29
+ import inspect
30
+ import pprint
31
+ import sys
32
+ import builtins
33
+ import pkgutil
34
+ from asyncio import iscoroutinefunction
35
+ from types import CodeType, ModuleType, MethodType
36
+ from unittest.util import safe_repr
37
+ from functools import wraps, partial
38
+ from threading import RLock
39
+
40
+
41
+ class InvalidSpecError(Exception):
42
+ """Indicates that an invalid value was used as a mock spec."""
43
+
44
+
45
+ _builtins = {name for name in dir(builtins) if not name.startswith('_')}
46
+
47
+ FILTER_DIR = True
48
+
49
+ # Workaround for issue #12370
50
+ # Without this, the __class__ properties wouldn't be set correctly
51
+ _safe_super = super
52
+
53
+ def _is_async_obj(obj):
54
+ if _is_instance_mock(obj) and not isinstance(obj, AsyncMock):
55
+ return False
56
+ if hasattr(obj, '__func__'):
57
+ obj = getattr(obj, '__func__')
58
+ return iscoroutinefunction(obj) or inspect.isawaitable(obj)
59
+
60
+
61
+ def _is_async_func(func):
62
+ if getattr(func, '__code__', None):
63
+ return iscoroutinefunction(func)
64
+ else:
65
+ return False
66
+
67
+
68
+ def _is_instance_mock(obj):
69
+ # can't use isinstance on Mock objects because they override __class__
70
+ # The base class for all mocks is NonCallableMock
71
+ return issubclass(type(obj), NonCallableMock)
72
+
73
+
74
+ def _is_exception(obj):
75
+ return (
76
+ isinstance(obj, BaseException) or
77
+ isinstance(obj, type) and issubclass(obj, BaseException)
78
+ )
79
+
80
+
81
+ def _extract_mock(obj):
82
+ # Autospecced functions will return a FunctionType with "mock" attribute
83
+ # which is the actual mock object that needs to be used.
84
+ if isinstance(obj, FunctionTypes) and hasattr(obj, 'mock'):
85
+ return obj.mock
86
+ else:
87
+ return obj
88
+
89
+
90
+ def _get_signature_object(func, as_instance, eat_self):
91
+ """
92
+ Given an arbitrary, possibly callable object, try to create a suitable
93
+ signature object.
94
+ Return a (reduced func, signature) tuple, or None.
95
+ """
96
+ if isinstance(func, type) and not as_instance:
97
+ # If it's a type and should be modelled as a type, use __init__.
98
+ func = func.__init__
99
+ # Skip the `self` argument in __init__
100
+ eat_self = True
101
+ elif isinstance(func, (classmethod, staticmethod)):
102
+ if isinstance(func, classmethod):
103
+ # Skip the `cls` argument of a class method
104
+ eat_self = True
105
+ # Use the original decorated method to extract the correct function signature
106
+ func = func.__func__
107
+ elif not isinstance(func, FunctionTypes):
108
+ # If we really want to model an instance of the passed type,
109
+ # __call__ should be looked up, not __init__.
110
+ try:
111
+ func = func.__call__
112
+ except AttributeError:
113
+ return None
114
+ if eat_self:
115
+ sig_func = partial(func, None)
116
+ else:
117
+ sig_func = func
118
+ try:
119
+ return func, inspect.signature(sig_func)
120
+ except ValueError:
121
+ # Certain callable types are not supported by inspect.signature()
122
+ return None
123
+
124
+
125
+ def _check_signature(func, mock, skipfirst, instance=False):
126
+ sig = _get_signature_object(func, instance, skipfirst)
127
+ if sig is None:
128
+ return
129
+ func, sig = sig
130
+ def checksig(self, /, *args, **kwargs):
131
+ sig.bind(*args, **kwargs)
132
+ _copy_func_details(func, checksig)
133
+ type(mock)._mock_check_sig = checksig
134
+ type(mock).__signature__ = sig
135
+
136
+
137
+ def _copy_func_details(func, funcopy):
138
+ # we explicitly don't copy func.__dict__ into this copy as it would
139
+ # expose original attributes that should be mocked
140
+ for attribute in (
141
+ '__name__', '__doc__', '__text_signature__',
142
+ '__module__', '__defaults__', '__kwdefaults__',
143
+ ):
144
+ try:
145
+ setattr(funcopy, attribute, getattr(func, attribute))
146
+ except AttributeError:
147
+ pass
148
+
149
+
150
+ def _callable(obj):
151
+ if isinstance(obj, type):
152
+ return True
153
+ if isinstance(obj, (staticmethod, classmethod, MethodType)):
154
+ return _callable(obj.__func__)
155
+ if getattr(obj, '__call__', None) is not None:
156
+ return True
157
+ return False
158
+
159
+
160
+ def _is_list(obj):
161
+ # checks for list or tuples
162
+ # XXXX badly named!
163
+ return type(obj) in (list, tuple)
164
+
165
+
166
+ def _instance_callable(obj):
167
+ """Given an object, return True if the object is callable.
168
+ For classes, return True if instances would be callable."""
169
+ if not isinstance(obj, type):
170
+ # already an instance
171
+ return getattr(obj, '__call__', None) is not None
172
+
173
+ # *could* be broken by a class overriding __mro__ or __dict__ via
174
+ # a metaclass
175
+ for base in (obj,) + obj.__mro__:
176
+ if base.__dict__.get('__call__') is not None:
177
+ return True
178
+ return False
179
+
180
+
181
+ def _set_signature(mock, original, instance=False):
182
+ # creates a function with signature (*args, **kwargs) that delegates to a
183
+ # mock. It still does signature checking by calling a lambda with the same
184
+ # signature as the original.
185
+
186
+ skipfirst = isinstance(original, type)
187
+ result = _get_signature_object(original, instance, skipfirst)
188
+ if result is None:
189
+ return mock
190
+ func, sig = result
191
+ def checksig(*args, **kwargs):
192
+ sig.bind(*args, **kwargs)
193
+ _copy_func_details(func, checksig)
194
+
195
+ name = original.__name__
196
+ if not name.isidentifier():
197
+ name = 'funcopy'
198
+ context = {'_checksig_': checksig, 'mock': mock}
199
+ src = """def %s(*args, **kwargs):
200
+ _checksig_(*args, **kwargs)
201
+ return mock(*args, **kwargs)""" % name
202
+ exec (src, context)
203
+ funcopy = context[name]
204
+ _setup_func(funcopy, mock, sig)
205
+ return funcopy
206
+
207
+
208
+ def _setup_func(funcopy, mock, sig):
209
+ funcopy.mock = mock
210
+
211
+ def assert_called_with(*args, **kwargs):
212
+ return mock.assert_called_with(*args, **kwargs)
213
+ def assert_called(*args, **kwargs):
214
+ return mock.assert_called(*args, **kwargs)
215
+ def assert_not_called(*args, **kwargs):
216
+ return mock.assert_not_called(*args, **kwargs)
217
+ def assert_called_once(*args, **kwargs):
218
+ return mock.assert_called_once(*args, **kwargs)
219
+ def assert_called_once_with(*args, **kwargs):
220
+ return mock.assert_called_once_with(*args, **kwargs)
221
+ def assert_has_calls(*args, **kwargs):
222
+ return mock.assert_has_calls(*args, **kwargs)
223
+ def assert_any_call(*args, **kwargs):
224
+ return mock.assert_any_call(*args, **kwargs)
225
+ def reset_mock():
226
+ funcopy.method_calls = _CallList()
227
+ funcopy.mock_calls = _CallList()
228
+ mock.reset_mock()
229
+ ret = funcopy.return_value
230
+ if _is_instance_mock(ret) and not ret is mock:
231
+ ret.reset_mock()
232
+
233
+ funcopy.called = False
234
+ funcopy.call_count = 0
235
+ funcopy.call_args = None
236
+ funcopy.call_args_list = _CallList()
237
+ funcopy.method_calls = _CallList()
238
+ funcopy.mock_calls = _CallList()
239
+
240
+ funcopy.return_value = mock.return_value
241
+ funcopy.side_effect = mock.side_effect
242
+ funcopy._mock_children = mock._mock_children
243
+
244
+ funcopy.assert_called_with = assert_called_with
245
+ funcopy.assert_called_once_with = assert_called_once_with
246
+ funcopy.assert_has_calls = assert_has_calls
247
+ funcopy.assert_any_call = assert_any_call
248
+ funcopy.reset_mock = reset_mock
249
+ funcopy.assert_called = assert_called
250
+ funcopy.assert_not_called = assert_not_called
251
+ funcopy.assert_called_once = assert_called_once
252
+ funcopy.__signature__ = sig
253
+
254
+ mock._mock_delegate = funcopy
255
+
256
+
257
+ def _setup_async_mock(mock):
258
+ mock._is_coroutine = asyncio.coroutines._is_coroutine
259
+ mock.await_count = 0
260
+ mock.await_args = None
261
+ mock.await_args_list = _CallList()
262
+
263
+ # Mock is not configured yet so the attributes are set
264
+ # to a function and then the corresponding mock helper function
265
+ # is called when the helper is accessed similar to _setup_func.
266
+ def wrapper(attr, /, *args, **kwargs):
267
+ return getattr(mock.mock, attr)(*args, **kwargs)
268
+
269
+ for attribute in ('assert_awaited',
270
+ 'assert_awaited_once',
271
+ 'assert_awaited_with',
272
+ 'assert_awaited_once_with',
273
+ 'assert_any_await',
274
+ 'assert_has_awaits',
275
+ 'assert_not_awaited'):
276
+
277
+ # setattr(mock, attribute, wrapper) causes late binding
278
+ # hence attribute will always be the last value in the loop
279
+ # Use partial(wrapper, attribute) to ensure the attribute is bound
280
+ # correctly.
281
+ setattr(mock, attribute, partial(wrapper, attribute))
282
+
283
+
284
+ def _is_magic(name):
285
+ return '__%s__' % name[2:-2] == name
286
+
287
+
288
+ class _SentinelObject(object):
289
+ "A unique, named, sentinel object."
290
+ def __init__(self, name):
291
+ self.name = name
292
+
293
+ def __repr__(self):
294
+ return 'sentinel.%s' % self.name
295
+
296
+ def __reduce__(self):
297
+ return 'sentinel.%s' % self.name
298
+
299
+
300
+ class _Sentinel(object):
301
+ """Access attributes to return a named object, usable as a sentinel."""
302
+ def __init__(self):
303
+ self._sentinels = {}
304
+
305
+ def __getattr__(self, name):
306
+ if name == '__bases__':
307
+ # Without this help(unittest.mock) raises an exception
308
+ raise AttributeError
309
+ return self._sentinels.setdefault(name, _SentinelObject(name))
310
+
311
+ def __reduce__(self):
312
+ return 'sentinel'
313
+
314
+
315
+ sentinel = _Sentinel()
316
+
317
+ DEFAULT = sentinel.DEFAULT
318
+ _missing = sentinel.MISSING
319
+ _deleted = sentinel.DELETED
320
+
321
+
322
+ _allowed_names = {
323
+ 'return_value', '_mock_return_value', 'side_effect',
324
+ '_mock_side_effect', '_mock_parent', '_mock_new_parent',
325
+ '_mock_name', '_mock_new_name'
326
+ }
327
+
328
+
329
+ def _delegating_property(name):
330
+ _allowed_names.add(name)
331
+ _the_name = '_mock_' + name
332
+ def _get(self, name=name, _the_name=_the_name):
333
+ sig = self._mock_delegate
334
+ if sig is None:
335
+ return getattr(self, _the_name)
336
+ return getattr(sig, name)
337
+ def _set(self, value, name=name, _the_name=_the_name):
338
+ sig = self._mock_delegate
339
+ if sig is None:
340
+ self.__dict__[_the_name] = value
341
+ else:
342
+ setattr(sig, name, value)
343
+
344
+ return property(_get, _set)
345
+
346
+
347
+
348
+ class _CallList(list):
349
+
350
+ def __contains__(self, value):
351
+ if not isinstance(value, list):
352
+ return list.__contains__(self, value)
353
+ len_value = len(value)
354
+ len_self = len(self)
355
+ if len_value > len_self:
356
+ return False
357
+
358
+ for i in range(0, len_self - len_value + 1):
359
+ sub_list = self[i:i+len_value]
360
+ if sub_list == value:
361
+ return True
362
+ return False
363
+
364
+ def __repr__(self):
365
+ return pprint.pformat(list(self))
366
+
367
+
368
+ def _check_and_set_parent(parent, value, name, new_name):
369
+ value = _extract_mock(value)
370
+
371
+ if not _is_instance_mock(value):
372
+ return False
373
+ if ((value._mock_name or value._mock_new_name) or
374
+ (value._mock_parent is not None) or
375
+ (value._mock_new_parent is not None)):
376
+ return False
377
+
378
+ _parent = parent
379
+ while _parent is not None:
380
+ # setting a mock (value) as a child or return value of itself
381
+ # should not modify the mock
382
+ if _parent is value:
383
+ return False
384
+ _parent = _parent._mock_new_parent
385
+
386
+ if new_name:
387
+ value._mock_new_parent = parent
388
+ value._mock_new_name = new_name
389
+ if name:
390
+ value._mock_parent = parent
391
+ value._mock_name = name
392
+ return True
393
+
394
+ # Internal class to identify if we wrapped an iterator object or not.
395
+ class _MockIter(object):
396
+ def __init__(self, obj):
397
+ self.obj = iter(obj)
398
+ def __next__(self):
399
+ return next(self.obj)
400
+
401
+ class Base(object):
402
+ _mock_return_value = DEFAULT
403
+ _mock_side_effect = None
404
+ def __init__(self, /, *args, **kwargs):
405
+ pass
406
+
407
+
408
+
409
+ class NonCallableMock(Base):
410
+ """A non-callable version of `Mock`"""
411
+
412
+ # Store a mutex as a class attribute in order to protect concurrent access
413
+ # to mock attributes. Using a class attribute allows all NonCallableMock
414
+ # instances to share the mutex for simplicity.
415
+ #
416
+ # See https://github.com/python/cpython/issues/98624 for why this is
417
+ # necessary.
418
+ _lock = RLock()
419
+
420
+ def __new__(
421
+ cls, spec=None, wraps=None, name=None, spec_set=None,
422
+ parent=None, _spec_state=None, _new_name='', _new_parent=None,
423
+ _spec_as_instance=False, _eat_self=None, unsafe=False, **kwargs
424
+ ):
425
+ # every instance has its own class
426
+ # so we can create magic methods on the
427
+ # class without stomping on other mocks
428
+ bases = (cls,)
429
+ if not issubclass(cls, AsyncMockMixin):
430
+ # Check if spec is an async object or function
431
+ spec_arg = spec_set or spec
432
+ if spec_arg is not None and _is_async_obj(spec_arg):
433
+ bases = (AsyncMockMixin, cls)
434
+ new = type(cls.__name__, bases, {'__doc__': cls.__doc__})
435
+ instance = _safe_super(NonCallableMock, cls).__new__(new)
436
+ return instance
437
+
438
+
439
+ def __init__(
440
+ self, spec=None, wraps=None, name=None, spec_set=None,
441
+ parent=None, _spec_state=None, _new_name='', _new_parent=None,
442
+ _spec_as_instance=False, _eat_self=None, unsafe=False, **kwargs
443
+ ):
444
+ if _new_parent is None:
445
+ _new_parent = parent
446
+
447
+ __dict__ = self.__dict__
448
+ __dict__['_mock_parent'] = parent
449
+ __dict__['_mock_name'] = name
450
+ __dict__['_mock_new_name'] = _new_name
451
+ __dict__['_mock_new_parent'] = _new_parent
452
+ __dict__['_mock_sealed'] = False
453
+
454
+ if spec_set is not None:
455
+ spec = spec_set
456
+ spec_set = True
457
+ if _eat_self is None:
458
+ _eat_self = parent is not None
459
+
460
+ self._mock_add_spec(spec, spec_set, _spec_as_instance, _eat_self)
461
+
462
+ __dict__['_mock_children'] = {}
463
+ __dict__['_mock_wraps'] = wraps
464
+ __dict__['_mock_delegate'] = None
465
+
466
+ __dict__['_mock_called'] = False
467
+ __dict__['_mock_call_args'] = None
468
+ __dict__['_mock_call_count'] = 0
469
+ __dict__['_mock_call_args_list'] = _CallList()
470
+ __dict__['_mock_mock_calls'] = _CallList()
471
+
472
+ __dict__['method_calls'] = _CallList()
473
+ __dict__['_mock_unsafe'] = unsafe
474
+
475
+ if kwargs:
476
+ self.configure_mock(**kwargs)
477
+
478
+ _safe_super(NonCallableMock, self).__init__(
479
+ spec, wraps, name, spec_set, parent,
480
+ _spec_state
481
+ )
482
+
483
+
484
+ def attach_mock(self, mock, attribute):
485
+ """
486
+ Attach a mock as an attribute of this one, replacing its name and
487
+ parent. Calls to the attached mock will be recorded in the
488
+ `method_calls` and `mock_calls` attributes of this one."""
489
+ inner_mock = _extract_mock(mock)
490
+
491
+ inner_mock._mock_parent = None
492
+ inner_mock._mock_new_parent = None
493
+ inner_mock._mock_name = ''
494
+ inner_mock._mock_new_name = None
495
+
496
+ setattr(self, attribute, mock)
497
+
498
+
499
+ def mock_add_spec(self, spec, spec_set=False):
500
+ """Add a spec to a mock. `spec` can either be an object or a
501
+ list of strings. Only attributes on the `spec` can be fetched as
502
+ attributes from the mock.
503
+
504
+ If `spec_set` is True then only attributes on the spec can be set."""
505
+ self._mock_add_spec(spec, spec_set)
506
+
507
+
508
+ def _mock_add_spec(self, spec, spec_set, _spec_as_instance=False,
509
+ _eat_self=False):
510
+ if _is_instance_mock(spec):
511
+ raise InvalidSpecError(f'Cannot spec a Mock object. [object={spec!r}]')
512
+
513
+ _spec_class = None
514
+ _spec_signature = None
515
+ _spec_asyncs = []
516
+
517
+ if spec is not None and not _is_list(spec):
518
+ if isinstance(spec, type):
519
+ _spec_class = spec
520
+ else:
521
+ _spec_class = type(spec)
522
+ res = _get_signature_object(spec,
523
+ _spec_as_instance, _eat_self)
524
+ _spec_signature = res and res[1]
525
+
526
+ spec_list = dir(spec)
527
+
528
+ for attr in spec_list:
529
+ if iscoroutinefunction(getattr(spec, attr, None)):
530
+ _spec_asyncs.append(attr)
531
+
532
+ spec = spec_list
533
+
534
+ __dict__ = self.__dict__
535
+ __dict__['_spec_class'] = _spec_class
536
+ __dict__['_spec_set'] = spec_set
537
+ __dict__['_spec_signature'] = _spec_signature
538
+ __dict__['_mock_methods'] = spec
539
+ __dict__['_spec_asyncs'] = _spec_asyncs
540
+
541
+ def __get_return_value(self):
542
+ ret = self._mock_return_value
543
+ if self._mock_delegate is not None:
544
+ ret = self._mock_delegate.return_value
545
+
546
+ if ret is DEFAULT and self._mock_wraps is None:
547
+ ret = self._get_child_mock(
548
+ _new_parent=self, _new_name='()'
549
+ )
550
+ self.return_value = ret
551
+ return ret
552
+
553
+
554
+ def __set_return_value(self, value):
555
+ if self._mock_delegate is not None:
556
+ self._mock_delegate.return_value = value
557
+ else:
558
+ self._mock_return_value = value
559
+ _check_and_set_parent(self, value, None, '()')
560
+
561
+ __return_value_doc = "The value to be returned when the mock is called."
562
+ return_value = property(__get_return_value, __set_return_value,
563
+ __return_value_doc)
564
+
565
+
566
+ @property
567
+ def __class__(self):
568
+ if self._spec_class is None:
569
+ return type(self)
570
+ return self._spec_class
571
+
572
+ called = _delegating_property('called')
573
+ call_count = _delegating_property('call_count')
574
+ call_args = _delegating_property('call_args')
575
+ call_args_list = _delegating_property('call_args_list')
576
+ mock_calls = _delegating_property('mock_calls')
577
+
578
+
579
+ def __get_side_effect(self):
580
+ delegated = self._mock_delegate
581
+ if delegated is None:
582
+ return self._mock_side_effect
583
+ sf = delegated.side_effect
584
+ if (sf is not None and not callable(sf)
585
+ and not isinstance(sf, _MockIter) and not _is_exception(sf)):
586
+ sf = _MockIter(sf)
587
+ delegated.side_effect = sf
588
+ return sf
589
+
590
+ def __set_side_effect(self, value):
591
+ value = _try_iter(value)
592
+ delegated = self._mock_delegate
593
+ if delegated is None:
594
+ self._mock_side_effect = value
595
+ else:
596
+ delegated.side_effect = value
597
+
598
+ side_effect = property(__get_side_effect, __set_side_effect)
599
+
600
+
601
+ def reset_mock(self, visited=None, *,
602
+ return_value: bool = False,
603
+ side_effect: bool = False):
604
+ "Restore the mock object to its initial state."
605
+ if visited is None:
606
+ visited = []
607
+ if id(self) in visited:
608
+ return
609
+ visited.append(id(self))
610
+
611
+ self.called = False
612
+ self.call_args = None
613
+ self.call_count = 0
614
+ self.mock_calls = _CallList()
615
+ self.call_args_list = _CallList()
616
+ self.method_calls = _CallList()
617
+
618
+ if return_value:
619
+ self._mock_return_value = DEFAULT
620
+ if side_effect:
621
+ self._mock_side_effect = None
622
+
623
+ for child in self._mock_children.values():
624
+ if isinstance(child, _SpecState) or child is _deleted:
625
+ continue
626
+ child.reset_mock(visited, return_value=return_value, side_effect=side_effect)
627
+
628
+ ret = self._mock_return_value
629
+ if _is_instance_mock(ret) and ret is not self:
630
+ ret.reset_mock(visited)
631
+
632
+
633
+ def configure_mock(self, /, **kwargs):
634
+ """Set attributes on the mock through keyword arguments.
635
+
636
+ Attributes plus return values and side effects can be set on child
637
+ mocks using standard dot notation and unpacking a dictionary in the
638
+ method call:
639
+
640
+ >>> attrs = {'method.return_value': 3, 'other.side_effect': KeyError}
641
+ >>> mock.configure_mock(**attrs)"""
642
+ for arg, val in sorted(kwargs.items(),
643
+ # we sort on the number of dots so that
644
+ # attributes are set before we set attributes on
645
+ # attributes
646
+ key=lambda entry: entry[0].count('.')):
647
+ args = arg.split('.')
648
+ final = args.pop()
649
+ obj = self
650
+ for entry in args:
651
+ obj = getattr(obj, entry)
652
+ setattr(obj, final, val)
653
+
654
+
655
+ def __getattr__(self, name):
656
+ if name in {'_mock_methods', '_mock_unsafe'}:
657
+ raise AttributeError(name)
658
+ elif self._mock_methods is not None:
659
+ if name not in self._mock_methods or name in _all_magics:
660
+ raise AttributeError("Mock object has no attribute %r" % name)
661
+ elif _is_magic(name):
662
+ raise AttributeError(name)
663
+ if not self._mock_unsafe and (not self._mock_methods or name not in self._mock_methods):
664
+ if name.startswith(('assert', 'assret', 'asert', 'aseert', 'assrt')) or name in _ATTRIB_DENY_LIST:
665
+ raise AttributeError(
666
+ f"{name!r} is not a valid assertion. Use a spec "
667
+ f"for the mock if {name!r} is meant to be an attribute.")
668
+
669
+ with NonCallableMock._lock:
670
+ result = self._mock_children.get(name)
671
+ if result is _deleted:
672
+ raise AttributeError(name)
673
+ elif result is None:
674
+ wraps = None
675
+ if self._mock_wraps is not None:
676
+ # XXXX should we get the attribute without triggering code
677
+ # execution?
678
+ wraps = getattr(self._mock_wraps, name)
679
+
680
+ result = self._get_child_mock(
681
+ parent=self, name=name, wraps=wraps, _new_name=name,
682
+ _new_parent=self
683
+ )
684
+ self._mock_children[name] = result
685
+
686
+ elif isinstance(result, _SpecState):
687
+ try:
688
+ result = create_autospec(
689
+ result.spec, result.spec_set, result.instance,
690
+ result.parent, result.name
691
+ )
692
+ except InvalidSpecError:
693
+ target_name = self.__dict__['_mock_name'] or self
694
+ raise InvalidSpecError(
695
+ f'Cannot autospec attr {name!r} from target '
696
+ f'{target_name!r} as it has already been mocked out. '
697
+ f'[target={self!r}, attr={result.spec!r}]')
698
+ self._mock_children[name] = result
699
+
700
+ return result
701
+
702
+
703
+ def _extract_mock_name(self):
704
+ _name_list = [self._mock_new_name]
705
+ _parent = self._mock_new_parent
706
+ last = self
707
+
708
+ dot = '.'
709
+ if _name_list == ['()']:
710
+ dot = ''
711
+
712
+ while _parent is not None:
713
+ last = _parent
714
+
715
+ _name_list.append(_parent._mock_new_name + dot)
716
+ dot = '.'
717
+ if _parent._mock_new_name == '()':
718
+ dot = ''
719
+
720
+ _parent = _parent._mock_new_parent
721
+
722
+ _name_list = list(reversed(_name_list))
723
+ _first = last._mock_name or 'mock'
724
+ if len(_name_list) > 1:
725
+ if _name_list[1] not in ('()', '().'):
726
+ _first += '.'
727
+ _name_list[0] = _first
728
+ return ''.join(_name_list)
729
+
730
+ def __repr__(self):
731
+ name = self._extract_mock_name()
732
+
733
+ name_string = ''
734
+ if name not in ('mock', 'mock.'):
735
+ name_string = ' name=%r' % name
736
+
737
+ spec_string = ''
738
+ if self._spec_class is not None:
739
+ spec_string = ' spec=%r'
740
+ if self._spec_set:
741
+ spec_string = ' spec_set=%r'
742
+ spec_string = spec_string % self._spec_class.__name__
743
+ return "<%s%s%s id='%s'>" % (
744
+ type(self).__name__,
745
+ name_string,
746
+ spec_string,
747
+ id(self)
748
+ )
749
+
750
+
751
+ def __dir__(self):
752
+ """Filter the output of `dir(mock)` to only useful members."""
753
+ if not FILTER_DIR:
754
+ return object.__dir__(self)
755
+
756
+ extras = self._mock_methods or []
757
+ from_type = dir(type(self))
758
+ from_dict = list(self.__dict__)
759
+ from_child_mocks = [
760
+ m_name for m_name, m_value in self._mock_children.items()
761
+ if m_value is not _deleted]
762
+
763
+ from_type = [e for e in from_type if not e.startswith('_')]
764
+ from_dict = [e for e in from_dict if not e.startswith('_') or
765
+ _is_magic(e)]
766
+ return sorted(set(extras + from_type + from_dict + from_child_mocks))
767
+
768
+
769
+ def __setattr__(self, name, value):
770
+ if name in _allowed_names:
771
+ # property setters go through here
772
+ return object.__setattr__(self, name, value)
773
+ elif (self._spec_set and self._mock_methods is not None and
774
+ name not in self._mock_methods and
775
+ name not in self.__dict__):
776
+ raise AttributeError("Mock object has no attribute '%s'" % name)
777
+ elif name in _unsupported_magics:
778
+ msg = 'Attempting to set unsupported magic method %r.' % name
779
+ raise AttributeError(msg)
780
+ elif name in _all_magics:
781
+ if self._mock_methods is not None and name not in self._mock_methods:
782
+ raise AttributeError("Mock object has no attribute '%s'" % name)
783
+
784
+ if not _is_instance_mock(value):
785
+ setattr(type(self), name, _get_method(name, value))
786
+ original = value
787
+ value = lambda *args, **kw: original(self, *args, **kw)
788
+ else:
789
+ # only set _new_name and not name so that mock_calls is tracked
790
+ # but not method calls
791
+ _check_and_set_parent(self, value, None, name)
792
+ setattr(type(self), name, value)
793
+ self._mock_children[name] = value
794
+ elif name == '__class__':
795
+ self._spec_class = value
796
+ return
797
+ else:
798
+ if _check_and_set_parent(self, value, name, name):
799
+ self._mock_children[name] = value
800
+
801
+ if self._mock_sealed and not hasattr(self, name):
802
+ mock_name = f'{self._extract_mock_name()}.{name}'
803
+ raise AttributeError(f'Cannot set {mock_name}')
804
+
805
+ if isinstance(value, PropertyMock):
806
+ self.__dict__[name] = value
807
+ return
808
+ return object.__setattr__(self, name, value)
809
+
810
+
811
+ def __delattr__(self, name):
812
+ if name in _all_magics and name in type(self).__dict__:
813
+ delattr(type(self), name)
814
+ if name not in self.__dict__:
815
+ # for magic methods that are still MagicProxy objects and
816
+ # not set on the instance itself
817
+ return
818
+
819
+ obj = self._mock_children.get(name, _missing)
820
+ if name in self.__dict__:
821
+ _safe_super(NonCallableMock, self).__delattr__(name)
822
+ elif obj is _deleted:
823
+ raise AttributeError(name)
824
+ if obj is not _missing:
825
+ del self._mock_children[name]
826
+ self._mock_children[name] = _deleted
827
+
828
+
829
+ def _format_mock_call_signature(self, args, kwargs):
830
+ name = self._mock_name or 'mock'
831
+ return _format_call_signature(name, args, kwargs)
832
+
833
+
834
+ def _format_mock_failure_message(self, args, kwargs, action='call'):
835
+ message = 'expected %s not found.\nExpected: %s\n Actual: %s'
836
+ expected_string = self._format_mock_call_signature(args, kwargs)
837
+ call_args = self.call_args
838
+ actual_string = self._format_mock_call_signature(*call_args)
839
+ return message % (action, expected_string, actual_string)
840
+
841
+
842
+ def _get_call_signature_from_name(self, name):
843
+ """
844
+ * If call objects are asserted against a method/function like obj.meth1
845
+ then there could be no name for the call object to lookup. Hence just
846
+ return the spec_signature of the method/function being asserted against.
847
+ * If the name is not empty then remove () and split by '.' to get
848
+ list of names to iterate through the children until a potential
849
+ match is found. A child mock is created only during attribute access
850
+ so if we get a _SpecState then no attributes of the spec were accessed
851
+ and can be safely exited.
852
+ """
853
+ if not name:
854
+ return self._spec_signature
855
+
856
+ sig = None
857
+ names = name.replace('()', '').split('.')
858
+ children = self._mock_children
859
+
860
+ for name in names:
861
+ child = children.get(name)
862
+ if child is None or isinstance(child, _SpecState):
863
+ break
864
+ else:
865
+ # If an autospecced object is attached using attach_mock the
866
+ # child would be a function with mock object as attribute from
867
+ # which signature has to be derived.
868
+ child = _extract_mock(child)
869
+ children = child._mock_children
870
+ sig = child._spec_signature
871
+
872
+ return sig
873
+
874
+
875
+ def _call_matcher(self, _call):
876
+ """
877
+ Given a call (or simply an (args, kwargs) tuple), return a
878
+ comparison key suitable for matching with other calls.
879
+ This is a best effort method which relies on the spec's signature,
880
+ if available, or falls back on the arguments themselves.
881
+ """
882
+
883
+ if isinstance(_call, tuple) and len(_call) > 2:
884
+ sig = self._get_call_signature_from_name(_call[0])
885
+ else:
886
+ sig = self._spec_signature
887
+
888
+ if sig is not None:
889
+ if len(_call) == 2:
890
+ name = ''
891
+ args, kwargs = _call
892
+ else:
893
+ name, args, kwargs = _call
894
+ try:
895
+ bound_call = sig.bind(*args, **kwargs)
896
+ return call(name, bound_call.args, bound_call.kwargs)
897
+ except TypeError as e:
898
+ return e.with_traceback(None)
899
+ else:
900
+ return _call
901
+
902
+ def assert_not_called(self):
903
+ """assert that the mock was never called.
904
+ """
905
+ if self.call_count != 0:
906
+ msg = ("Expected '%s' to not have been called. Called %s times.%s"
907
+ % (self._mock_name or 'mock',
908
+ self.call_count,
909
+ self._calls_repr()))
910
+ raise AssertionError(msg)
911
+
912
+ def assert_called(self):
913
+ """assert that the mock was called at least once
914
+ """
915
+ if self.call_count == 0:
916
+ msg = ("Expected '%s' to have been called." %
917
+ (self._mock_name or 'mock'))
918
+ raise AssertionError(msg)
919
+
920
+ def assert_called_once(self):
921
+ """assert that the mock was called only once.
922
+ """
923
+ if not self.call_count == 1:
924
+ msg = ("Expected '%s' to have been called once. Called %s times.%s"
925
+ % (self._mock_name or 'mock',
926
+ self.call_count,
927
+ self._calls_repr()))
928
+ raise AssertionError(msg)
929
+
930
+ def assert_called_with(self, /, *args, **kwargs):
931
+ """assert that the last call was made with the specified arguments.
932
+
933
+ Raises an AssertionError if the args and keyword args passed in are
934
+ different to the last call to the mock."""
935
+ if self.call_args is None:
936
+ expected = self._format_mock_call_signature(args, kwargs)
937
+ actual = 'not called.'
938
+ error_message = ('expected call not found.\nExpected: %s\n Actual: %s'
939
+ % (expected, actual))
940
+ raise AssertionError(error_message)
941
+
942
+ def _error_message():
943
+ msg = self._format_mock_failure_message(args, kwargs)
944
+ return msg
945
+ expected = self._call_matcher(_Call((args, kwargs), two=True))
946
+ actual = self._call_matcher(self.call_args)
947
+ if actual != expected:
948
+ cause = expected if isinstance(expected, Exception) else None
949
+ raise AssertionError(_error_message()) from cause
950
+
951
+
952
+ def assert_called_once_with(self, /, *args, **kwargs):
953
+ """assert that the mock was called exactly once and that that call was
954
+ with the specified arguments."""
955
+ if not self.call_count == 1:
956
+ msg = ("Expected '%s' to be called once. Called %s times.%s"
957
+ % (self._mock_name or 'mock',
958
+ self.call_count,
959
+ self._calls_repr()))
960
+ raise AssertionError(msg)
961
+ return self.assert_called_with(*args, **kwargs)
962
+
963
+
964
+ def assert_has_calls(self, calls, any_order=False):
965
+ """assert the mock has been called with the specified calls.
966
+ The `mock_calls` list is checked for the calls.
967
+
968
+ If `any_order` is False (the default) then the calls must be
969
+ sequential. There can be extra calls before or after the
970
+ specified calls.
971
+
972
+ If `any_order` is True then the calls can be in any order, but
973
+ they must all appear in `mock_calls`."""
974
+ expected = [self._call_matcher(c) for c in calls]
975
+ cause = next((e for e in expected if isinstance(e, Exception)), None)
976
+ all_calls = _CallList(self._call_matcher(c) for c in self.mock_calls)
977
+ if not any_order:
978
+ if expected not in all_calls:
979
+ if cause is None:
980
+ problem = 'Calls not found.'
981
+ else:
982
+ problem = ('Error processing expected calls.\n'
983
+ 'Errors: {}').format(
984
+ [e if isinstance(e, Exception) else None
985
+ for e in expected])
986
+ raise AssertionError(
987
+ f'{problem}\n'
988
+ f'Expected: {_CallList(calls)}'
989
+ f'{self._calls_repr(prefix=" Actual").rstrip(".")}'
990
+ ) from cause
991
+ return
992
+
993
+ all_calls = list(all_calls)
994
+
995
+ not_found = []
996
+ for kall in expected:
997
+ try:
998
+ all_calls.remove(kall)
999
+ except ValueError:
1000
+ not_found.append(kall)
1001
+ if not_found:
1002
+ raise AssertionError(
1003
+ '%r does not contain all of %r in its call list, '
1004
+ 'found %r instead' % (self._mock_name or 'mock',
1005
+ tuple(not_found), all_calls)
1006
+ ) from cause
1007
+
1008
+
1009
+ def assert_any_call(self, /, *args, **kwargs):
1010
+ """assert the mock has been called with the specified arguments.
1011
+
1012
+ The assert passes if the mock has *ever* been called, unlike
1013
+ `assert_called_with` and `assert_called_once_with` that only pass if
1014
+ the call is the most recent one."""
1015
+ expected = self._call_matcher(_Call((args, kwargs), two=True))
1016
+ cause = expected if isinstance(expected, Exception) else None
1017
+ actual = [self._call_matcher(c) for c in self.call_args_list]
1018
+ if cause or expected not in _AnyComparer(actual):
1019
+ expected_string = self._format_mock_call_signature(args, kwargs)
1020
+ raise AssertionError(
1021
+ '%s call not found' % expected_string
1022
+ ) from cause
1023
+
1024
+
1025
+ def _get_child_mock(self, /, **kw):
1026
+ """Create the child mocks for attributes and return value.
1027
+ By default child mocks will be the same type as the parent.
1028
+ Subclasses of Mock may want to override this to customize the way
1029
+ child mocks are made.
1030
+
1031
+ For non-callable mocks the callable variant will be used (rather than
1032
+ any custom subclass)."""
1033
+ if self._mock_sealed:
1034
+ attribute = f".{kw['name']}" if "name" in kw else "()"
1035
+ mock_name = self._extract_mock_name() + attribute
1036
+ raise AttributeError(mock_name)
1037
+
1038
+ _new_name = kw.get("_new_name")
1039
+ if _new_name in self.__dict__['_spec_asyncs']:
1040
+ return AsyncMock(**kw)
1041
+
1042
+ _type = type(self)
1043
+ if issubclass(_type, MagicMock) and _new_name in _async_method_magics:
1044
+ # Any asynchronous magic becomes an AsyncMock
1045
+ klass = AsyncMock
1046
+ elif issubclass(_type, AsyncMockMixin):
1047
+ if (_new_name in _all_sync_magics or
1048
+ self._mock_methods and _new_name in self._mock_methods):
1049
+ # Any synchronous method on AsyncMock becomes a MagicMock
1050
+ klass = MagicMock
1051
+ else:
1052
+ klass = AsyncMock
1053
+ elif not issubclass(_type, CallableMixin):
1054
+ if issubclass(_type, NonCallableMagicMock):
1055
+ klass = MagicMock
1056
+ elif issubclass(_type, NonCallableMock):
1057
+ klass = Mock
1058
+ else:
1059
+ klass = _type.__mro__[1]
1060
+ return klass(**kw)
1061
+
1062
+
1063
+ def _calls_repr(self, prefix="Calls"):
1064
+ """Renders self.mock_calls as a string.
1065
+
1066
+ Example: "\nCalls: [call(1), call(2)]."
1067
+
1068
+ If self.mock_calls is empty, an empty string is returned. The
1069
+ output will be truncated if very long.
1070
+ """
1071
+ if not self.mock_calls:
1072
+ return ""
1073
+ return f"\n{prefix}: {safe_repr(self.mock_calls)}."
1074
+
1075
+
1076
+ # Denylist for forbidden attribute names in safe mode
1077
+ _ATTRIB_DENY_LIST = frozenset({
1078
+ name.removeprefix("assert_")
1079
+ for name in dir(NonCallableMock)
1080
+ if name.startswith("assert_")
1081
+ })
1082
+
1083
+
1084
+ class _AnyComparer(list):
1085
+ """A list which checks if it contains a call which may have an
1086
+ argument of ANY, flipping the components of item and self from
1087
+ their traditional locations so that ANY is guaranteed to be on
1088
+ the left."""
1089
+ def __contains__(self, item):
1090
+ for _call in self:
1091
+ assert len(item) == len(_call)
1092
+ if all([
1093
+ expected == actual
1094
+ for expected, actual in zip(item, _call)
1095
+ ]):
1096
+ return True
1097
+ return False
1098
+
1099
+
1100
+ def _try_iter(obj):
1101
+ if obj is None:
1102
+ return obj
1103
+ if _is_exception(obj):
1104
+ return obj
1105
+ if _callable(obj):
1106
+ return obj
1107
+ try:
1108
+ return iter(obj)
1109
+ except TypeError:
1110
+ # XXXX backwards compatibility
1111
+ # but this will blow up on first call - so maybe we should fail early?
1112
+ return obj
1113
+
1114
+
1115
+ class CallableMixin(Base):
1116
+
1117
+ def __init__(self, spec=None, side_effect=None, return_value=DEFAULT,
1118
+ wraps=None, name=None, spec_set=None, parent=None,
1119
+ _spec_state=None, _new_name='', _new_parent=None, **kwargs):
1120
+ self.__dict__['_mock_return_value'] = return_value
1121
+ _safe_super(CallableMixin, self).__init__(
1122
+ spec, wraps, name, spec_set, parent,
1123
+ _spec_state, _new_name, _new_parent, **kwargs
1124
+ )
1125
+
1126
+ self.side_effect = side_effect
1127
+
1128
+
1129
+ def _mock_check_sig(self, /, *args, **kwargs):
1130
+ # stub method that can be replaced with one with a specific signature
1131
+ pass
1132
+
1133
+
1134
+ def __call__(self, /, *args, **kwargs):
1135
+ # can't use self in-case a function / method we are mocking uses self
1136
+ # in the signature
1137
+ self._mock_check_sig(*args, **kwargs)
1138
+ self._increment_mock_call(*args, **kwargs)
1139
+ return self._mock_call(*args, **kwargs)
1140
+
1141
+
1142
+ def _mock_call(self, /, *args, **kwargs):
1143
+ return self._execute_mock_call(*args, **kwargs)
1144
+
1145
+ def _increment_mock_call(self, /, *args, **kwargs):
1146
+ self.called = True
1147
+ self.call_count += 1
1148
+
1149
+ # handle call_args
1150
+ # needs to be set here so assertions on call arguments pass before
1151
+ # execution in the case of awaited calls
1152
+ _call = _Call((args, kwargs), two=True)
1153
+ self.call_args = _call
1154
+ self.call_args_list.append(_call)
1155
+
1156
+ # initial stuff for method_calls:
1157
+ do_method_calls = self._mock_parent is not None
1158
+ method_call_name = self._mock_name
1159
+
1160
+ # initial stuff for mock_calls:
1161
+ mock_call_name = self._mock_new_name
1162
+ is_a_call = mock_call_name == '()'
1163
+ self.mock_calls.append(_Call(('', args, kwargs)))
1164
+
1165
+ # follow up the chain of mocks:
1166
+ _new_parent = self._mock_new_parent
1167
+ while _new_parent is not None:
1168
+
1169
+ # handle method_calls:
1170
+ if do_method_calls:
1171
+ _new_parent.method_calls.append(_Call((method_call_name, args, kwargs)))
1172
+ do_method_calls = _new_parent._mock_parent is not None
1173
+ if do_method_calls:
1174
+ method_call_name = _new_parent._mock_name + '.' + method_call_name
1175
+
1176
+ # handle mock_calls:
1177
+ this_mock_call = _Call((mock_call_name, args, kwargs))
1178
+ _new_parent.mock_calls.append(this_mock_call)
1179
+
1180
+ if _new_parent._mock_new_name:
1181
+ if is_a_call:
1182
+ dot = ''
1183
+ else:
1184
+ dot = '.'
1185
+ is_a_call = _new_parent._mock_new_name == '()'
1186
+ mock_call_name = _new_parent._mock_new_name + dot + mock_call_name
1187
+
1188
+ # follow the parental chain:
1189
+ _new_parent = _new_parent._mock_new_parent
1190
+
1191
+ def _execute_mock_call(self, /, *args, **kwargs):
1192
+ # separate from _increment_mock_call so that awaited functions are
1193
+ # executed separately from their call, also AsyncMock overrides this method
1194
+
1195
+ effect = self.side_effect
1196
+ if effect is not None:
1197
+ if _is_exception(effect):
1198
+ raise effect
1199
+ elif not _callable(effect):
1200
+ result = next(effect)
1201
+ if _is_exception(result):
1202
+ raise result
1203
+ else:
1204
+ result = effect(*args, **kwargs)
1205
+
1206
+ if result is not DEFAULT:
1207
+ return result
1208
+
1209
+ if self._mock_return_value is not DEFAULT:
1210
+ return self.return_value
1211
+
1212
+ if self._mock_delegate and self._mock_delegate.return_value is not DEFAULT:
1213
+ return self.return_value
1214
+
1215
+ if self._mock_wraps is not None:
1216
+ return self._mock_wraps(*args, **kwargs)
1217
+
1218
+ return self.return_value
1219
+
1220
+
1221
+
1222
+ class Mock(CallableMixin, NonCallableMock):
1223
+ """
1224
+ Create a new `Mock` object. `Mock` takes several optional arguments
1225
+ that specify the behaviour of the Mock object:
1226
+
1227
+ * `spec`: This can be either a list of strings or an existing object (a
1228
+ class or instance) that acts as the specification for the mock object. If
1229
+ you pass in an object then a list of strings is formed by calling dir on
1230
+ the object (excluding unsupported magic attributes and methods). Accessing
1231
+ any attribute not in this list will raise an `AttributeError`.
1232
+
1233
+ If `spec` is an object (rather than a list of strings) then
1234
+ `mock.__class__` returns the class of the spec object. This allows mocks
1235
+ to pass `isinstance` tests.
1236
+
1237
+ * `spec_set`: A stricter variant of `spec`. If used, attempting to *set*
1238
+ or get an attribute on the mock that isn't on the object passed as
1239
+ `spec_set` will raise an `AttributeError`.
1240
+
1241
+ * `side_effect`: A function to be called whenever the Mock is called. See
1242
+ the `side_effect` attribute. Useful for raising exceptions or
1243
+ dynamically changing return values. The function is called with the same
1244
+ arguments as the mock, and unless it returns `DEFAULT`, the return
1245
+ value of this function is used as the return value.
1246
+
1247
+ If `side_effect` is an iterable then each call to the mock will return
1248
+ the next value from the iterable. If any of the members of the iterable
1249
+ are exceptions they will be raised instead of returned.
1250
+
1251
+ * `return_value`: The value returned when the mock is called. By default
1252
+ this is a new Mock (created on first access). See the
1253
+ `return_value` attribute.
1254
+
1255
+ * `unsafe`: By default, accessing any attribute whose name starts with
1256
+ *assert*, *assret*, *asert*, *aseert*, or *assrt* raises an AttributeError.
1257
+ Additionally, an AttributeError is raised when accessing
1258
+ attributes that match the name of an assertion method without the prefix
1259
+ `assert_`, e.g. accessing `called_once` instead of `assert_called_once`.
1260
+ Passing `unsafe=True` will allow access to these attributes.
1261
+
1262
+ * `wraps`: Item for the mock object to wrap. If `wraps` is not None then
1263
+ calling the Mock will pass the call through to the wrapped object
1264
+ (returning the real result). Attribute access on the mock will return a
1265
+ Mock object that wraps the corresponding attribute of the wrapped object
1266
+ (so attempting to access an attribute that doesn't exist will raise an
1267
+ `AttributeError`).
1268
+
1269
+ If the mock has an explicit `return_value` set then calls are not passed
1270
+ to the wrapped object and the `return_value` is returned instead.
1271
+
1272
+ * `name`: If the mock has a name then it will be used in the repr of the
1273
+ mock. This can be useful for debugging. The name is propagated to child
1274
+ mocks.
1275
+
1276
+ Mocks can also be called with arbitrary keyword arguments. These will be
1277
+ used to set attributes on the mock after it is created.
1278
+ """
1279
+
1280
+
1281
+ # _check_spec_arg_typos takes kwargs from commands like patch and checks that
1282
+ # they don't contain common misspellings of arguments related to autospeccing.
1283
+ def _check_spec_arg_typos(kwargs_to_check):
1284
+ typos = ("autospect", "auto_spec", "set_spec")
1285
+ for typo in typos:
1286
+ if typo in kwargs_to_check:
1287
+ raise RuntimeError(
1288
+ f"{typo!r} might be a typo; use unsafe=True if this is intended"
1289
+ )
1290
+
1291
+
1292
+ class _patch(object):
1293
+
1294
+ attribute_name = None
1295
+ _active_patches = []
1296
+
1297
+ def __init__(
1298
+ self, getter, attribute, new, spec, create,
1299
+ spec_set, autospec, new_callable, kwargs, *, unsafe=False
1300
+ ):
1301
+ if new_callable is not None:
1302
+ if new is not DEFAULT:
1303
+ raise ValueError(
1304
+ "Cannot use 'new' and 'new_callable' together"
1305
+ )
1306
+ if autospec is not None:
1307
+ raise ValueError(
1308
+ "Cannot use 'autospec' and 'new_callable' together"
1309
+ )
1310
+ if not unsafe:
1311
+ _check_spec_arg_typos(kwargs)
1312
+ if _is_instance_mock(spec):
1313
+ raise InvalidSpecError(
1314
+ f'Cannot spec attr {attribute!r} as the spec '
1315
+ f'has already been mocked out. [spec={spec!r}]')
1316
+ if _is_instance_mock(spec_set):
1317
+ raise InvalidSpecError(
1318
+ f'Cannot spec attr {attribute!r} as the spec_set '
1319
+ f'target has already been mocked out. [spec_set={spec_set!r}]')
1320
+
1321
+ self.getter = getter
1322
+ self.attribute = attribute
1323
+ self.new = new
1324
+ self.new_callable = new_callable
1325
+ self.spec = spec
1326
+ self.create = create
1327
+ self.has_local = False
1328
+ self.spec_set = spec_set
1329
+ self.autospec = autospec
1330
+ self.kwargs = kwargs
1331
+ self.additional_patchers = []
1332
+ self.is_started = False
1333
+
1334
+
1335
+ def copy(self):
1336
+ patcher = _patch(
1337
+ self.getter, self.attribute, self.new, self.spec,
1338
+ self.create, self.spec_set,
1339
+ self.autospec, self.new_callable, self.kwargs
1340
+ )
1341
+ patcher.attribute_name = self.attribute_name
1342
+ patcher.additional_patchers = [
1343
+ p.copy() for p in self.additional_patchers
1344
+ ]
1345
+ return patcher
1346
+
1347
+
1348
+ def __call__(self, func):
1349
+ if isinstance(func, type):
1350
+ return self.decorate_class(func)
1351
+ if inspect.iscoroutinefunction(func):
1352
+ return self.decorate_async_callable(func)
1353
+ return self.decorate_callable(func)
1354
+
1355
+
1356
+ def decorate_class(self, klass):
1357
+ for attr in dir(klass):
1358
+ if not attr.startswith(patch.TEST_PREFIX):
1359
+ continue
1360
+
1361
+ attr_value = getattr(klass, attr)
1362
+ if not hasattr(attr_value, "__call__"):
1363
+ continue
1364
+
1365
+ patcher = self.copy()
1366
+ setattr(klass, attr, patcher(attr_value))
1367
+ return klass
1368
+
1369
+
1370
+ @contextlib.contextmanager
1371
+ def decoration_helper(self, patched, args, keywargs):
1372
+ extra_args = []
1373
+ with contextlib.ExitStack() as exit_stack:
1374
+ for patching in patched.patchings:
1375
+ arg = exit_stack.enter_context(patching)
1376
+ if patching.attribute_name is not None:
1377
+ keywargs.update(arg)
1378
+ elif patching.new is DEFAULT:
1379
+ extra_args.append(arg)
1380
+
1381
+ args += tuple(extra_args)
1382
+ yield (args, keywargs)
1383
+
1384
+
1385
+ def decorate_callable(self, func):
1386
+ # NB. Keep the method in sync with decorate_async_callable()
1387
+ if hasattr(func, 'patchings'):
1388
+ func.patchings.append(self)
1389
+ return func
1390
+
1391
+ @wraps(func)
1392
+ def patched(*args, **keywargs):
1393
+ with self.decoration_helper(patched,
1394
+ args,
1395
+ keywargs) as (newargs, newkeywargs):
1396
+ return func(*newargs, **newkeywargs)
1397
+
1398
+ patched.patchings = [self]
1399
+ return patched
1400
+
1401
+
1402
+ def decorate_async_callable(self, func):
1403
+ # NB. Keep the method in sync with decorate_callable()
1404
+ if hasattr(func, 'patchings'):
1405
+ func.patchings.append(self)
1406
+ return func
1407
+
1408
+ @wraps(func)
1409
+ async def patched(*args, **keywargs):
1410
+ with self.decoration_helper(patched,
1411
+ args,
1412
+ keywargs) as (newargs, newkeywargs):
1413
+ return await func(*newargs, **newkeywargs)
1414
+
1415
+ patched.patchings = [self]
1416
+ return patched
1417
+
1418
+
1419
+ def get_original(self):
1420
+ target = self.getter()
1421
+ name = self.attribute
1422
+
1423
+ original = DEFAULT
1424
+ local = False
1425
+
1426
+ try:
1427
+ original = target.__dict__[name]
1428
+ except (AttributeError, KeyError):
1429
+ original = getattr(target, name, DEFAULT)
1430
+ else:
1431
+ local = True
1432
+
1433
+ if name in _builtins and isinstance(target, ModuleType):
1434
+ self.create = True
1435
+
1436
+ if not self.create and original is DEFAULT:
1437
+ raise AttributeError(
1438
+ "%s does not have the attribute %r" % (target, name)
1439
+ )
1440
+ return original, local
1441
+
1442
+
1443
+ def __enter__(self):
1444
+ """Perform the patch."""
1445
+ if self.is_started:
1446
+ raise RuntimeError("Patch is already started")
1447
+
1448
+ new, spec, spec_set = self.new, self.spec, self.spec_set
1449
+ autospec, kwargs = self.autospec, self.kwargs
1450
+ new_callable = self.new_callable
1451
+ self.target = self.getter()
1452
+
1453
+ # normalise False to None
1454
+ if spec is False:
1455
+ spec = None
1456
+ if spec_set is False:
1457
+ spec_set = None
1458
+ if autospec is False:
1459
+ autospec = None
1460
+
1461
+ if spec is not None and autospec is not None:
1462
+ raise TypeError("Can't specify spec and autospec")
1463
+ if ((spec is not None or autospec is not None) and
1464
+ spec_set not in (True, None)):
1465
+ raise TypeError("Can't provide explicit spec_set *and* spec or autospec")
1466
+
1467
+ original, local = self.get_original()
1468
+
1469
+ if new is DEFAULT and autospec is None:
1470
+ inherit = False
1471
+ if spec is True:
1472
+ # set spec to the object we are replacing
1473
+ spec = original
1474
+ if spec_set is True:
1475
+ spec_set = original
1476
+ spec = None
1477
+ elif spec is not None:
1478
+ if spec_set is True:
1479
+ spec_set = spec
1480
+ spec = None
1481
+ elif spec_set is True:
1482
+ spec_set = original
1483
+
1484
+ if spec is not None or spec_set is not None:
1485
+ if original is DEFAULT:
1486
+ raise TypeError("Can't use 'spec' with create=True")
1487
+ if isinstance(original, type):
1488
+ # If we're patching out a class and there is a spec
1489
+ inherit = True
1490
+
1491
+ # Determine the Klass to use
1492
+ if new_callable is not None:
1493
+ Klass = new_callable
1494
+ elif spec is None and _is_async_obj(original):
1495
+ Klass = AsyncMock
1496
+ elif spec is not None or spec_set is not None:
1497
+ this_spec = spec
1498
+ if spec_set is not None:
1499
+ this_spec = spec_set
1500
+ if _is_list(this_spec):
1501
+ not_callable = '__call__' not in this_spec
1502
+ else:
1503
+ not_callable = not callable(this_spec)
1504
+ if _is_async_obj(this_spec):
1505
+ Klass = AsyncMock
1506
+ elif not_callable:
1507
+ Klass = NonCallableMagicMock
1508
+ else:
1509
+ Klass = MagicMock
1510
+ else:
1511
+ Klass = MagicMock
1512
+
1513
+ _kwargs = {}
1514
+ if spec is not None:
1515
+ _kwargs['spec'] = spec
1516
+ if spec_set is not None:
1517
+ _kwargs['spec_set'] = spec_set
1518
+
1519
+ # add a name to mocks
1520
+ if (isinstance(Klass, type) and
1521
+ issubclass(Klass, NonCallableMock) and self.attribute):
1522
+ _kwargs['name'] = self.attribute
1523
+
1524
+ _kwargs.update(kwargs)
1525
+ new = Klass(**_kwargs)
1526
+
1527
+ if inherit and _is_instance_mock(new):
1528
+ # we can only tell if the instance should be callable if the
1529
+ # spec is not a list
1530
+ this_spec = spec
1531
+ if spec_set is not None:
1532
+ this_spec = spec_set
1533
+ if (not _is_list(this_spec) and not
1534
+ _instance_callable(this_spec)):
1535
+ Klass = NonCallableMagicMock
1536
+
1537
+ _kwargs.pop('name')
1538
+ new.return_value = Klass(_new_parent=new, _new_name='()',
1539
+ **_kwargs)
1540
+ elif autospec is not None:
1541
+ # spec is ignored, new *must* be default, spec_set is treated
1542
+ # as a boolean. Should we check spec is not None and that spec_set
1543
+ # is a bool?
1544
+ if new is not DEFAULT:
1545
+ raise TypeError(
1546
+ "autospec creates the mock for you. Can't specify "
1547
+ "autospec and new."
1548
+ )
1549
+ if original is DEFAULT:
1550
+ raise TypeError("Can't use 'autospec' with create=True")
1551
+ spec_set = bool(spec_set)
1552
+ if autospec is True:
1553
+ autospec = original
1554
+
1555
+ if _is_instance_mock(self.target):
1556
+ raise InvalidSpecError(
1557
+ f'Cannot autospec attr {self.attribute!r} as the patch '
1558
+ f'target has already been mocked out. '
1559
+ f'[target={self.target!r}, attr={autospec!r}]')
1560
+ if _is_instance_mock(autospec):
1561
+ target_name = getattr(self.target, '__name__', self.target)
1562
+ raise InvalidSpecError(
1563
+ f'Cannot autospec attr {self.attribute!r} from target '
1564
+ f'{target_name!r} as it has already been mocked out. '
1565
+ f'[target={self.target!r}, attr={autospec!r}]')
1566
+
1567
+ new = create_autospec(autospec, spec_set=spec_set,
1568
+ _name=self.attribute, **kwargs)
1569
+ elif kwargs:
1570
+ # can't set keyword args when we aren't creating the mock
1571
+ # XXXX If new is a Mock we could call new.configure_mock(**kwargs)
1572
+ raise TypeError("Can't pass kwargs to a mock we aren't creating")
1573
+
1574
+ new_attr = new
1575
+
1576
+ self.temp_original = original
1577
+ self.is_local = local
1578
+ self._exit_stack = contextlib.ExitStack()
1579
+ self.is_started = True
1580
+ try:
1581
+ setattr(self.target, self.attribute, new_attr)
1582
+ if self.attribute_name is not None:
1583
+ extra_args = {}
1584
+ if self.new is DEFAULT:
1585
+ extra_args[self.attribute_name] = new
1586
+ for patching in self.additional_patchers:
1587
+ arg = self._exit_stack.enter_context(patching)
1588
+ if patching.new is DEFAULT:
1589
+ extra_args.update(arg)
1590
+ return extra_args
1591
+
1592
+ return new
1593
+ except:
1594
+ if not self.__exit__(*sys.exc_info()):
1595
+ raise
1596
+
1597
+ def __exit__(self, *exc_info):
1598
+ """Undo the patch."""
1599
+ if not self.is_started:
1600
+ return
1601
+
1602
+ if self.is_local and self.temp_original is not DEFAULT:
1603
+ setattr(self.target, self.attribute, self.temp_original)
1604
+ else:
1605
+ delattr(self.target, self.attribute)
1606
+ if not self.create and (not hasattr(self.target, self.attribute) or
1607
+ self.attribute in ('__doc__', '__module__',
1608
+ '__defaults__', '__annotations__',
1609
+ '__kwdefaults__')):
1610
+ # needed for proxy objects like django settings
1611
+ setattr(self.target, self.attribute, self.temp_original)
1612
+
1613
+ del self.temp_original
1614
+ del self.is_local
1615
+ del self.target
1616
+ exit_stack = self._exit_stack
1617
+ del self._exit_stack
1618
+ self.is_started = False
1619
+ return exit_stack.__exit__(*exc_info)
1620
+
1621
+
1622
+ def start(self):
1623
+ """Activate a patch, returning any created mock."""
1624
+ result = self.__enter__()
1625
+ self._active_patches.append(self)
1626
+ return result
1627
+
1628
+
1629
+ def stop(self):
1630
+ """Stop an active patch."""
1631
+ try:
1632
+ self._active_patches.remove(self)
1633
+ except ValueError:
1634
+ # If the patch hasn't been started this will fail
1635
+ return None
1636
+
1637
+ return self.__exit__(None, None, None)
1638
+
1639
+
1640
+
1641
+ def _get_target(target):
1642
+ try:
1643
+ target, attribute = target.rsplit('.', 1)
1644
+ except (TypeError, ValueError, AttributeError):
1645
+ raise TypeError(
1646
+ f"Need a valid target to patch. You supplied: {target!r}")
1647
+ return partial(pkgutil.resolve_name, target), attribute
1648
+
1649
+
1650
+ def _patch_object(
1651
+ target, attribute, new=DEFAULT, spec=None,
1652
+ create=False, spec_set=None, autospec=None,
1653
+ new_callable=None, *, unsafe=False, **kwargs
1654
+ ):
1655
+ """
1656
+ patch the named member (`attribute`) on an object (`target`) with a mock
1657
+ object.
1658
+
1659
+ `patch.object` can be used as a decorator, class decorator or a context
1660
+ manager. Arguments `new`, `spec`, `create`, `spec_set`,
1661
+ `autospec` and `new_callable` have the same meaning as for `patch`. Like
1662
+ `patch`, `patch.object` takes arbitrary keyword arguments for configuring
1663
+ the mock object it creates.
1664
+
1665
+ When used as a class decorator `patch.object` honours `patch.TEST_PREFIX`
1666
+ for choosing which methods to wrap.
1667
+ """
1668
+ if type(target) is str:
1669
+ raise TypeError(
1670
+ f"{target!r} must be the actual object to be patched, not a str"
1671
+ )
1672
+ getter = lambda: target
1673
+ return _patch(
1674
+ getter, attribute, new, spec, create,
1675
+ spec_set, autospec, new_callable, kwargs, unsafe=unsafe
1676
+ )
1677
+
1678
+
1679
+ def _patch_multiple(target, spec=None, create=False, spec_set=None,
1680
+ autospec=None, new_callable=None, **kwargs):
1681
+ """Perform multiple patches in a single call. It takes the object to be
1682
+ patched (either as an object or a string to fetch the object by importing)
1683
+ and keyword arguments for the patches::
1684
+
1685
+ with patch.multiple(settings, FIRST_PATCH='one', SECOND_PATCH='two'):
1686
+ ...
1687
+
1688
+ Use `DEFAULT` as the value if you want `patch.multiple` to create
1689
+ mocks for you. In this case the created mocks are passed into a decorated
1690
+ function by keyword, and a dictionary is returned when `patch.multiple` is
1691
+ used as a context manager.
1692
+
1693
+ `patch.multiple` can be used as a decorator, class decorator or a context
1694
+ manager. The arguments `spec`, `spec_set`, `create`,
1695
+ `autospec` and `new_callable` have the same meaning as for `patch`. These
1696
+ arguments will be applied to *all* patches done by `patch.multiple`.
1697
+
1698
+ When used as a class decorator `patch.multiple` honours `patch.TEST_PREFIX`
1699
+ for choosing which methods to wrap.
1700
+ """
1701
+ if type(target) is str:
1702
+ getter = partial(pkgutil.resolve_name, target)
1703
+ else:
1704
+ getter = lambda: target
1705
+
1706
+ if not kwargs:
1707
+ raise ValueError(
1708
+ 'Must supply at least one keyword argument with patch.multiple'
1709
+ )
1710
+ # need to wrap in a list for python 3, where items is a view
1711
+ items = list(kwargs.items())
1712
+ attribute, new = items[0]
1713
+ patcher = _patch(
1714
+ getter, attribute, new, spec, create, spec_set,
1715
+ autospec, new_callable, {}
1716
+ )
1717
+ patcher.attribute_name = attribute
1718
+ for attribute, new in items[1:]:
1719
+ this_patcher = _patch(
1720
+ getter, attribute, new, spec, create, spec_set,
1721
+ autospec, new_callable, {}
1722
+ )
1723
+ this_patcher.attribute_name = attribute
1724
+ patcher.additional_patchers.append(this_patcher)
1725
+ return patcher
1726
+
1727
+
1728
+ def patch(
1729
+ target, new=DEFAULT, spec=None, create=False,
1730
+ spec_set=None, autospec=None, new_callable=None, *, unsafe=False, **kwargs
1731
+ ):
1732
+ """
1733
+ `patch` acts as a function decorator, class decorator or a context
1734
+ manager. Inside the body of the function or with statement, the `target`
1735
+ is patched with a `new` object. When the function/with statement exits
1736
+ the patch is undone.
1737
+
1738
+ If `new` is omitted, then the target is replaced with an
1739
+ `AsyncMock if the patched object is an async function or a
1740
+ `MagicMock` otherwise. If `patch` is used as a decorator and `new` is
1741
+ omitted, the created mock is passed in as an extra argument to the
1742
+ decorated function. If `patch` is used as a context manager the created
1743
+ mock is returned by the context manager.
1744
+
1745
+ `target` should be a string in the form `'package.module.ClassName'`. The
1746
+ `target` is imported and the specified object replaced with the `new`
1747
+ object, so the `target` must be importable from the environment you are
1748
+ calling `patch` from. The target is imported when the decorated function
1749
+ is executed, not at decoration time.
1750
+
1751
+ The `spec` and `spec_set` keyword arguments are passed to the `MagicMock`
1752
+ if patch is creating one for you.
1753
+
1754
+ In addition you can pass `spec=True` or `spec_set=True`, which causes
1755
+ patch to pass in the object being mocked as the spec/spec_set object.
1756
+
1757
+ `new_callable` allows you to specify a different class, or callable object,
1758
+ that will be called to create the `new` object. By default `AsyncMock` is
1759
+ used for async functions and `MagicMock` for the rest.
1760
+
1761
+ A more powerful form of `spec` is `autospec`. If you set `autospec=True`
1762
+ then the mock will be created with a spec from the object being replaced.
1763
+ All attributes of the mock will also have the spec of the corresponding
1764
+ attribute of the object being replaced. Methods and functions being
1765
+ mocked will have their arguments checked and will raise a `TypeError` if
1766
+ they are called with the wrong signature. For mocks replacing a class,
1767
+ their return value (the 'instance') will have the same spec as the class.
1768
+
1769
+ Instead of `autospec=True` you can pass `autospec=some_object` to use an
1770
+ arbitrary object as the spec instead of the one being replaced.
1771
+
1772
+ By default `patch` will fail to replace attributes that don't exist. If
1773
+ you pass in `create=True`, and the attribute doesn't exist, patch will
1774
+ create the attribute for you when the patched function is called, and
1775
+ delete it again afterwards. This is useful for writing tests against
1776
+ attributes that your production code creates at runtime. It is off by
1777
+ default because it can be dangerous. With it switched on you can write
1778
+ passing tests against APIs that don't actually exist!
1779
+
1780
+ Patch can be used as a `TestCase` class decorator. It works by
1781
+ decorating each test method in the class. This reduces the boilerplate
1782
+ code when your test methods share a common patchings set. `patch` finds
1783
+ tests by looking for method names that start with `patch.TEST_PREFIX`.
1784
+ By default this is `test`, which matches the way `unittest` finds tests.
1785
+ You can specify an alternative prefix by setting `patch.TEST_PREFIX`.
1786
+
1787
+ Patch can be used as a context manager, with the with statement. Here the
1788
+ patching applies to the indented block after the with statement. If you
1789
+ use "as" then the patched object will be bound to the name after the
1790
+ "as"; very useful if `patch` is creating a mock object for you.
1791
+
1792
+ Patch will raise a `RuntimeError` if passed some common misspellings of
1793
+ the arguments autospec and spec_set. Pass the argument `unsafe` with the
1794
+ value True to disable that check.
1795
+
1796
+ `patch` takes arbitrary keyword arguments. These will be passed to
1797
+ `AsyncMock` if the patched object is asynchronous, to `MagicMock`
1798
+ otherwise or to `new_callable` if specified.
1799
+
1800
+ `patch.dict(...)`, `patch.multiple(...)` and `patch.object(...)` are
1801
+ available for alternate use-cases.
1802
+ """
1803
+ getter, attribute = _get_target(target)
1804
+ return _patch(
1805
+ getter, attribute, new, spec, create,
1806
+ spec_set, autospec, new_callable, kwargs, unsafe=unsafe
1807
+ )
1808
+
1809
+
1810
+ class _patch_dict(object):
1811
+ """
1812
+ Patch a dictionary, or dictionary like object, and restore the dictionary
1813
+ to its original state after the test.
1814
+
1815
+ `in_dict` can be a dictionary or a mapping like container. If it is a
1816
+ mapping then it must at least support getting, setting and deleting items
1817
+ plus iterating over keys.
1818
+
1819
+ `in_dict` can also be a string specifying the name of the dictionary, which
1820
+ will then be fetched by importing it.
1821
+
1822
+ `values` can be a dictionary of values to set in the dictionary. `values`
1823
+ can also be an iterable of `(key, value)` pairs.
1824
+
1825
+ If `clear` is True then the dictionary will be cleared before the new
1826
+ values are set.
1827
+
1828
+ `patch.dict` can also be called with arbitrary keyword arguments to set
1829
+ values in the dictionary::
1830
+
1831
+ with patch.dict('sys.modules', mymodule=Mock(), other_module=Mock()):
1832
+ ...
1833
+
1834
+ `patch.dict` can be used as a context manager, decorator or class
1835
+ decorator. When used as a class decorator `patch.dict` honours
1836
+ `patch.TEST_PREFIX` for choosing which methods to wrap.
1837
+ """
1838
+
1839
+ def __init__(self, in_dict, values=(), clear=False, **kwargs):
1840
+ self.in_dict = in_dict
1841
+ # support any argument supported by dict(...) constructor
1842
+ self.values = dict(values)
1843
+ self.values.update(kwargs)
1844
+ self.clear = clear
1845
+ self._original = None
1846
+
1847
+
1848
+ def __call__(self, f):
1849
+ if isinstance(f, type):
1850
+ return self.decorate_class(f)
1851
+ if inspect.iscoroutinefunction(f):
1852
+ return self.decorate_async_callable(f)
1853
+ return self.decorate_callable(f)
1854
+
1855
+
1856
+ def decorate_callable(self, f):
1857
+ @wraps(f)
1858
+ def _inner(*args, **kw):
1859
+ self._patch_dict()
1860
+ try:
1861
+ return f(*args, **kw)
1862
+ finally:
1863
+ self._unpatch_dict()
1864
+
1865
+ return _inner
1866
+
1867
+
1868
+ def decorate_async_callable(self, f):
1869
+ @wraps(f)
1870
+ async def _inner(*args, **kw):
1871
+ self._patch_dict()
1872
+ try:
1873
+ return await f(*args, **kw)
1874
+ finally:
1875
+ self._unpatch_dict()
1876
+
1877
+ return _inner
1878
+
1879
+
1880
+ def decorate_class(self, klass):
1881
+ for attr in dir(klass):
1882
+ attr_value = getattr(klass, attr)
1883
+ if (attr.startswith(patch.TEST_PREFIX) and
1884
+ hasattr(attr_value, "__call__")):
1885
+ decorator = _patch_dict(self.in_dict, self.values, self.clear)
1886
+ decorated = decorator(attr_value)
1887
+ setattr(klass, attr, decorated)
1888
+ return klass
1889
+
1890
+
1891
+ def __enter__(self):
1892
+ """Patch the dict."""
1893
+ self._patch_dict()
1894
+ return self.in_dict
1895
+
1896
+
1897
+ def _patch_dict(self):
1898
+ values = self.values
1899
+ if isinstance(self.in_dict, str):
1900
+ self.in_dict = pkgutil.resolve_name(self.in_dict)
1901
+ in_dict = self.in_dict
1902
+ clear = self.clear
1903
+
1904
+ try:
1905
+ original = in_dict.copy()
1906
+ except AttributeError:
1907
+ # dict like object with no copy method
1908
+ # must support iteration over keys
1909
+ original = {}
1910
+ for key in in_dict:
1911
+ original[key] = in_dict[key]
1912
+ self._original = original
1913
+
1914
+ if clear:
1915
+ _clear_dict(in_dict)
1916
+
1917
+ try:
1918
+ in_dict.update(values)
1919
+ except AttributeError:
1920
+ # dict like object with no update method
1921
+ for key in values:
1922
+ in_dict[key] = values[key]
1923
+
1924
+
1925
+ def _unpatch_dict(self):
1926
+ in_dict = self.in_dict
1927
+ original = self._original
1928
+
1929
+ _clear_dict(in_dict)
1930
+
1931
+ try:
1932
+ in_dict.update(original)
1933
+ except AttributeError:
1934
+ for key in original:
1935
+ in_dict[key] = original[key]
1936
+
1937
+
1938
+ def __exit__(self, *args):
1939
+ """Unpatch the dict."""
1940
+ if self._original is not None:
1941
+ self._unpatch_dict()
1942
+ return False
1943
+
1944
+
1945
+ def start(self):
1946
+ """Activate a patch, returning any created mock."""
1947
+ result = self.__enter__()
1948
+ _patch._active_patches.append(self)
1949
+ return result
1950
+
1951
+
1952
+ def stop(self):
1953
+ """Stop an active patch."""
1954
+ try:
1955
+ _patch._active_patches.remove(self)
1956
+ except ValueError:
1957
+ # If the patch hasn't been started this will fail
1958
+ return None
1959
+
1960
+ return self.__exit__(None, None, None)
1961
+
1962
+
1963
+ def _clear_dict(in_dict):
1964
+ try:
1965
+ in_dict.clear()
1966
+ except AttributeError:
1967
+ keys = list(in_dict)
1968
+ for key in keys:
1969
+ del in_dict[key]
1970
+
1971
+
1972
+ def _patch_stopall():
1973
+ """Stop all active patches. LIFO to unroll nested patches."""
1974
+ for patch in reversed(_patch._active_patches):
1975
+ patch.stop()
1976
+
1977
+
1978
+ patch.object = _patch_object
1979
+ patch.dict = _patch_dict
1980
+ patch.multiple = _patch_multiple
1981
+ patch.stopall = _patch_stopall
1982
+ patch.TEST_PREFIX = 'test'
1983
+
1984
+ magic_methods = (
1985
+ "lt le gt ge eq ne "
1986
+ "getitem setitem delitem "
1987
+ "len contains iter "
1988
+ "hash str sizeof "
1989
+ "enter exit "
1990
+ # we added divmod and rdivmod here instead of numerics
1991
+ # because there is no idivmod
1992
+ "divmod rdivmod neg pos abs invert "
1993
+ "complex int float index "
1994
+ "round trunc floor ceil "
1995
+ "bool next "
1996
+ "fspath "
1997
+ "aiter "
1998
+ )
1999
+
2000
+ numerics = (
2001
+ "add sub mul matmul truediv floordiv mod lshift rshift and xor or pow"
2002
+ )
2003
+ inplace = ' '.join('i%s' % n for n in numerics.split())
2004
+ right = ' '.join('r%s' % n for n in numerics.split())
2005
+
2006
+ # not including __prepare__, __instancecheck__, __subclasscheck__
2007
+ # (as they are metaclass methods)
2008
+ # __del__ is not supported at all as it causes problems if it exists
2009
+
2010
+ _non_defaults = {
2011
+ '__get__', '__set__', '__delete__', '__reversed__', '__missing__',
2012
+ '__reduce__', '__reduce_ex__', '__getinitargs__', '__getnewargs__',
2013
+ '__getstate__', '__setstate__', '__getformat__',
2014
+ '__repr__', '__dir__', '__subclasses__', '__format__',
2015
+ '__getnewargs_ex__',
2016
+ }
2017
+
2018
+
2019
+ def _get_method(name, func):
2020
+ "Turns a callable object (like a mock) into a real function"
2021
+ def method(self, /, *args, **kw):
2022
+ return func(self, *args, **kw)
2023
+ method.__name__ = name
2024
+ return method
2025
+
2026
+
2027
+ _magics = {
2028
+ '__%s__' % method for method in
2029
+ ' '.join([magic_methods, numerics, inplace, right]).split()
2030
+ }
2031
+
2032
+ # Magic methods used for async `with` statements
2033
+ _async_method_magics = {"__aenter__", "__aexit__", "__anext__"}
2034
+ # Magic methods that are only used with async calls but are synchronous functions themselves
2035
+ _sync_async_magics = {"__aiter__"}
2036
+ _async_magics = _async_method_magics | _sync_async_magics
2037
+
2038
+ _all_sync_magics = _magics | _non_defaults
2039
+ _all_magics = _all_sync_magics | _async_magics
2040
+
2041
+ _unsupported_magics = {
2042
+ '__getattr__', '__setattr__',
2043
+ '__init__', '__new__', '__prepare__',
2044
+ '__instancecheck__', '__subclasscheck__',
2045
+ '__del__'
2046
+ }
2047
+
2048
+ _calculate_return_value = {
2049
+ '__hash__': lambda self: object.__hash__(self),
2050
+ '__str__': lambda self: object.__str__(self),
2051
+ '__sizeof__': lambda self: object.__sizeof__(self),
2052
+ '__fspath__': lambda self: f"{type(self).__name__}/{self._extract_mock_name()}/{id(self)}",
2053
+ }
2054
+
2055
+ _return_values = {
2056
+ '__lt__': NotImplemented,
2057
+ '__gt__': NotImplemented,
2058
+ '__le__': NotImplemented,
2059
+ '__ge__': NotImplemented,
2060
+ '__int__': 1,
2061
+ '__contains__': False,
2062
+ '__len__': 0,
2063
+ '__exit__': False,
2064
+ '__complex__': 1j,
2065
+ '__float__': 1.0,
2066
+ '__bool__': True,
2067
+ '__index__': 1,
2068
+ '__aexit__': False,
2069
+ }
2070
+
2071
+
2072
+ def _get_eq(self):
2073
+ def __eq__(other):
2074
+ ret_val = self.__eq__._mock_return_value
2075
+ if ret_val is not DEFAULT:
2076
+ return ret_val
2077
+ if self is other:
2078
+ return True
2079
+ return NotImplemented
2080
+ return __eq__
2081
+
2082
+ def _get_ne(self):
2083
+ def __ne__(other):
2084
+ if self.__ne__._mock_return_value is not DEFAULT:
2085
+ return DEFAULT
2086
+ if self is other:
2087
+ return False
2088
+ return NotImplemented
2089
+ return __ne__
2090
+
2091
+ def _get_iter(self):
2092
+ def __iter__():
2093
+ ret_val = self.__iter__._mock_return_value
2094
+ if ret_val is DEFAULT:
2095
+ return iter([])
2096
+ # if ret_val was already an iterator, then calling iter on it should
2097
+ # return the iterator unchanged
2098
+ return iter(ret_val)
2099
+ return __iter__
2100
+
2101
+ def _get_async_iter(self):
2102
+ def __aiter__():
2103
+ ret_val = self.__aiter__._mock_return_value
2104
+ if ret_val is DEFAULT:
2105
+ return _AsyncIterator(iter([]))
2106
+ return _AsyncIterator(iter(ret_val))
2107
+ return __aiter__
2108
+
2109
+ _side_effect_methods = {
2110
+ '__eq__': _get_eq,
2111
+ '__ne__': _get_ne,
2112
+ '__iter__': _get_iter,
2113
+ '__aiter__': _get_async_iter
2114
+ }
2115
+
2116
+
2117
+
2118
+ def _set_return_value(mock, method, name):
2119
+ fixed = _return_values.get(name, DEFAULT)
2120
+ if fixed is not DEFAULT:
2121
+ method.return_value = fixed
2122
+ return
2123
+
2124
+ return_calculator = _calculate_return_value.get(name)
2125
+ if return_calculator is not None:
2126
+ return_value = return_calculator(mock)
2127
+ method.return_value = return_value
2128
+ return
2129
+
2130
+ side_effector = _side_effect_methods.get(name)
2131
+ if side_effector is not None:
2132
+ method.side_effect = side_effector(mock)
2133
+
2134
+
2135
+
2136
+ class MagicMixin(Base):
2137
+ def __init__(self, /, *args, **kw):
2138
+ self._mock_set_magics() # make magic work for kwargs in init
2139
+ _safe_super(MagicMixin, self).__init__(*args, **kw)
2140
+ self._mock_set_magics() # fix magic broken by upper level init
2141
+
2142
+
2143
+ def _mock_set_magics(self):
2144
+ orig_magics = _magics | _async_method_magics
2145
+ these_magics = orig_magics
2146
+
2147
+ if getattr(self, "_mock_methods", None) is not None:
2148
+ these_magics = orig_magics.intersection(self._mock_methods)
2149
+
2150
+ remove_magics = set()
2151
+ remove_magics = orig_magics - these_magics
2152
+
2153
+ for entry in remove_magics:
2154
+ if entry in type(self).__dict__:
2155
+ # remove unneeded magic methods
2156
+ delattr(self, entry)
2157
+
2158
+ # don't overwrite existing attributes if called a second time
2159
+ these_magics = these_magics - set(type(self).__dict__)
2160
+
2161
+ _type = type(self)
2162
+ for entry in these_magics:
2163
+ setattr(_type, entry, MagicProxy(entry, self))
2164
+
2165
+
2166
+
2167
+ class NonCallableMagicMock(MagicMixin, NonCallableMock):
2168
+ """A version of `MagicMock` that isn't callable."""
2169
+ def mock_add_spec(self, spec, spec_set=False):
2170
+ """Add a spec to a mock. `spec` can either be an object or a
2171
+ list of strings. Only attributes on the `spec` can be fetched as
2172
+ attributes from the mock.
2173
+
2174
+ If `spec_set` is True then only attributes on the spec can be set."""
2175
+ self._mock_add_spec(spec, spec_set)
2176
+ self._mock_set_magics()
2177
+
2178
+
2179
+ class AsyncMagicMixin(MagicMixin):
2180
+ pass
2181
+
2182
+
2183
+ class MagicMock(MagicMixin, Mock):
2184
+ """
2185
+ MagicMock is a subclass of Mock with default implementations
2186
+ of most of the magic methods. You can use MagicMock without having to
2187
+ configure the magic methods yourself.
2188
+
2189
+ If you use the `spec` or `spec_set` arguments then *only* magic
2190
+ methods that exist in the spec will be created.
2191
+
2192
+ Attributes and the return value of a `MagicMock` will also be `MagicMocks`.
2193
+ """
2194
+ def mock_add_spec(self, spec, spec_set=False):
2195
+ """Add a spec to a mock. `spec` can either be an object or a
2196
+ list of strings. Only attributes on the `spec` can be fetched as
2197
+ attributes from the mock.
2198
+
2199
+ If `spec_set` is True then only attributes on the spec can be set."""
2200
+ self._mock_add_spec(spec, spec_set)
2201
+ self._mock_set_magics()
2202
+
2203
+ def reset_mock(self, /, *args, return_value: bool = False, **kwargs):
2204
+ if (
2205
+ return_value
2206
+ and self._mock_name
2207
+ and _is_magic(self._mock_name)
2208
+ ):
2209
+ # Don't reset return values for magic methods,
2210
+ # otherwise `m.__str__` will start
2211
+ # to return `MagicMock` instances, instead of `str` instances.
2212
+ return_value = False
2213
+ super().reset_mock(*args, return_value=return_value, **kwargs)
2214
+
2215
+
2216
+ class MagicProxy(Base):
2217
+ def __init__(self, name, parent):
2218
+ self.name = name
2219
+ self.parent = parent
2220
+
2221
+ def create_mock(self):
2222
+ entry = self.name
2223
+ parent = self.parent
2224
+ m = parent._get_child_mock(name=entry, _new_name=entry,
2225
+ _new_parent=parent)
2226
+ setattr(parent, entry, m)
2227
+ _set_return_value(parent, m, entry)
2228
+ return m
2229
+
2230
+ def __get__(self, obj, _type=None):
2231
+ return self.create_mock()
2232
+
2233
+
2234
+ try:
2235
+ _CODE_SIG = inspect.signature(partial(CodeType.__init__, None))
2236
+ _CODE_ATTRS = dir(CodeType)
2237
+ except ValueError:
2238
+ _CODE_SIG = None
2239
+
2240
+
2241
+ class AsyncMockMixin(Base):
2242
+ await_count = _delegating_property('await_count')
2243
+ await_args = _delegating_property('await_args')
2244
+ await_args_list = _delegating_property('await_args_list')
2245
+
2246
+ def __init__(self, /, *args, **kwargs):
2247
+ super().__init__(*args, **kwargs)
2248
+ # iscoroutinefunction() checks _is_coroutine property to say if an
2249
+ # object is a coroutine. Without this check it looks to see if it is a
2250
+ # function/method, which in this case it is not (since it is an
2251
+ # AsyncMock).
2252
+ # It is set through __dict__ because when spec_set is True, this
2253
+ # attribute is likely undefined.
2254
+ self.__dict__['_is_coroutine'] = asyncio.coroutines._is_coroutine
2255
+ self.__dict__['_mock_await_count'] = 0
2256
+ self.__dict__['_mock_await_args'] = None
2257
+ self.__dict__['_mock_await_args_list'] = _CallList()
2258
+ if _CODE_SIG:
2259
+ code_mock = NonCallableMock(spec_set=_CODE_ATTRS)
2260
+ code_mock.__dict__["_spec_class"] = CodeType
2261
+ code_mock.__dict__["_spec_signature"] = _CODE_SIG
2262
+ else:
2263
+ code_mock = NonCallableMock(spec_set=CodeType)
2264
+ code_mock.co_flags = (
2265
+ inspect.CO_COROUTINE
2266
+ + inspect.CO_VARARGS
2267
+ + inspect.CO_VARKEYWORDS
2268
+ )
2269
+ code_mock.co_argcount = 0
2270
+ code_mock.co_varnames = ('args', 'kwargs')
2271
+ code_mock.co_posonlyargcount = 0
2272
+ code_mock.co_kwonlyargcount = 0
2273
+ self.__dict__['__code__'] = code_mock
2274
+ self.__dict__['__name__'] = 'AsyncMock'
2275
+ self.__dict__['__defaults__'] = tuple()
2276
+ self.__dict__['__kwdefaults__'] = {}
2277
+ self.__dict__['__annotations__'] = None
2278
+
2279
+ async def _execute_mock_call(self, /, *args, **kwargs):
2280
+ # This is nearly just like super(), except for special handling
2281
+ # of coroutines
2282
+
2283
+ _call = _Call((args, kwargs), two=True)
2284
+ self.await_count += 1
2285
+ self.await_args = _call
2286
+ self.await_args_list.append(_call)
2287
+
2288
+ effect = self.side_effect
2289
+ if effect is not None:
2290
+ if _is_exception(effect):
2291
+ raise effect
2292
+ elif not _callable(effect):
2293
+ try:
2294
+ result = next(effect)
2295
+ except StopIteration:
2296
+ # It is impossible to propagate a StopIteration
2297
+ # through coroutines because of PEP 479
2298
+ raise StopAsyncIteration
2299
+ if _is_exception(result):
2300
+ raise result
2301
+ elif iscoroutinefunction(effect):
2302
+ result = await effect(*args, **kwargs)
2303
+ else:
2304
+ result = effect(*args, **kwargs)
2305
+
2306
+ if result is not DEFAULT:
2307
+ return result
2308
+
2309
+ if self._mock_return_value is not DEFAULT:
2310
+ return self.return_value
2311
+
2312
+ if self._mock_wraps is not None:
2313
+ if iscoroutinefunction(self._mock_wraps):
2314
+ return await self._mock_wraps(*args, **kwargs)
2315
+ return self._mock_wraps(*args, **kwargs)
2316
+
2317
+ return self.return_value
2318
+
2319
+ def assert_awaited(self):
2320
+ """
2321
+ Assert that the mock was awaited at least once.
2322
+ """
2323
+ if self.await_count == 0:
2324
+ msg = f"Expected {self._mock_name or 'mock'} to have been awaited."
2325
+ raise AssertionError(msg)
2326
+
2327
+ def assert_awaited_once(self):
2328
+ """
2329
+ Assert that the mock was awaited exactly once.
2330
+ """
2331
+ if not self.await_count == 1:
2332
+ msg = (f"Expected {self._mock_name or 'mock'} to have been awaited once."
2333
+ f" Awaited {self.await_count} times.")
2334
+ raise AssertionError(msg)
2335
+
2336
+ def assert_awaited_with(self, /, *args, **kwargs):
2337
+ """
2338
+ Assert that the last await was with the specified arguments.
2339
+ """
2340
+ if self.await_args is None:
2341
+ expected = self._format_mock_call_signature(args, kwargs)
2342
+ raise AssertionError(f'Expected await: {expected}\nNot awaited')
2343
+
2344
+ def _error_message():
2345
+ msg = self._format_mock_failure_message(args, kwargs, action='await')
2346
+ return msg
2347
+
2348
+ expected = self._call_matcher(_Call((args, kwargs), two=True))
2349
+ actual = self._call_matcher(self.await_args)
2350
+ if actual != expected:
2351
+ cause = expected if isinstance(expected, Exception) else None
2352
+ raise AssertionError(_error_message()) from cause
2353
+
2354
+ def assert_awaited_once_with(self, /, *args, **kwargs):
2355
+ """
2356
+ Assert that the mock was awaited exactly once and with the specified
2357
+ arguments.
2358
+ """
2359
+ if not self.await_count == 1:
2360
+ msg = (f"Expected {self._mock_name or 'mock'} to have been awaited once."
2361
+ f" Awaited {self.await_count} times.")
2362
+ raise AssertionError(msg)
2363
+ return self.assert_awaited_with(*args, **kwargs)
2364
+
2365
+ def assert_any_await(self, /, *args, **kwargs):
2366
+ """
2367
+ Assert the mock has ever been awaited with the specified arguments.
2368
+ """
2369
+ expected = self._call_matcher(_Call((args, kwargs), two=True))
2370
+ cause = expected if isinstance(expected, Exception) else None
2371
+ actual = [self._call_matcher(c) for c in self.await_args_list]
2372
+ if cause or expected not in _AnyComparer(actual):
2373
+ expected_string = self._format_mock_call_signature(args, kwargs)
2374
+ raise AssertionError(
2375
+ '%s await not found' % expected_string
2376
+ ) from cause
2377
+
2378
+ def assert_has_awaits(self, calls, any_order=False):
2379
+ """
2380
+ Assert the mock has been awaited with the specified calls.
2381
+ The :attr:`await_args_list` list is checked for the awaits.
2382
+
2383
+ If `any_order` is False (the default) then the awaits must be
2384
+ sequential. There can be extra calls before or after the
2385
+ specified awaits.
2386
+
2387
+ If `any_order` is True then the awaits can be in any order, but
2388
+ they must all appear in :attr:`await_args_list`.
2389
+ """
2390
+ expected = [self._call_matcher(c) for c in calls]
2391
+ cause = next((e for e in expected if isinstance(e, Exception)), None)
2392
+ all_awaits = _CallList(self._call_matcher(c) for c in self.await_args_list)
2393
+ if not any_order:
2394
+ if expected not in all_awaits:
2395
+ if cause is None:
2396
+ problem = 'Awaits not found.'
2397
+ else:
2398
+ problem = ('Error processing expected awaits.\n'
2399
+ 'Errors: {}').format(
2400
+ [e if isinstance(e, Exception) else None
2401
+ for e in expected])
2402
+ raise AssertionError(
2403
+ f'{problem}\n'
2404
+ f'Expected: {_CallList(calls)}\n'
2405
+ f'Actual: {self.await_args_list}'
2406
+ ) from cause
2407
+ return
2408
+
2409
+ all_awaits = list(all_awaits)
2410
+
2411
+ not_found = []
2412
+ for kall in expected:
2413
+ try:
2414
+ all_awaits.remove(kall)
2415
+ except ValueError:
2416
+ not_found.append(kall)
2417
+ if not_found:
2418
+ raise AssertionError(
2419
+ '%r not all found in await list' % (tuple(not_found),)
2420
+ ) from cause
2421
+
2422
+ def assert_not_awaited(self):
2423
+ """
2424
+ Assert that the mock was never awaited.
2425
+ """
2426
+ if self.await_count != 0:
2427
+ msg = (f"Expected {self._mock_name or 'mock'} to not have been awaited."
2428
+ f" Awaited {self.await_count} times.")
2429
+ raise AssertionError(msg)
2430
+
2431
+ def reset_mock(self, /, *args, **kwargs):
2432
+ """
2433
+ See :func:`.Mock.reset_mock()`
2434
+ """
2435
+ super().reset_mock(*args, **kwargs)
2436
+ self.await_count = 0
2437
+ self.await_args = None
2438
+ self.await_args_list = _CallList()
2439
+
2440
+
2441
+ class AsyncMock(AsyncMockMixin, AsyncMagicMixin, Mock):
2442
+ """
2443
+ Enhance :class:`Mock` with features allowing to mock
2444
+ an async function.
2445
+
2446
+ The :class:`AsyncMock` object will behave so the object is
2447
+ recognized as an async function, and the result of a call is an awaitable:
2448
+
2449
+ >>> mock = AsyncMock()
2450
+ >>> iscoroutinefunction(mock)
2451
+ True
2452
+ >>> inspect.isawaitable(mock())
2453
+ True
2454
+
2455
+
2456
+ The result of ``mock()`` is an async function which will have the outcome
2457
+ of ``side_effect`` or ``return_value``:
2458
+
2459
+ - if ``side_effect`` is a function, the async function will return the
2460
+ result of that function,
2461
+ - if ``side_effect`` is an exception, the async function will raise the
2462
+ exception,
2463
+ - if ``side_effect`` is an iterable, the async function will return the
2464
+ next value of the iterable, however, if the sequence of result is
2465
+ exhausted, ``StopIteration`` is raised immediately,
2466
+ - if ``side_effect`` is not defined, the async function will return the
2467
+ value defined by ``return_value``, hence, by default, the async function
2468
+ returns a new :class:`AsyncMock` object.
2469
+
2470
+ If the outcome of ``side_effect`` or ``return_value`` is an async function,
2471
+ the mock async function obtained when the mock object is called will be this
2472
+ async function itself (and not an async function returning an async
2473
+ function).
2474
+
2475
+ The test author can also specify a wrapped object with ``wraps``. In this
2476
+ case, the :class:`Mock` object behavior is the same as with an
2477
+ :class:`.Mock` object: the wrapped object may have methods
2478
+ defined as async function functions.
2479
+
2480
+ Based on Martin Richard's asynctest project.
2481
+ """
2482
+
2483
+
2484
+ class _ANY(object):
2485
+ "A helper object that compares equal to everything."
2486
+
2487
+ def __eq__(self, other):
2488
+ return True
2489
+
2490
+ def __ne__(self, other):
2491
+ return False
2492
+
2493
+ def __repr__(self):
2494
+ return '<ANY>'
2495
+
2496
+ ANY = _ANY()
2497
+
2498
+
2499
+
2500
+ def _format_call_signature(name, args, kwargs):
2501
+ message = '%s(%%s)' % name
2502
+ formatted_args = ''
2503
+ args_string = ', '.join([repr(arg) for arg in args])
2504
+ kwargs_string = ', '.join([
2505
+ '%s=%r' % (key, value) for key, value in kwargs.items()
2506
+ ])
2507
+ if args_string:
2508
+ formatted_args = args_string
2509
+ if kwargs_string:
2510
+ if formatted_args:
2511
+ formatted_args += ', '
2512
+ formatted_args += kwargs_string
2513
+
2514
+ return message % formatted_args
2515
+
2516
+
2517
+
2518
+ class _Call(tuple):
2519
+ """
2520
+ A tuple for holding the results of a call to a mock, either in the form
2521
+ `(args, kwargs)` or `(name, args, kwargs)`.
2522
+
2523
+ If args or kwargs are empty then a call tuple will compare equal to
2524
+ a tuple without those values. This makes comparisons less verbose::
2525
+
2526
+ _Call(('name', (), {})) == ('name',)
2527
+ _Call(('name', (1,), {})) == ('name', (1,))
2528
+ _Call(((), {'a': 'b'})) == ({'a': 'b'},)
2529
+
2530
+ The `_Call` object provides a useful shortcut for comparing with call::
2531
+
2532
+ _Call(((1, 2), {'a': 3})) == call(1, 2, a=3)
2533
+ _Call(('foo', (1, 2), {'a': 3})) == call.foo(1, 2, a=3)
2534
+
2535
+ If the _Call has no name then it will match any name.
2536
+ """
2537
+ def __new__(cls, value=(), name='', parent=None, two=False,
2538
+ from_kall=True):
2539
+ args = ()
2540
+ kwargs = {}
2541
+ _len = len(value)
2542
+ if _len == 3:
2543
+ name, args, kwargs = value
2544
+ elif _len == 2:
2545
+ first, second = value
2546
+ if isinstance(first, str):
2547
+ name = first
2548
+ if isinstance(second, tuple):
2549
+ args = second
2550
+ else:
2551
+ kwargs = second
2552
+ else:
2553
+ args, kwargs = first, second
2554
+ elif _len == 1:
2555
+ value, = value
2556
+ if isinstance(value, str):
2557
+ name = value
2558
+ elif isinstance(value, tuple):
2559
+ args = value
2560
+ else:
2561
+ kwargs = value
2562
+
2563
+ if two:
2564
+ return tuple.__new__(cls, (args, kwargs))
2565
+
2566
+ return tuple.__new__(cls, (name, args, kwargs))
2567
+
2568
+
2569
+ def __init__(self, value=(), name=None, parent=None, two=False,
2570
+ from_kall=True):
2571
+ self._mock_name = name
2572
+ self._mock_parent = parent
2573
+ self._mock_from_kall = from_kall
2574
+
2575
+
2576
+ def __eq__(self, other):
2577
+ try:
2578
+ len_other = len(other)
2579
+ except TypeError:
2580
+ return NotImplemented
2581
+
2582
+ self_name = ''
2583
+ if len(self) == 2:
2584
+ self_args, self_kwargs = self
2585
+ else:
2586
+ self_name, self_args, self_kwargs = self
2587
+
2588
+ if (getattr(self, '_mock_parent', None) and getattr(other, '_mock_parent', None)
2589
+ and self._mock_parent != other._mock_parent):
2590
+ return False
2591
+
2592
+ other_name = ''
2593
+ if len_other == 0:
2594
+ other_args, other_kwargs = (), {}
2595
+ elif len_other == 3:
2596
+ other_name, other_args, other_kwargs = other
2597
+ elif len_other == 1:
2598
+ value, = other
2599
+ if isinstance(value, tuple):
2600
+ other_args = value
2601
+ other_kwargs = {}
2602
+ elif isinstance(value, str):
2603
+ other_name = value
2604
+ other_args, other_kwargs = (), {}
2605
+ else:
2606
+ other_args = ()
2607
+ other_kwargs = value
2608
+ elif len_other == 2:
2609
+ # could be (name, args) or (name, kwargs) or (args, kwargs)
2610
+ first, second = other
2611
+ if isinstance(first, str):
2612
+ other_name = first
2613
+ if isinstance(second, tuple):
2614
+ other_args, other_kwargs = second, {}
2615
+ else:
2616
+ other_args, other_kwargs = (), second
2617
+ else:
2618
+ other_args, other_kwargs = first, second
2619
+ else:
2620
+ return False
2621
+
2622
+ if self_name and other_name != self_name:
2623
+ return False
2624
+
2625
+ # this order is important for ANY to work!
2626
+ return (other_args, other_kwargs) == (self_args, self_kwargs)
2627
+
2628
+
2629
+ __ne__ = object.__ne__
2630
+
2631
+
2632
+ def __call__(self, /, *args, **kwargs):
2633
+ if self._mock_name is None:
2634
+ return _Call(('', args, kwargs), name='()')
2635
+
2636
+ name = self._mock_name + '()'
2637
+ return _Call((self._mock_name, args, kwargs), name=name, parent=self)
2638
+
2639
+
2640
+ def __getattr__(self, attr):
2641
+ if self._mock_name is None:
2642
+ return _Call(name=attr, from_kall=False)
2643
+ name = '%s.%s' % (self._mock_name, attr)
2644
+ return _Call(name=name, parent=self, from_kall=False)
2645
+
2646
+
2647
+ def __getattribute__(self, attr):
2648
+ if attr in tuple.__dict__:
2649
+ raise AttributeError
2650
+ return tuple.__getattribute__(self, attr)
2651
+
2652
+
2653
+ def _get_call_arguments(self):
2654
+ if len(self) == 2:
2655
+ args, kwargs = self
2656
+ else:
2657
+ name, args, kwargs = self
2658
+
2659
+ return args, kwargs
2660
+
2661
+ @property
2662
+ def args(self):
2663
+ return self._get_call_arguments()[0]
2664
+
2665
+ @property
2666
+ def kwargs(self):
2667
+ return self._get_call_arguments()[1]
2668
+
2669
+ def __repr__(self):
2670
+ if not self._mock_from_kall:
2671
+ name = self._mock_name or 'call'
2672
+ if name.startswith('()'):
2673
+ name = 'call%s' % name
2674
+ return name
2675
+
2676
+ if len(self) == 2:
2677
+ name = 'call'
2678
+ args, kwargs = self
2679
+ else:
2680
+ name, args, kwargs = self
2681
+ if not name:
2682
+ name = 'call'
2683
+ elif not name.startswith('()'):
2684
+ name = 'call.%s' % name
2685
+ else:
2686
+ name = 'call%s' % name
2687
+ return _format_call_signature(name, args, kwargs)
2688
+
2689
+
2690
+ def call_list(self):
2691
+ """For a call object that represents multiple calls, `call_list`
2692
+ returns a list of all the intermediate calls as well as the
2693
+ final call."""
2694
+ vals = []
2695
+ thing = self
2696
+ while thing is not None:
2697
+ if thing._mock_from_kall:
2698
+ vals.append(thing)
2699
+ thing = thing._mock_parent
2700
+ return _CallList(reversed(vals))
2701
+
2702
+
2703
+ call = _Call(from_kall=False)
2704
+
2705
+
2706
+ def create_autospec(spec, spec_set=False, instance=False, _parent=None,
2707
+ _name=None, *, unsafe=False, **kwargs):
2708
+ """Create a mock object using another object as a spec. Attributes on the
2709
+ mock will use the corresponding attribute on the `spec` object as their
2710
+ spec.
2711
+
2712
+ Functions or methods being mocked will have their arguments checked
2713
+ to check that they are called with the correct signature.
2714
+
2715
+ If `spec_set` is True then attempting to set attributes that don't exist
2716
+ on the spec object will raise an `AttributeError`.
2717
+
2718
+ If a class is used as a spec then the return value of the mock (the
2719
+ instance of the class) will have the same spec. You can use a class as the
2720
+ spec for an instance object by passing `instance=True`. The returned mock
2721
+ will only be callable if instances of the mock are callable.
2722
+
2723
+ `create_autospec` will raise a `RuntimeError` if passed some common
2724
+ misspellings of the arguments autospec and spec_set. Pass the argument
2725
+ `unsafe` with the value True to disable that check.
2726
+
2727
+ `create_autospec` also takes arbitrary keyword arguments that are passed to
2728
+ the constructor of the created mock."""
2729
+ if _is_list(spec):
2730
+ # can't pass a list instance to the mock constructor as it will be
2731
+ # interpreted as a list of strings
2732
+ spec = type(spec)
2733
+
2734
+ is_type = isinstance(spec, type)
2735
+ if _is_instance_mock(spec):
2736
+ raise InvalidSpecError(f'Cannot autospec a Mock object. '
2737
+ f'[object={spec!r}]')
2738
+ is_async_func = _is_async_func(spec)
2739
+ _kwargs = {'spec': spec}
2740
+ if spec_set:
2741
+ _kwargs = {'spec_set': spec}
2742
+ elif spec is None:
2743
+ # None we mock with a normal mock without a spec
2744
+ _kwargs = {}
2745
+ if _kwargs and instance:
2746
+ _kwargs['_spec_as_instance'] = True
2747
+ if not unsafe:
2748
+ _check_spec_arg_typos(kwargs)
2749
+
2750
+ _name = kwargs.pop('name', _name)
2751
+ _new_name = _name
2752
+ if _parent is None:
2753
+ # for a top level object no _new_name should be set
2754
+ _new_name = ''
2755
+
2756
+ _kwargs.update(kwargs)
2757
+
2758
+ Klass = MagicMock
2759
+ if inspect.isdatadescriptor(spec):
2760
+ # descriptors don't have a spec
2761
+ # because we don't know what type they return
2762
+ _kwargs = {}
2763
+ elif is_async_func:
2764
+ if instance:
2765
+ raise RuntimeError("Instance can not be True when create_autospec "
2766
+ "is mocking an async function")
2767
+ Klass = AsyncMock
2768
+ elif not _callable(spec):
2769
+ Klass = NonCallableMagicMock
2770
+ elif is_type and instance and not _instance_callable(spec):
2771
+ Klass = NonCallableMagicMock
2772
+
2773
+ mock = Klass(parent=_parent, _new_parent=_parent, _new_name=_new_name,
2774
+ name=_name, **_kwargs)
2775
+
2776
+ if isinstance(spec, FunctionTypes):
2777
+ # should only happen at the top level because we don't
2778
+ # recurse for functions
2779
+ mock = _set_signature(mock, spec)
2780
+ if is_async_func:
2781
+ _setup_async_mock(mock)
2782
+ else:
2783
+ _check_signature(spec, mock, is_type, instance)
2784
+
2785
+ if _parent is not None and not instance:
2786
+ _parent._mock_children[_name] = mock
2787
+
2788
+ # Pop wraps from kwargs because it must not be passed to configure_mock.
2789
+ wrapped = kwargs.pop('wraps', None)
2790
+ if is_type and not instance and 'return_value' not in kwargs:
2791
+ mock.return_value = create_autospec(spec, spec_set, instance=True,
2792
+ _name='()', _parent=mock,
2793
+ wraps=wrapped)
2794
+
2795
+ for entry in dir(spec):
2796
+ if _is_magic(entry):
2797
+ # MagicMock already does the useful magic methods for us
2798
+ continue
2799
+
2800
+ # XXXX do we need a better way of getting attributes without
2801
+ # triggering code execution (?) Probably not - we need the actual
2802
+ # object to mock it so we would rather trigger a property than mock
2803
+ # the property descriptor. Likewise we want to mock out dynamically
2804
+ # provided attributes.
2805
+ # XXXX what about attributes that raise exceptions other than
2806
+ # AttributeError on being fetched?
2807
+ # we could be resilient against it, or catch and propagate the
2808
+ # exception when the attribute is fetched from the mock
2809
+ try:
2810
+ original = getattr(spec, entry)
2811
+ except AttributeError:
2812
+ continue
2813
+
2814
+ child_kwargs = {'spec': original}
2815
+ # Wrap child attributes also.
2816
+ if wrapped and hasattr(wrapped, entry):
2817
+ child_kwargs.update(wraps=original)
2818
+ if spec_set:
2819
+ child_kwargs = {'spec_set': original}
2820
+
2821
+ if not isinstance(original, FunctionTypes):
2822
+ new = _SpecState(original, spec_set, mock, entry, instance)
2823
+ mock._mock_children[entry] = new
2824
+ else:
2825
+ parent = mock
2826
+ if isinstance(spec, FunctionTypes):
2827
+ parent = mock.mock
2828
+
2829
+ skipfirst = _must_skip(spec, entry, is_type)
2830
+ child_kwargs['_eat_self'] = skipfirst
2831
+ if iscoroutinefunction(original):
2832
+ child_klass = AsyncMock
2833
+ else:
2834
+ child_klass = MagicMock
2835
+ new = child_klass(parent=parent, name=entry, _new_name=entry,
2836
+ _new_parent=parent, **child_kwargs)
2837
+ mock._mock_children[entry] = new
2838
+ new.return_value = child_klass()
2839
+ _check_signature(original, new, skipfirst=skipfirst)
2840
+
2841
+ # so functions created with _set_signature become instance attributes,
2842
+ # *plus* their underlying mock exists in _mock_children of the parent
2843
+ # mock. Adding to _mock_children may be unnecessary where we are also
2844
+ # setting as an instance attribute?
2845
+ if isinstance(new, FunctionTypes):
2846
+ setattr(mock, entry, new)
2847
+ # kwargs are passed with respect to the parent mock so, they are not used
2848
+ # for creating return_value of the parent mock. So, this condition
2849
+ # should be true only for the parent mock if kwargs are given.
2850
+ if _is_instance_mock(mock) and kwargs:
2851
+ mock.configure_mock(**kwargs)
2852
+
2853
+ return mock
2854
+
2855
+
2856
+ def _must_skip(spec, entry, is_type):
2857
+ """
2858
+ Return whether we should skip the first argument on spec's `entry`
2859
+ attribute.
2860
+ """
2861
+ if not isinstance(spec, type):
2862
+ if entry in getattr(spec, '__dict__', {}):
2863
+ # instance attribute - shouldn't skip
2864
+ return False
2865
+ spec = spec.__class__
2866
+
2867
+ for klass in spec.__mro__:
2868
+ result = klass.__dict__.get(entry, DEFAULT)
2869
+ if result is DEFAULT:
2870
+ continue
2871
+ if isinstance(result, (staticmethod, classmethod)):
2872
+ return False
2873
+ elif isinstance(result, FunctionTypes):
2874
+ # Normal method => skip if looked up on type
2875
+ # (if looked up on instance, self is already skipped)
2876
+ return is_type
2877
+ else:
2878
+ return False
2879
+
2880
+ # function is a dynamically provided attribute
2881
+ return is_type
2882
+
2883
+
2884
+ class _SpecState(object):
2885
+
2886
+ def __init__(self, spec, spec_set=False, parent=None,
2887
+ name=None, ids=None, instance=False):
2888
+ self.spec = spec
2889
+ self.ids = ids
2890
+ self.spec_set = spec_set
2891
+ self.parent = parent
2892
+ self.instance = instance
2893
+ self.name = name
2894
+
2895
+
2896
+ FunctionTypes = (
2897
+ # python function
2898
+ type(create_autospec),
2899
+ # instance method
2900
+ type(ANY.__eq__),
2901
+ )
2902
+
2903
+
2904
+ file_spec = None
2905
+ open_spec = None
2906
+
2907
+
2908
+ def _to_stream(read_data):
2909
+ if isinstance(read_data, bytes):
2910
+ return io.BytesIO(read_data)
2911
+ else:
2912
+ return io.StringIO(read_data)
2913
+
2914
+
2915
+ def mock_open(mock=None, read_data=''):
2916
+ """
2917
+ A helper function to create a mock to replace the use of `open`. It works
2918
+ for `open` called directly or used as a context manager.
2919
+
2920
+ The `mock` argument is the mock object to configure. If `None` (the
2921
+ default) then a `MagicMock` will be created for you, with the API limited
2922
+ to methods or attributes available on standard file handles.
2923
+
2924
+ `read_data` is a string for the `read`, `readline` and `readlines` of the
2925
+ file handle to return. This is an empty string by default.
2926
+ """
2927
+ _read_data = _to_stream(read_data)
2928
+ _state = [_read_data, None]
2929
+
2930
+ def _readlines_side_effect(*args, **kwargs):
2931
+ if handle.readlines.return_value is not None:
2932
+ return handle.readlines.return_value
2933
+ return _state[0].readlines(*args, **kwargs)
2934
+
2935
+ def _read_side_effect(*args, **kwargs):
2936
+ if handle.read.return_value is not None:
2937
+ return handle.read.return_value
2938
+ return _state[0].read(*args, **kwargs)
2939
+
2940
+ def _readline_side_effect(*args, **kwargs):
2941
+ yield from _iter_side_effect()
2942
+ while True:
2943
+ yield _state[0].readline(*args, **kwargs)
2944
+
2945
+ def _iter_side_effect():
2946
+ if handle.readline.return_value is not None:
2947
+ while True:
2948
+ yield handle.readline.return_value
2949
+ for line in _state[0]:
2950
+ yield line
2951
+
2952
+ def _next_side_effect():
2953
+ if handle.readline.return_value is not None:
2954
+ return handle.readline.return_value
2955
+ return next(_state[0])
2956
+
2957
+ global file_spec
2958
+ if file_spec is None:
2959
+ import _io
2960
+ file_spec = list(set(dir(_io.TextIOWrapper)).union(set(dir(_io.BytesIO))))
2961
+
2962
+ global open_spec
2963
+ if open_spec is None:
2964
+ import _io
2965
+ open_spec = list(set(dir(_io.open)))
2966
+ if mock is None:
2967
+ mock = MagicMock(name='open', spec=open_spec)
2968
+
2969
+ handle = MagicMock(spec=file_spec)
2970
+ handle.__enter__.return_value = handle
2971
+
2972
+ handle.write.return_value = None
2973
+ handle.read.return_value = None
2974
+ handle.readline.return_value = None
2975
+ handle.readlines.return_value = None
2976
+
2977
+ handle.read.side_effect = _read_side_effect
2978
+ _state[1] = _readline_side_effect()
2979
+ handle.readline.side_effect = _state[1]
2980
+ handle.readlines.side_effect = _readlines_side_effect
2981
+ handle.__iter__.side_effect = _iter_side_effect
2982
+ handle.__next__.side_effect = _next_side_effect
2983
+
2984
+ def reset_data(*args, **kwargs):
2985
+ _state[0] = _to_stream(read_data)
2986
+ if handle.readline.side_effect == _state[1]:
2987
+ # Only reset the side effect if the user hasn't overridden it.
2988
+ _state[1] = _readline_side_effect()
2989
+ handle.readline.side_effect = _state[1]
2990
+ return DEFAULT
2991
+
2992
+ mock.side_effect = reset_data
2993
+ mock.return_value = handle
2994
+ return mock
2995
+
2996
+
2997
+ class PropertyMock(Mock):
2998
+ """
2999
+ A mock intended to be used as a property, or other descriptor, on a class.
3000
+ `PropertyMock` provides `__get__` and `__set__` methods so you can specify
3001
+ a return value when it is fetched.
3002
+
3003
+ Fetching a `PropertyMock` instance from an object calls the mock, with
3004
+ no args. Setting it calls the mock with the value being set.
3005
+ """
3006
+ def _get_child_mock(self, /, **kwargs):
3007
+ return MagicMock(**kwargs)
3008
+
3009
+ def __get__(self, obj, obj_type=None):
3010
+ return self()
3011
+ def __set__(self, obj, val):
3012
+ self(val)
3013
+
3014
+
3015
+ def seal(mock):
3016
+ """Disable the automatic generation of child mocks.
3017
+
3018
+ Given an input Mock, seals it to ensure no further mocks will be generated
3019
+ when accessing an attribute that was not already defined.
3020
+
3021
+ The operation recursively seals the mock passed in, meaning that
3022
+ the mock itself, any mocks generated by accessing one of its attributes,
3023
+ and all assigned mocks without a name or spec will be sealed.
3024
+ """
3025
+ mock._mock_sealed = True
3026
+ for attr in dir(mock):
3027
+ try:
3028
+ m = getattr(mock, attr)
3029
+ except AttributeError:
3030
+ continue
3031
+ if not isinstance(m, NonCallableMock):
3032
+ continue
3033
+ if isinstance(m._mock_children.get(attr), _SpecState):
3034
+ continue
3035
+ if m._mock_new_parent is mock:
3036
+ seal(m)
3037
+
3038
+
3039
+ class _AsyncIterator:
3040
+ """
3041
+ Wraps an iterator in an asynchronous iterator.
3042
+ """
3043
+ def __init__(self, iterator):
3044
+ self.iterator = iterator
3045
+ code_mock = NonCallableMock(spec_set=CodeType)
3046
+ code_mock.co_flags = inspect.CO_ITERABLE_COROUTINE
3047
+ self.__dict__['__code__'] = code_mock
3048
+
3049
+ async def __anext__(self):
3050
+ try:
3051
+ return next(self.iterator)
3052
+ except StopIteration:
3053
+ pass
3054
+ raise StopAsyncIteration