@pairling/runtime-darwin-arm64 0.1.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1318) hide show
  1. package/README.md +1 -1
  2. package/bin/pairling-connectd +0 -0
  3. package/manifest.json +9 -3
  4. package/package.json +3 -3
  5. package/python/bin/2to3-3.12 +7 -0
  6. package/python/bin/idle3.12 +7 -0
  7. package/python/bin/pip +8 -0
  8. package/python/bin/pip3 +8 -0
  9. package/python/bin/pip3.12 +8 -0
  10. package/python/bin/pydoc3.12 +7 -0
  11. package/python/bin/python3 +0 -0
  12. package/python/bin/python3.12 +0 -0
  13. package/python/bin/python3.12-config +76 -0
  14. package/python/include/python3.12/Python.h +109 -0
  15. package/python/include/python3.12/abstract.h +899 -0
  16. package/python/include/python3.12/bltinmodule.h +14 -0
  17. package/python/include/python3.12/boolobject.h +42 -0
  18. package/python/include/python3.12/bytearrayobject.h +44 -0
  19. package/python/include/python3.12/bytesobject.h +69 -0
  20. package/python/include/python3.12/ceval.h +168 -0
  21. package/python/include/python3.12/codecs.h +248 -0
  22. package/python/include/python3.12/compile.h +22 -0
  23. package/python/include/python3.12/complexobject.h +30 -0
  24. package/python/include/python3.12/cpython/abstract.h +206 -0
  25. package/python/include/python3.12/cpython/bytearrayobject.h +34 -0
  26. package/python/include/python3.12/cpython/bytesobject.h +133 -0
  27. package/python/include/python3.12/cpython/cellobject.h +44 -0
  28. package/python/include/python3.12/cpython/ceval.h +35 -0
  29. package/python/include/python3.12/cpython/classobject.h +71 -0
  30. package/python/include/python3.12/cpython/code.h +389 -0
  31. package/python/include/python3.12/cpython/compile.h +69 -0
  32. package/python/include/python3.12/cpython/complexobject.h +44 -0
  33. package/python/include/python3.12/cpython/context.h +78 -0
  34. package/python/include/python3.12/cpython/descrobject.h +64 -0
  35. package/python/include/python3.12/cpython/dictobject.h +118 -0
  36. package/python/include/python3.12/cpython/fileobject.h +19 -0
  37. package/python/include/python3.12/cpython/fileutils.h +8 -0
  38. package/python/include/python3.12/cpython/floatobject.h +27 -0
  39. package/python/include/python3.12/cpython/frameobject.h +29 -0
  40. package/python/include/python3.12/cpython/funcobject.h +190 -0
  41. package/python/include/python3.12/cpython/genobject.h +89 -0
  42. package/python/include/python3.12/cpython/import.h +46 -0
  43. package/python/include/python3.12/cpython/initconfig.h +256 -0
  44. package/python/include/python3.12/cpython/interpreteridobject.h +11 -0
  45. package/python/include/python3.12/cpython/listobject.h +47 -0
  46. package/python/include/python3.12/cpython/longintrepr.h +133 -0
  47. package/python/include/python3.12/cpython/longobject.h +100 -0
  48. package/python/include/python3.12/cpython/memoryobject.h +52 -0
  49. package/python/include/python3.12/cpython/methodobject.h +66 -0
  50. package/python/include/python3.12/cpython/modsupport.h +109 -0
  51. package/python/include/python3.12/cpython/object.h +575 -0
  52. package/python/include/python3.12/cpython/objimpl.h +95 -0
  53. package/python/include/python3.12/cpython/odictobject.h +43 -0
  54. package/python/include/python3.12/cpython/picklebufobject.h +31 -0
  55. package/python/include/python3.12/cpython/pthread_stubs.h +88 -0
  56. package/python/include/python3.12/cpython/pyctype.h +39 -0
  57. package/python/include/python3.12/cpython/pydebug.h +38 -0
  58. package/python/include/python3.12/cpython/pyerrors.h +178 -0
  59. package/python/include/python3.12/cpython/pyfpe.h +15 -0
  60. package/python/include/python3.12/cpython/pyframe.h +35 -0
  61. package/python/include/python3.12/cpython/pylifecycle.h +111 -0
  62. package/python/include/python3.12/cpython/pymem.h +98 -0
  63. package/python/include/python3.12/cpython/pystate.h +456 -0
  64. package/python/include/python3.12/cpython/pythonrun.h +121 -0
  65. package/python/include/python3.12/cpython/pythread.h +42 -0
  66. package/python/include/python3.12/cpython/pytime.h +331 -0
  67. package/python/include/python3.12/cpython/setobject.h +72 -0
  68. package/python/include/python3.12/cpython/sysmodule.h +16 -0
  69. package/python/include/python3.12/cpython/traceback.h +16 -0
  70. package/python/include/python3.12/cpython/tupleobject.h +39 -0
  71. package/python/include/python3.12/cpython/unicodeobject.h +976 -0
  72. package/python/include/python3.12/cpython/warnings.h +20 -0
  73. package/python/include/python3.12/cpython/weakrefobject.h +56 -0
  74. package/python/include/python3.12/datetime.h +267 -0
  75. package/python/include/python3.12/descrobject.h +100 -0
  76. package/python/include/python3.12/dictobject.h +97 -0
  77. package/python/include/python3.12/dynamic_annotations.h +499 -0
  78. package/python/include/python3.12/enumobject.h +17 -0
  79. package/python/include/python3.12/errcode.h +38 -0
  80. package/python/include/python3.12/exports.h +36 -0
  81. package/python/include/python3.12/fileobject.h +49 -0
  82. package/python/include/python3.12/fileutils.h +26 -0
  83. package/python/include/python3.12/floatobject.h +54 -0
  84. package/python/include/python3.12/frameobject.h +20 -0
  85. package/python/include/python3.12/genericaliasobject.h +14 -0
  86. package/python/include/python3.12/import.h +98 -0
  87. package/python/include/python3.12/internal/pycore_abstract.h +25 -0
  88. package/python/include/python3.12/internal/pycore_asdl.h +112 -0
  89. package/python/include/python3.12/internal/pycore_ast.h +922 -0
  90. package/python/include/python3.12/internal/pycore_ast_state.h +265 -0
  91. package/python/include/python3.12/internal/pycore_atexit.h +57 -0
  92. package/python/include/python3.12/internal/pycore_atomic.h +557 -0
  93. package/python/include/python3.12/internal/pycore_atomic_funcs.h +94 -0
  94. package/python/include/python3.12/internal/pycore_bitutils.h +186 -0
  95. package/python/include/python3.12/internal/pycore_blocks_output_buffer.h +317 -0
  96. package/python/include/python3.12/internal/pycore_bytes_methods.h +73 -0
  97. package/python/include/python3.12/internal/pycore_bytesobject.h +47 -0
  98. package/python/include/python3.12/internal/pycore_call.h +133 -0
  99. package/python/include/python3.12/internal/pycore_ceval.h +164 -0
  100. package/python/include/python3.12/internal/pycore_ceval_state.h +103 -0
  101. package/python/include/python3.12/internal/pycore_code.h +496 -0
  102. package/python/include/python3.12/internal/pycore_compile.h +118 -0
  103. package/python/include/python3.12/internal/pycore_condvar.h +99 -0
  104. package/python/include/python3.12/internal/pycore_context.h +71 -0
  105. package/python/include/python3.12/internal/pycore_descrobject.h +26 -0
  106. package/python/include/python3.12/internal/pycore_dict.h +199 -0
  107. package/python/include/python3.12/internal/pycore_dict_state.h +50 -0
  108. package/python/include/python3.12/internal/pycore_dtoa.h +69 -0
  109. package/python/include/python3.12/internal/pycore_emscripten_signal.h +25 -0
  110. package/python/include/python3.12/internal/pycore_exceptions.h +37 -0
  111. package/python/include/python3.12/internal/pycore_faulthandler.h +99 -0
  112. package/python/include/python3.12/internal/pycore_fileutils.h +292 -0
  113. package/python/include/python3.12/internal/pycore_fileutils_windows.h +98 -0
  114. package/python/include/python3.12/internal/pycore_floatobject.h +71 -0
  115. package/python/include/python3.12/internal/pycore_flowgraph.h +120 -0
  116. package/python/include/python3.12/internal/pycore_format.h +27 -0
  117. package/python/include/python3.12/internal/pycore_frame.h +283 -0
  118. package/python/include/python3.12/internal/pycore_function.h +26 -0
  119. package/python/include/python3.12/internal/pycore_gc.h +211 -0
  120. package/python/include/python3.12/internal/pycore_genobject.h +49 -0
  121. package/python/include/python3.12/internal/pycore_getopt.h +22 -0
  122. package/python/include/python3.12/internal/pycore_gil.h +50 -0
  123. package/python/include/python3.12/internal/pycore_global_objects.h +105 -0
  124. package/python/include/python3.12/internal/pycore_global_objects_fini_generated.h +1517 -0
  125. package/python/include/python3.12/internal/pycore_global_strings.h +777 -0
  126. package/python/include/python3.12/internal/pycore_hamt.h +134 -0
  127. package/python/include/python3.12/internal/pycore_hashtable.h +149 -0
  128. package/python/include/python3.12/internal/pycore_import.h +183 -0
  129. package/python/include/python3.12/internal/pycore_initconfig.h +179 -0
  130. package/python/include/python3.12/internal/pycore_instruments.h +106 -0
  131. package/python/include/python3.12/internal/pycore_interp.h +275 -0
  132. package/python/include/python3.12/internal/pycore_intrinsics.h +32 -0
  133. package/python/include/python3.12/internal/pycore_list.h +83 -0
  134. package/python/include/python3.12/internal/pycore_long.h +258 -0
  135. package/python/include/python3.12/internal/pycore_memoryobject.h +18 -0
  136. package/python/include/python3.12/internal/pycore_moduleobject.h +45 -0
  137. package/python/include/python3.12/internal/pycore_namespace.h +20 -0
  138. package/python/include/python3.12/internal/pycore_object.h +455 -0
  139. package/python/include/python3.12/internal/pycore_object_state.h +42 -0
  140. package/python/include/python3.12/internal/pycore_obmalloc.h +700 -0
  141. package/python/include/python3.12/internal/pycore_obmalloc_init.h +73 -0
  142. package/python/include/python3.12/internal/pycore_opcode.h +587 -0
  143. package/python/include/python3.12/internal/pycore_opcode_utils.h +92 -0
  144. package/python/include/python3.12/internal/pycore_parser.h +66 -0
  145. package/python/include/python3.12/internal/pycore_pathconfig.h +24 -0
  146. package/python/include/python3.12/internal/pycore_pyarena.h +64 -0
  147. package/python/include/python3.12/internal/pycore_pyerrors.h +129 -0
  148. package/python/include/python3.12/internal/pycore_pyhash.h +40 -0
  149. package/python/include/python3.12/internal/pycore_pylifecycle.h +99 -0
  150. package/python/include/python3.12/internal/pycore_pymath.h +205 -0
  151. package/python/include/python3.12/internal/pycore_pymem.h +98 -0
  152. package/python/include/python3.12/internal/pycore_pymem_init.h +85 -0
  153. package/python/include/python3.12/internal/pycore_pystate.h +180 -0
  154. package/python/include/python3.12/internal/pycore_pythread.h +81 -0
  155. package/python/include/python3.12/internal/pycore_range.h +21 -0
  156. package/python/include/python3.12/internal/pycore_runtime.h +235 -0
  157. package/python/include/python3.12/internal/pycore_runtime_init.h +188 -0
  158. package/python/include/python3.12/internal/pycore_runtime_init_generated.h +1511 -0
  159. package/python/include/python3.12/internal/pycore_signal.h +98 -0
  160. package/python/include/python3.12/internal/pycore_sliceobject.h +22 -0
  161. package/python/include/python3.12/internal/pycore_strhex.h +36 -0
  162. package/python/include/python3.12/internal/pycore_structseq.h +39 -0
  163. package/python/include/python3.12/internal/pycore_symtable.h +160 -0
  164. package/python/include/python3.12/internal/pycore_sysmodule.h +34 -0
  165. package/python/include/python3.12/internal/pycore_time.h +25 -0
  166. package/python/include/python3.12/internal/pycore_token.h +108 -0
  167. package/python/include/python3.12/internal/pycore_traceback.h +101 -0
  168. package/python/include/python3.12/internal/pycore_tracemalloc.h +123 -0
  169. package/python/include/python3.12/internal/pycore_tuple.h +79 -0
  170. package/python/include/python3.12/internal/pycore_typeobject.h +151 -0
  171. package/python/include/python3.12/internal/pycore_typevarobject.h +24 -0
  172. package/python/include/python3.12/internal/pycore_ucnhash.h +34 -0
  173. package/python/include/python3.12/internal/pycore_unicodeobject.h +86 -0
  174. package/python/include/python3.12/internal/pycore_unicodeobject_generated.h +2832 -0
  175. package/python/include/python3.12/internal/pycore_unionobject.h +23 -0
  176. package/python/include/python3.12/internal/pycore_warnings.h +29 -0
  177. package/python/include/python3.12/interpreteridobject.h +17 -0
  178. package/python/include/python3.12/intrcheck.h +30 -0
  179. package/python/include/python3.12/iterobject.h +27 -0
  180. package/python/include/python3.12/listobject.h +52 -0
  181. package/python/include/python3.12/longobject.h +108 -0
  182. package/python/include/python3.12/marshal.h +31 -0
  183. package/python/include/python3.12/memoryobject.h +34 -0
  184. package/python/include/python3.12/methodobject.h +132 -0
  185. package/python/include/python3.12/modsupport.h +168 -0
  186. package/python/include/python3.12/moduleobject.h +119 -0
  187. package/python/include/python3.12/object.h +993 -0
  188. package/python/include/python3.12/objimpl.h +234 -0
  189. package/python/include/python3.12/opcode.h +271 -0
  190. package/python/include/python3.12/osdefs.h +51 -0
  191. package/python/include/python3.12/osmodule.h +17 -0
  192. package/python/include/python3.12/patchlevel.h +35 -0
  193. package/python/include/python3.12/py_curses.h +99 -0
  194. package/python/include/python3.12/pybuffer.h +145 -0
  195. package/python/include/python3.12/pycapsule.h +59 -0
  196. package/python/include/python3.12/pyconfig.h +1943 -0
  197. package/python/include/python3.12/pydtrace.h +59 -0
  198. package/python/include/python3.12/pyerrors.h +337 -0
  199. package/python/include/python3.12/pyexpat.h +62 -0
  200. package/python/include/python3.12/pyframe.h +26 -0
  201. package/python/include/python3.12/pyhash.h +144 -0
  202. package/python/include/python3.12/pylifecycle.h +78 -0
  203. package/python/include/python3.12/pymacconfig.h +99 -0
  204. package/python/include/python3.12/pymacro.h +172 -0
  205. package/python/include/python3.12/pymath.h +62 -0
  206. package/python/include/python3.12/pymem.h +104 -0
  207. package/python/include/python3.12/pyport.h +782 -0
  208. package/python/include/python3.12/pystate.h +132 -0
  209. package/python/include/python3.12/pystats.h +110 -0
  210. package/python/include/python3.12/pystrcmp.h +23 -0
  211. package/python/include/python3.12/pystrtod.h +46 -0
  212. package/python/include/python3.12/pythonrun.h +49 -0
  213. package/python/include/python3.12/pythread.h +135 -0
  214. package/python/include/python3.12/pytypedefs.h +30 -0
  215. package/python/include/python3.12/rangeobject.h +27 -0
  216. package/python/include/python3.12/setobject.h +49 -0
  217. package/python/include/python3.12/sliceobject.h +65 -0
  218. package/python/include/python3.12/structmember.h +56 -0
  219. package/python/include/python3.12/structseq.h +49 -0
  220. package/python/include/python3.12/sysmodule.h +54 -0
  221. package/python/include/python3.12/traceback.h +26 -0
  222. package/python/include/python3.12/tracemalloc.h +77 -0
  223. package/python/include/python3.12/tupleobject.h +46 -0
  224. package/python/include/python3.12/typeslots.h +88 -0
  225. package/python/include/python3.12/unicodeobject.h +1020 -0
  226. package/python/include/python3.12/warnings.h +45 -0
  227. package/python/include/python3.12/weakrefobject.h +42 -0
  228. package/python/lib/libpython3.12.dylib +0 -0
  229. package/python/lib/python3.12/LICENSE.txt +279 -0
  230. package/python/lib/python3.12/__future__.py +147 -0
  231. package/python/lib/python3.12/__hello__.py +16 -0
  232. package/python/lib/python3.12/__phello__/__init__.py +7 -0
  233. package/python/lib/python3.12/__phello__/spam.py +7 -0
  234. package/python/lib/python3.12/__pycache__/_compression.cpython-312.pyc +0 -0
  235. package/python/lib/python3.12/__pycache__/_weakrefset.cpython-312.pyc +0 -0
  236. package/python/lib/python3.12/__pycache__/base64.cpython-312.pyc +0 -0
  237. package/python/lib/python3.12/__pycache__/bisect.cpython-312.pyc +0 -0
  238. package/python/lib/python3.12/__pycache__/bz2.cpython-312.pyc +0 -0
  239. package/python/lib/python3.12/__pycache__/calendar.cpython-312.pyc +0 -0
  240. package/python/lib/python3.12/__pycache__/contextlib.cpython-312.pyc +0 -0
  241. package/python/lib/python3.12/__pycache__/copyreg.cpython-312.pyc +0 -0
  242. package/python/lib/python3.12/__pycache__/datetime.cpython-312.pyc +0 -0
  243. package/python/lib/python3.12/__pycache__/enum.cpython-312.pyc +0 -0
  244. package/python/lib/python3.12/__pycache__/fnmatch.cpython-312.pyc +0 -0
  245. package/python/lib/python3.12/__pycache__/functools.cpython-312.pyc +0 -0
  246. package/python/lib/python3.12/__pycache__/hashlib.cpython-312.pyc +0 -0
  247. package/python/lib/python3.12/__pycache__/hmac.cpython-312.pyc +0 -0
  248. package/python/lib/python3.12/__pycache__/ipaddress.cpython-312.pyc +0 -0
  249. package/python/lib/python3.12/__pycache__/keyword.cpython-312.pyc +0 -0
  250. package/python/lib/python3.12/__pycache__/locale.cpython-312.pyc +0 -0
  251. package/python/lib/python3.12/__pycache__/lzma.cpython-312.pyc +0 -0
  252. package/python/lib/python3.12/__pycache__/operator.cpython-312.pyc +0 -0
  253. package/python/lib/python3.12/__pycache__/plistlib.cpython-312.pyc +0 -0
  254. package/python/lib/python3.12/__pycache__/pty.cpython-312.pyc +0 -0
  255. package/python/lib/python3.12/__pycache__/quopri.cpython-312.pyc +0 -0
  256. package/python/lib/python3.12/__pycache__/random.cpython-312.pyc +0 -0
  257. package/python/lib/python3.12/__pycache__/reprlib.cpython-312.pyc +0 -0
  258. package/python/lib/python3.12/__pycache__/selectors.cpython-312.pyc +0 -0
  259. package/python/lib/python3.12/__pycache__/shutil.cpython-312.pyc +0 -0
  260. package/python/lib/python3.12/__pycache__/signal.cpython-312.pyc +0 -0
  261. package/python/lib/python3.12/__pycache__/socket.cpython-312.pyc +0 -0
  262. package/python/lib/python3.12/__pycache__/ssl.cpython-312.pyc +0 -0
  263. package/python/lib/python3.12/__pycache__/string.cpython-312.pyc +0 -0
  264. package/python/lib/python3.12/__pycache__/struct.cpython-312.pyc +0 -0
  265. package/python/lib/python3.12/__pycache__/subprocess.cpython-312.pyc +0 -0
  266. package/python/lib/python3.12/__pycache__/tempfile.cpython-312.pyc +0 -0
  267. package/python/lib/python3.12/__pycache__/threading.cpython-312.pyc +0 -0
  268. package/python/lib/python3.12/__pycache__/tty.cpython-312.pyc +0 -0
  269. package/python/lib/python3.12/__pycache__/types.cpython-312.pyc +0 -0
  270. package/python/lib/python3.12/__pycache__/warnings.cpython-312.pyc +0 -0
  271. package/python/lib/python3.12/__pycache__/weakref.cpython-312.pyc +0 -0
  272. package/python/lib/python3.12/_aix_support.py +108 -0
  273. package/python/lib/python3.12/_collections_abc.py +1173 -0
  274. package/python/lib/python3.12/_compat_pickle.py +252 -0
  275. package/python/lib/python3.12/_compression.py +162 -0
  276. package/python/lib/python3.12/_markupbase.py +396 -0
  277. package/python/lib/python3.12/_osx_support.py +579 -0
  278. package/python/lib/python3.12/_py_abc.py +147 -0
  279. package/python/lib/python3.12/_pydatetime.py +2643 -0
  280. package/python/lib/python3.12/_pydecimal.py +6339 -0
  281. package/python/lib/python3.12/_pyio.py +2698 -0
  282. package/python/lib/python3.12/_pylong.py +329 -0
  283. package/python/lib/python3.12/_sitebuiltins.py +103 -0
  284. package/python/lib/python3.12/_strptime.py +664 -0
  285. package/python/lib/python3.12/_sysconfigdata__darwin_darwin.py +984 -0
  286. package/python/lib/python3.12/_threading_local.py +242 -0
  287. package/python/lib/python3.12/_weakrefset.py +205 -0
  288. package/python/lib/python3.12/abc.py +188 -0
  289. package/python/lib/python3.12/aifc.py +984 -0
  290. package/python/lib/python3.12/antigravity.py +17 -0
  291. package/python/lib/python3.12/argparse.py +2650 -0
  292. package/python/lib/python3.12/ast.py +1840 -0
  293. package/python/lib/python3.12/asyncio/__init__.py +47 -0
  294. package/python/lib/python3.12/asyncio/__main__.py +128 -0
  295. package/python/lib/python3.12/asyncio/base_events.py +2024 -0
  296. package/python/lib/python3.12/asyncio/base_futures.py +67 -0
  297. package/python/lib/python3.12/asyncio/base_subprocess.py +285 -0
  298. package/python/lib/python3.12/asyncio/base_tasks.py +94 -0
  299. package/python/lib/python3.12/asyncio/constants.py +41 -0
  300. package/python/lib/python3.12/asyncio/coroutines.py +109 -0
  301. package/python/lib/python3.12/asyncio/events.py +868 -0
  302. package/python/lib/python3.12/asyncio/exceptions.py +62 -0
  303. package/python/lib/python3.12/asyncio/format_helpers.py +76 -0
  304. package/python/lib/python3.12/asyncio/futures.py +430 -0
  305. package/python/lib/python3.12/asyncio/locks.py +586 -0
  306. package/python/lib/python3.12/asyncio/log.py +7 -0
  307. package/python/lib/python3.12/asyncio/mixins.py +21 -0
  308. package/python/lib/python3.12/asyncio/proactor_events.py +897 -0
  309. package/python/lib/python3.12/asyncio/protocols.py +216 -0
  310. package/python/lib/python3.12/asyncio/queues.py +244 -0
  311. package/python/lib/python3.12/asyncio/runners.py +216 -0
  312. package/python/lib/python3.12/asyncio/selector_events.py +1324 -0
  313. package/python/lib/python3.12/asyncio/sslproto.py +929 -0
  314. package/python/lib/python3.12/asyncio/staggered.py +174 -0
  315. package/python/lib/python3.12/asyncio/streams.py +770 -0
  316. package/python/lib/python3.12/asyncio/subprocess.py +229 -0
  317. package/python/lib/python3.12/asyncio/taskgroups.py +268 -0
  318. package/python/lib/python3.12/asyncio/tasks.py +1065 -0
  319. package/python/lib/python3.12/asyncio/threads.py +25 -0
  320. package/python/lib/python3.12/asyncio/timeouts.py +168 -0
  321. package/python/lib/python3.12/asyncio/transports.py +335 -0
  322. package/python/lib/python3.12/asyncio/trsock.py +98 -0
  323. package/python/lib/python3.12/asyncio/unix_events.py +1500 -0
  324. package/python/lib/python3.12/asyncio/windows_events.py +901 -0
  325. package/python/lib/python3.12/asyncio/windows_utils.py +173 -0
  326. package/python/lib/python3.12/base64.py +586 -0
  327. package/python/lib/python3.12/bdb.py +920 -0
  328. package/python/lib/python3.12/bisect.py +118 -0
  329. package/python/lib/python3.12/bz2.py +344 -0
  330. package/python/lib/python3.12/cProfile.py +195 -0
  331. package/python/lib/python3.12/calendar.py +808 -0
  332. package/python/lib/python3.12/cgi.py +1014 -0
  333. package/python/lib/python3.12/cgitb.py +332 -0
  334. package/python/lib/python3.12/chunk.py +173 -0
  335. package/python/lib/python3.12/cmd.py +401 -0
  336. package/python/lib/python3.12/code.py +324 -0
  337. package/python/lib/python3.12/codecs.py +1129 -0
  338. package/python/lib/python3.12/codeop.py +161 -0
  339. package/python/lib/python3.12/collections/__init__.py +1592 -0
  340. package/python/lib/python3.12/collections/__pycache__/__init__.cpython-312.pyc +0 -0
  341. package/python/lib/python3.12/collections/__pycache__/abc.cpython-312.pyc +0 -0
  342. package/python/lib/python3.12/collections/abc.py +3 -0
  343. package/python/lib/python3.12/colorsys.py +166 -0
  344. package/python/lib/python3.12/compileall.py +469 -0
  345. package/python/lib/python3.12/concurrent/__init__.py +1 -0
  346. package/python/lib/python3.12/concurrent/futures/__init__.py +54 -0
  347. package/python/lib/python3.12/concurrent/futures/_base.py +654 -0
  348. package/python/lib/python3.12/concurrent/futures/process.py +876 -0
  349. package/python/lib/python3.12/concurrent/futures/thread.py +240 -0
  350. package/python/lib/python3.12/config-3.12-darwin/Makefile +3224 -0
  351. package/python/lib/python3.12/config-3.12-darwin/Setup +303 -0
  352. package/python/lib/python3.12/config-3.12-darwin/Setup.bootstrap +36 -0
  353. package/python/lib/python3.12/config-3.12-darwin/Setup.local +90 -0
  354. package/python/lib/python3.12/config-3.12-darwin/Setup.stdlib +183 -0
  355. package/python/lib/python3.12/config-3.12-darwin/config.c +246 -0
  356. package/python/lib/python3.12/config-3.12-darwin/config.c.in +71 -0
  357. package/python/lib/python3.12/config-3.12-darwin/install-sh +541 -0
  358. package/python/lib/python3.12/config-3.12-darwin/makesetup +353 -0
  359. package/python/lib/python3.12/config-3.12-darwin/python-config.py +76 -0
  360. package/python/lib/python3.12/config-3.12-darwin/python.o +0 -0
  361. package/python/lib/python3.12/configparser.py +1333 -0
  362. package/python/lib/python3.12/contextlib.py +800 -0
  363. package/python/lib/python3.12/contextvars.py +4 -0
  364. package/python/lib/python3.12/copy.py +292 -0
  365. package/python/lib/python3.12/copyreg.py +217 -0
  366. package/python/lib/python3.12/crypt.py +124 -0
  367. package/python/lib/python3.12/csv.py +451 -0
  368. package/python/lib/python3.12/ctypes/__init__.py +582 -0
  369. package/python/lib/python3.12/ctypes/_aix.py +327 -0
  370. package/python/lib/python3.12/ctypes/_endian.py +78 -0
  371. package/python/lib/python3.12/ctypes/macholib/README.ctypes +7 -0
  372. package/python/lib/python3.12/ctypes/macholib/__init__.py +9 -0
  373. package/python/lib/python3.12/ctypes/macholib/dyld.py +165 -0
  374. package/python/lib/python3.12/ctypes/macholib/dylib.py +42 -0
  375. package/python/lib/python3.12/ctypes/macholib/fetch_macholib +2 -0
  376. package/python/lib/python3.12/ctypes/macholib/fetch_macholib.bat +1 -0
  377. package/python/lib/python3.12/ctypes/macholib/framework.py +42 -0
  378. package/python/lib/python3.12/ctypes/util.py +379 -0
  379. package/python/lib/python3.12/ctypes/wintypes.py +202 -0
  380. package/python/lib/python3.12/curses/__init__.py +101 -0
  381. package/python/lib/python3.12/curses/ascii.py +99 -0
  382. package/python/lib/python3.12/curses/has_key.py +192 -0
  383. package/python/lib/python3.12/curses/panel.py +6 -0
  384. package/python/lib/python3.12/curses/textpad.py +204 -0
  385. package/python/lib/python3.12/dataclasses.py +1588 -0
  386. package/python/lib/python3.12/datetime.py +9 -0
  387. package/python/lib/python3.12/dbm/__init__.py +190 -0
  388. package/python/lib/python3.12/dbm/dumb.py +317 -0
  389. package/python/lib/python3.12/dbm/gnu.py +3 -0
  390. package/python/lib/python3.12/dbm/ndbm.py +3 -0
  391. package/python/lib/python3.12/decimal.py +108 -0
  392. package/python/lib/python3.12/difflib.py +2056 -0
  393. package/python/lib/python3.12/dis.py +805 -0
  394. package/python/lib/python3.12/doctest.py +2845 -0
  395. package/python/lib/python3.12/email/__init__.py +61 -0
  396. package/python/lib/python3.12/email/__pycache__/__init__.cpython-312.pyc +0 -0
  397. package/python/lib/python3.12/email/__pycache__/_encoded_words.cpython-312.pyc +0 -0
  398. package/python/lib/python3.12/email/__pycache__/_parseaddr.cpython-312.pyc +0 -0
  399. package/python/lib/python3.12/email/__pycache__/_policybase.cpython-312.pyc +0 -0
  400. package/python/lib/python3.12/email/__pycache__/base64mime.cpython-312.pyc +0 -0
  401. package/python/lib/python3.12/email/__pycache__/charset.cpython-312.pyc +0 -0
  402. package/python/lib/python3.12/email/__pycache__/encoders.cpython-312.pyc +0 -0
  403. package/python/lib/python3.12/email/__pycache__/errors.cpython-312.pyc +0 -0
  404. package/python/lib/python3.12/email/__pycache__/feedparser.cpython-312.pyc +0 -0
  405. package/python/lib/python3.12/email/__pycache__/header.cpython-312.pyc +0 -0
  406. package/python/lib/python3.12/email/__pycache__/iterators.cpython-312.pyc +0 -0
  407. package/python/lib/python3.12/email/__pycache__/message.cpython-312.pyc +0 -0
  408. package/python/lib/python3.12/email/__pycache__/parser.cpython-312.pyc +0 -0
  409. package/python/lib/python3.12/email/__pycache__/quoprimime.cpython-312.pyc +0 -0
  410. package/python/lib/python3.12/email/__pycache__/utils.cpython-312.pyc +0 -0
  411. package/python/lib/python3.12/email/_encoded_words.py +233 -0
  412. package/python/lib/python3.12/email/_header_value_parser.py +3108 -0
  413. package/python/lib/python3.12/email/_parseaddr.py +557 -0
  414. package/python/lib/python3.12/email/_policybase.py +382 -0
  415. package/python/lib/python3.12/email/architecture.rst +216 -0
  416. package/python/lib/python3.12/email/base64mime.py +115 -0
  417. package/python/lib/python3.12/email/charset.py +398 -0
  418. package/python/lib/python3.12/email/contentmanager.py +251 -0
  419. package/python/lib/python3.12/email/encoders.py +65 -0
  420. package/python/lib/python3.12/email/errors.py +117 -0
  421. package/python/lib/python3.12/email/feedparser.py +534 -0
  422. package/python/lib/python3.12/email/generator.py +530 -0
  423. package/python/lib/python3.12/email/header.py +573 -0
  424. package/python/lib/python3.12/email/headerregistry.py +604 -0
  425. package/python/lib/python3.12/email/iterators.py +68 -0
  426. package/python/lib/python3.12/email/message.py +1215 -0
  427. package/python/lib/python3.12/email/mime/__init__.py +0 -0
  428. package/python/lib/python3.12/email/mime/application.py +37 -0
  429. package/python/lib/python3.12/email/mime/audio.py +100 -0
  430. package/python/lib/python3.12/email/mime/base.py +29 -0
  431. package/python/lib/python3.12/email/mime/image.py +152 -0
  432. package/python/lib/python3.12/email/mime/message.py +33 -0
  433. package/python/lib/python3.12/email/mime/multipart.py +47 -0
  434. package/python/lib/python3.12/email/mime/nonmultipart.py +21 -0
  435. package/python/lib/python3.12/email/mime/text.py +40 -0
  436. package/python/lib/python3.12/email/parser.py +127 -0
  437. package/python/lib/python3.12/email/policy.py +232 -0
  438. package/python/lib/python3.12/email/quoprimime.py +300 -0
  439. package/python/lib/python3.12/email/utils.py +486 -0
  440. package/python/lib/python3.12/encodings/__init__.py +174 -0
  441. package/python/lib/python3.12/encodings/__pycache__/__init__.cpython-312.pyc +0 -0
  442. package/python/lib/python3.12/encodings/__pycache__/aliases.cpython-312.pyc +0 -0
  443. package/python/lib/python3.12/encodings/__pycache__/utf_8.cpython-312.pyc +0 -0
  444. package/python/lib/python3.12/encodings/aliases.py +551 -0
  445. package/python/lib/python3.12/encodings/ascii.py +50 -0
  446. package/python/lib/python3.12/encodings/base64_codec.py +55 -0
  447. package/python/lib/python3.12/encodings/big5.py +39 -0
  448. package/python/lib/python3.12/encodings/big5hkscs.py +39 -0
  449. package/python/lib/python3.12/encodings/bz2_codec.py +78 -0
  450. package/python/lib/python3.12/encodings/charmap.py +69 -0
  451. package/python/lib/python3.12/encodings/cp037.py +307 -0
  452. package/python/lib/python3.12/encodings/cp1006.py +307 -0
  453. package/python/lib/python3.12/encodings/cp1026.py +307 -0
  454. package/python/lib/python3.12/encodings/cp1125.py +698 -0
  455. package/python/lib/python3.12/encodings/cp1140.py +307 -0
  456. package/python/lib/python3.12/encodings/cp1250.py +307 -0
  457. package/python/lib/python3.12/encodings/cp1251.py +307 -0
  458. package/python/lib/python3.12/encodings/cp1252.py +307 -0
  459. package/python/lib/python3.12/encodings/cp1253.py +307 -0
  460. package/python/lib/python3.12/encodings/cp1254.py +307 -0
  461. package/python/lib/python3.12/encodings/cp1255.py +307 -0
  462. package/python/lib/python3.12/encodings/cp1256.py +307 -0
  463. package/python/lib/python3.12/encodings/cp1257.py +307 -0
  464. package/python/lib/python3.12/encodings/cp1258.py +307 -0
  465. package/python/lib/python3.12/encodings/cp273.py +307 -0
  466. package/python/lib/python3.12/encodings/cp424.py +307 -0
  467. package/python/lib/python3.12/encodings/cp437.py +698 -0
  468. package/python/lib/python3.12/encodings/cp500.py +307 -0
  469. package/python/lib/python3.12/encodings/cp720.py +309 -0
  470. package/python/lib/python3.12/encodings/cp737.py +698 -0
  471. package/python/lib/python3.12/encodings/cp775.py +697 -0
  472. package/python/lib/python3.12/encodings/cp850.py +698 -0
  473. package/python/lib/python3.12/encodings/cp852.py +698 -0
  474. package/python/lib/python3.12/encodings/cp855.py +698 -0
  475. package/python/lib/python3.12/encodings/cp856.py +307 -0
  476. package/python/lib/python3.12/encodings/cp857.py +694 -0
  477. package/python/lib/python3.12/encodings/cp858.py +698 -0
  478. package/python/lib/python3.12/encodings/cp860.py +698 -0
  479. package/python/lib/python3.12/encodings/cp861.py +698 -0
  480. package/python/lib/python3.12/encodings/cp862.py +698 -0
  481. package/python/lib/python3.12/encodings/cp863.py +698 -0
  482. package/python/lib/python3.12/encodings/cp864.py +690 -0
  483. package/python/lib/python3.12/encodings/cp865.py +698 -0
  484. package/python/lib/python3.12/encodings/cp866.py +698 -0
  485. package/python/lib/python3.12/encodings/cp869.py +689 -0
  486. package/python/lib/python3.12/encodings/cp874.py +307 -0
  487. package/python/lib/python3.12/encodings/cp875.py +307 -0
  488. package/python/lib/python3.12/encodings/cp932.py +39 -0
  489. package/python/lib/python3.12/encodings/cp949.py +39 -0
  490. package/python/lib/python3.12/encodings/cp950.py +39 -0
  491. package/python/lib/python3.12/encodings/euc_jis_2004.py +39 -0
  492. package/python/lib/python3.12/encodings/euc_jisx0213.py +39 -0
  493. package/python/lib/python3.12/encodings/euc_jp.py +39 -0
  494. package/python/lib/python3.12/encodings/euc_kr.py +39 -0
  495. package/python/lib/python3.12/encodings/gb18030.py +39 -0
  496. package/python/lib/python3.12/encodings/gb2312.py +39 -0
  497. package/python/lib/python3.12/encodings/gbk.py +39 -0
  498. package/python/lib/python3.12/encodings/hex_codec.py +55 -0
  499. package/python/lib/python3.12/encodings/hp_roman8.py +314 -0
  500. package/python/lib/python3.12/encodings/hz.py +39 -0
  501. package/python/lib/python3.12/encodings/idna.py +317 -0
  502. package/python/lib/python3.12/encodings/iso2022_jp.py +39 -0
  503. package/python/lib/python3.12/encodings/iso2022_jp_1.py +39 -0
  504. package/python/lib/python3.12/encodings/iso2022_jp_2.py +39 -0
  505. package/python/lib/python3.12/encodings/iso2022_jp_2004.py +39 -0
  506. package/python/lib/python3.12/encodings/iso2022_jp_3.py +39 -0
  507. package/python/lib/python3.12/encodings/iso2022_jp_ext.py +39 -0
  508. package/python/lib/python3.12/encodings/iso2022_kr.py +39 -0
  509. package/python/lib/python3.12/encodings/iso8859_1.py +307 -0
  510. package/python/lib/python3.12/encodings/iso8859_10.py +307 -0
  511. package/python/lib/python3.12/encodings/iso8859_11.py +307 -0
  512. package/python/lib/python3.12/encodings/iso8859_13.py +307 -0
  513. package/python/lib/python3.12/encodings/iso8859_14.py +307 -0
  514. package/python/lib/python3.12/encodings/iso8859_15.py +307 -0
  515. package/python/lib/python3.12/encodings/iso8859_16.py +307 -0
  516. package/python/lib/python3.12/encodings/iso8859_2.py +307 -0
  517. package/python/lib/python3.12/encodings/iso8859_3.py +307 -0
  518. package/python/lib/python3.12/encodings/iso8859_4.py +307 -0
  519. package/python/lib/python3.12/encodings/iso8859_5.py +307 -0
  520. package/python/lib/python3.12/encodings/iso8859_6.py +307 -0
  521. package/python/lib/python3.12/encodings/iso8859_7.py +307 -0
  522. package/python/lib/python3.12/encodings/iso8859_8.py +307 -0
  523. package/python/lib/python3.12/encodings/iso8859_9.py +307 -0
  524. package/python/lib/python3.12/encodings/johab.py +39 -0
  525. package/python/lib/python3.12/encodings/koi8_r.py +307 -0
  526. package/python/lib/python3.12/encodings/koi8_t.py +308 -0
  527. package/python/lib/python3.12/encodings/koi8_u.py +307 -0
  528. package/python/lib/python3.12/encodings/kz1048.py +307 -0
  529. package/python/lib/python3.12/encodings/latin_1.py +50 -0
  530. package/python/lib/python3.12/encodings/mac_arabic.py +698 -0
  531. package/python/lib/python3.12/encodings/mac_croatian.py +307 -0
  532. package/python/lib/python3.12/encodings/mac_cyrillic.py +307 -0
  533. package/python/lib/python3.12/encodings/mac_farsi.py +307 -0
  534. package/python/lib/python3.12/encodings/mac_greek.py +307 -0
  535. package/python/lib/python3.12/encodings/mac_iceland.py +307 -0
  536. package/python/lib/python3.12/encodings/mac_latin2.py +312 -0
  537. package/python/lib/python3.12/encodings/mac_roman.py +307 -0
  538. package/python/lib/python3.12/encodings/mac_romanian.py +307 -0
  539. package/python/lib/python3.12/encodings/mac_turkish.py +307 -0
  540. package/python/lib/python3.12/encodings/mbcs.py +47 -0
  541. package/python/lib/python3.12/encodings/oem.py +41 -0
  542. package/python/lib/python3.12/encodings/palmos.py +308 -0
  543. package/python/lib/python3.12/encodings/ptcp154.py +312 -0
  544. package/python/lib/python3.12/encodings/punycode.py +237 -0
  545. package/python/lib/python3.12/encodings/quopri_codec.py +56 -0
  546. package/python/lib/python3.12/encodings/raw_unicode_escape.py +46 -0
  547. package/python/lib/python3.12/encodings/rot_13.py +113 -0
  548. package/python/lib/python3.12/encodings/shift_jis.py +39 -0
  549. package/python/lib/python3.12/encodings/shift_jis_2004.py +39 -0
  550. package/python/lib/python3.12/encodings/shift_jisx0213.py +39 -0
  551. package/python/lib/python3.12/encodings/tis_620.py +307 -0
  552. package/python/lib/python3.12/encodings/undefined.py +49 -0
  553. package/python/lib/python3.12/encodings/unicode_escape.py +46 -0
  554. package/python/lib/python3.12/encodings/utf_16.py +155 -0
  555. package/python/lib/python3.12/encodings/utf_16_be.py +42 -0
  556. package/python/lib/python3.12/encodings/utf_16_le.py +42 -0
  557. package/python/lib/python3.12/encodings/utf_32.py +150 -0
  558. package/python/lib/python3.12/encodings/utf_32_be.py +37 -0
  559. package/python/lib/python3.12/encodings/utf_32_le.py +37 -0
  560. package/python/lib/python3.12/encodings/utf_7.py +38 -0
  561. package/python/lib/python3.12/encodings/utf_8.py +42 -0
  562. package/python/lib/python3.12/encodings/utf_8_sig.py +130 -0
  563. package/python/lib/python3.12/encodings/uu_codec.py +103 -0
  564. package/python/lib/python3.12/encodings/zlib_codec.py +77 -0
  565. package/python/lib/python3.12/ensurepip/__init__.py +291 -0
  566. package/python/lib/python3.12/ensurepip/__main__.py +5 -0
  567. package/python/lib/python3.12/ensurepip/_bundled/pip-25.0.1-py3-none-any.whl +0 -0
  568. package/python/lib/python3.12/ensurepip/_uninstall.py +31 -0
  569. package/python/lib/python3.12/enum.py +2108 -0
  570. package/python/lib/python3.12/filecmp.py +315 -0
  571. package/python/lib/python3.12/fileinput.py +442 -0
  572. package/python/lib/python3.12/fnmatch.py +185 -0
  573. package/python/lib/python3.12/fractions.py +990 -0
  574. package/python/lib/python3.12/ftplib.py +966 -0
  575. package/python/lib/python3.12/functools.py +1009 -0
  576. package/python/lib/python3.12/genericpath.py +176 -0
  577. package/python/lib/python3.12/getopt.py +215 -0
  578. package/python/lib/python3.12/getpass.py +185 -0
  579. package/python/lib/python3.12/gettext.py +646 -0
  580. package/python/lib/python3.12/glob.py +252 -0
  581. package/python/lib/python3.12/graphlib.py +250 -0
  582. package/python/lib/python3.12/gzip.py +711 -0
  583. package/python/lib/python3.12/hashlib.py +253 -0
  584. package/python/lib/python3.12/heapq.py +603 -0
  585. package/python/lib/python3.12/hmac.py +219 -0
  586. package/python/lib/python3.12/html/__init__.py +132 -0
  587. package/python/lib/python3.12/html/entities.py +2513 -0
  588. package/python/lib/python3.12/html/parser.py +535 -0
  589. package/python/lib/python3.12/http/__init__.py +200 -0
  590. package/python/lib/python3.12/http/__pycache__/__init__.cpython-312.pyc +0 -0
  591. package/python/lib/python3.12/http/__pycache__/client.cpython-312.pyc +0 -0
  592. package/python/lib/python3.12/http/client.py +1570 -0
  593. package/python/lib/python3.12/http/cookiejar.py +2121 -0
  594. package/python/lib/python3.12/http/cookies.py +615 -0
  595. package/python/lib/python3.12/http/server.py +1335 -0
  596. package/python/lib/python3.12/imaplib.py +1641 -0
  597. package/python/lib/python3.12/imghdr.py +180 -0
  598. package/python/lib/python3.12/importlib/__init__.py +138 -0
  599. package/python/lib/python3.12/importlib/_abc.py +39 -0
  600. package/python/lib/python3.12/importlib/_bootstrap.py +1551 -0
  601. package/python/lib/python3.12/importlib/_bootstrap_external.py +1749 -0
  602. package/python/lib/python3.12/importlib/abc.py +239 -0
  603. package/python/lib/python3.12/importlib/machinery.py +20 -0
  604. package/python/lib/python3.12/importlib/metadata/__init__.py +966 -0
  605. package/python/lib/python3.12/importlib/metadata/_adapters.py +89 -0
  606. package/python/lib/python3.12/importlib/metadata/_collections.py +30 -0
  607. package/python/lib/python3.12/importlib/metadata/_functools.py +104 -0
  608. package/python/lib/python3.12/importlib/metadata/_itertools.py +73 -0
  609. package/python/lib/python3.12/importlib/metadata/_meta.py +63 -0
  610. package/python/lib/python3.12/importlib/metadata/_text.py +99 -0
  611. package/python/lib/python3.12/importlib/readers.py +12 -0
  612. package/python/lib/python3.12/importlib/resources/__init__.py +38 -0
  613. package/python/lib/python3.12/importlib/resources/_adapters.py +168 -0
  614. package/python/lib/python3.12/importlib/resources/_common.py +208 -0
  615. package/python/lib/python3.12/importlib/resources/_itertools.py +38 -0
  616. package/python/lib/python3.12/importlib/resources/_legacy.py +98 -0
  617. package/python/lib/python3.12/importlib/resources/abc.py +173 -0
  618. package/python/lib/python3.12/importlib/resources/readers.py +146 -0
  619. package/python/lib/python3.12/importlib/resources/simple.py +106 -0
  620. package/python/lib/python3.12/importlib/simple.py +14 -0
  621. package/python/lib/python3.12/importlib/util.py +270 -0
  622. package/python/lib/python3.12/inspect.py +3433 -0
  623. package/python/lib/python3.12/io.py +99 -0
  624. package/python/lib/python3.12/ipaddress.py +2430 -0
  625. package/python/lib/python3.12/json/__init__.py +359 -0
  626. package/python/lib/python3.12/json/__pycache__/__init__.cpython-312.pyc +0 -0
  627. package/python/lib/python3.12/json/__pycache__/decoder.cpython-312.pyc +0 -0
  628. package/python/lib/python3.12/json/__pycache__/encoder.cpython-312.pyc +0 -0
  629. package/python/lib/python3.12/json/__pycache__/scanner.cpython-312.pyc +0 -0
  630. package/python/lib/python3.12/json/decoder.py +357 -0
  631. package/python/lib/python3.12/json/encoder.py +443 -0
  632. package/python/lib/python3.12/json/scanner.py +73 -0
  633. package/python/lib/python3.12/json/tool.py +85 -0
  634. package/python/lib/python3.12/keyword.py +64 -0
  635. package/python/lib/python3.12/lib-dynload/.empty +0 -0
  636. package/python/lib/python3.12/lib-dynload/_crypt.cpython-312-darwin.so +0 -0
  637. package/python/lib/python3.12/lib-dynload/_dbm.cpython-312-darwin.so +0 -0
  638. package/python/lib/python3.12/linecache.py +185 -0
  639. package/python/lib/python3.12/locale.py +1779 -0
  640. package/python/lib/python3.12/logging/__init__.py +2345 -0
  641. package/python/lib/python3.12/logging/config.py +1078 -0
  642. package/python/lib/python3.12/logging/handlers.py +1624 -0
  643. package/python/lib/python3.12/lzma.py +356 -0
  644. package/python/lib/python3.12/mailbox.py +2153 -0
  645. package/python/lib/python3.12/mailcap.py +302 -0
  646. package/python/lib/python3.12/mimetypes.py +656 -0
  647. package/python/lib/python3.12/modulefinder.py +666 -0
  648. package/python/lib/python3.12/multiprocessing/__init__.py +37 -0
  649. package/python/lib/python3.12/multiprocessing/connection.py +1178 -0
  650. package/python/lib/python3.12/multiprocessing/context.py +377 -0
  651. package/python/lib/python3.12/multiprocessing/dummy/__init__.py +126 -0
  652. package/python/lib/python3.12/multiprocessing/dummy/connection.py +75 -0
  653. package/python/lib/python3.12/multiprocessing/forkserver.py +350 -0
  654. package/python/lib/python3.12/multiprocessing/heap.py +337 -0
  655. package/python/lib/python3.12/multiprocessing/managers.py +1387 -0
  656. package/python/lib/python3.12/multiprocessing/pool.py +957 -0
  657. package/python/lib/python3.12/multiprocessing/popen_fork.py +83 -0
  658. package/python/lib/python3.12/multiprocessing/popen_forkserver.py +74 -0
  659. package/python/lib/python3.12/multiprocessing/popen_spawn_posix.py +72 -0
  660. package/python/lib/python3.12/multiprocessing/popen_spawn_win32.py +145 -0
  661. package/python/lib/python3.12/multiprocessing/process.py +439 -0
  662. package/python/lib/python3.12/multiprocessing/queues.py +401 -0
  663. package/python/lib/python3.12/multiprocessing/reduction.py +281 -0
  664. package/python/lib/python3.12/multiprocessing/resource_sharer.py +154 -0
  665. package/python/lib/python3.12/multiprocessing/resource_tracker.py +294 -0
  666. package/python/lib/python3.12/multiprocessing/shared_memory.py +534 -0
  667. package/python/lib/python3.12/multiprocessing/sharedctypes.py +240 -0
  668. package/python/lib/python3.12/multiprocessing/spawn.py +307 -0
  669. package/python/lib/python3.12/multiprocessing/synchronize.py +404 -0
  670. package/python/lib/python3.12/multiprocessing/util.py +494 -0
  671. package/python/lib/python3.12/netrc.py +192 -0
  672. package/python/lib/python3.12/nntplib.py +1093 -0
  673. package/python/lib/python3.12/ntpath.py +869 -0
  674. package/python/lib/python3.12/nturl2path.py +69 -0
  675. package/python/lib/python3.12/numbers.py +418 -0
  676. package/python/lib/python3.12/opcode.py +493 -0
  677. package/python/lib/python3.12/operator.py +467 -0
  678. package/python/lib/python3.12/optparse.py +1681 -0
  679. package/python/lib/python3.12/os.py +1159 -0
  680. package/python/lib/python3.12/pathlib.py +1435 -0
  681. package/python/lib/python3.12/pdb.py +1987 -0
  682. package/python/lib/python3.12/pickle.py +1866 -0
  683. package/python/lib/python3.12/pickletools.py +2904 -0
  684. package/python/lib/python3.12/pipes.py +250 -0
  685. package/python/lib/python3.12/pkgutil.py +529 -0
  686. package/python/lib/python3.12/platform.py +1359 -0
  687. package/python/lib/python3.12/plistlib.py +920 -0
  688. package/python/lib/python3.12/poplib.py +478 -0
  689. package/python/lib/python3.12/posixpath.py +577 -0
  690. package/python/lib/python3.12/pprint.py +658 -0
  691. package/python/lib/python3.12/profile.py +615 -0
  692. package/python/lib/python3.12/pstats.py +778 -0
  693. package/python/lib/python3.12/pty.py +211 -0
  694. package/python/lib/python3.12/py_compile.py +212 -0
  695. package/python/lib/python3.12/pyclbr.py +314 -0
  696. package/python/lib/python3.12/pydoc.py +2950 -0
  697. package/python/lib/python3.12/pydoc_data/__init__.py +0 -0
  698. package/python/lib/python3.12/pydoc_data/_pydoc.css +112 -0
  699. package/python/lib/python3.12/pydoc_data/topics.py +12500 -0
  700. package/python/lib/python3.12/queue.py +326 -0
  701. package/python/lib/python3.12/quopri.py +237 -0
  702. package/python/lib/python3.12/random.py +996 -0
  703. package/python/lib/python3.12/re/__init__.py +385 -0
  704. package/python/lib/python3.12/re/__pycache__/__init__.cpython-312.pyc +0 -0
  705. package/python/lib/python3.12/re/__pycache__/_casefix.cpython-312.pyc +0 -0
  706. package/python/lib/python3.12/re/__pycache__/_compiler.cpython-312.pyc +0 -0
  707. package/python/lib/python3.12/re/__pycache__/_constants.cpython-312.pyc +0 -0
  708. package/python/lib/python3.12/re/__pycache__/_parser.cpython-312.pyc +0 -0
  709. package/python/lib/python3.12/re/_casefix.py +106 -0
  710. package/python/lib/python3.12/re/_compiler.py +770 -0
  711. package/python/lib/python3.12/re/_constants.py +220 -0
  712. package/python/lib/python3.12/re/_parser.py +1080 -0
  713. package/python/lib/python3.12/reprlib.py +214 -0
  714. package/python/lib/python3.12/rlcompleter.py +219 -0
  715. package/python/lib/python3.12/runpy.py +319 -0
  716. package/python/lib/python3.12/sched.py +167 -0
  717. package/python/lib/python3.12/secrets.py +71 -0
  718. package/python/lib/python3.12/selectors.py +623 -0
  719. package/python/lib/python3.12/shelve.py +243 -0
  720. package/python/lib/python3.12/shlex.py +345 -0
  721. package/python/lib/python3.12/shutil.py +1566 -0
  722. package/python/lib/python3.12/signal.py +94 -0
  723. package/python/lib/python3.12/site-packages/README.txt +2 -0
  724. package/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
  725. package/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
  726. package/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
  727. package/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
  728. package/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
  729. package/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
  730. package/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
  731. package/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
  732. package/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +264 -0
  733. package/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1298 -0
  734. package/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
  735. package/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +212 -0
  736. package/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
  737. package/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
  738. package/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
  739. package/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
  740. package/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +472 -0
  741. package/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
  742. package/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
  743. package/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
  744. package/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
  745. package/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
  746. package/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
  747. package/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
  748. package/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +196 -0
  749. package/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
  750. package/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
  751. package/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
  752. package/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
  753. package/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
  754. package/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
  755. package/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +904 -0
  756. package/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +403 -0
  757. package/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
  758. package/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
  759. package/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
  760. package/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
  761. package/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
  762. package/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
  763. package/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
  764. package/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
  765. package/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
  766. package/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
  767. package/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
  768. package/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
  769. package/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
  770. package/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
  771. package/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1113 -0
  772. package/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
  773. package/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +438 -0
  774. package/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
  775. package/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
  776. package/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
  777. package/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
  778. package/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
  779. package/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
  780. package/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
  781. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  782. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  783. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +235 -0
  784. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
  785. package/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  786. package/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
  787. package/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +23 -0
  788. package/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +42 -0
  789. package/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
  790. package/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
  791. package/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
  792. package/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
  793. package/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +91 -0
  794. package/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +23 -0
  795. package/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +124 -0
  796. package/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +36 -0
  797. package/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
  798. package/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
  799. package/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
  800. package/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +570 -0
  801. package/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
  802. package/python/lib/python3.12/site-packages/pip/_internal/network/download.py +340 -0
  803. package/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
  804. package/python/lib/python3.12/site-packages/pip/_internal/network/session.py +537 -0
  805. package/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
  806. package/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  807. package/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  808. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  809. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  810. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  811. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  812. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  813. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  814. package/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
  815. package/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
  816. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  817. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +759 -0
  818. package/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +751 -0
  819. package/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
  820. package/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
  821. package/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +677 -0
  822. package/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
  823. package/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +86 -0
  824. package/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +622 -0
  825. package/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +838 -0
  826. package/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
  827. package/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
  828. package/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  829. package/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
  830. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  831. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  832. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  833. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +164 -0
  834. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +599 -0
  835. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +914 -0
  836. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  837. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +306 -0
  838. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  839. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
  840. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  841. package/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +246 -0
  842. package/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  843. package/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  844. package/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
  845. package/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
  846. package/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
  847. package/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  848. package/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
  849. package/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +139 -0
  850. package/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +92 -0
  851. package/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
  852. package/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  853. package/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +201 -0
  854. package/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
  855. package/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
  856. package/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
  857. package/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
  858. package/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
  859. package/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
  860. package/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +283 -0
  861. package/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
  862. package/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
  863. package/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
  864. package/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +381 -0
  865. package/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
  866. package/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
  867. package/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
  868. package/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
  869. package/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  870. package/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
  871. package/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  872. package/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
  873. package/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
  874. package/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
  875. package/python/lib/python3.12/site-packages/pip/_vendor/README.rst +178 -0
  876. package/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
  877. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  878. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
  879. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  880. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
  881. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  882. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  883. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  884. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  885. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  886. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
  887. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  888. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  889. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  890. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  891. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
  892. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  893. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  894. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4494 -0
  895. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
  896. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  897. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
  898. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  899. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  900. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
  901. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  902. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  903. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  904. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  905. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
  906. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  907. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  908. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  909. package/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
  910. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
  911. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
  912. package/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
  913. package/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  914. package/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
  915. package/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
  916. package/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
  917. package/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
  918. package/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
  919. package/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
  920. package/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
  921. package/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
  922. package/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  923. package/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
  924. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
  925. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  926. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  927. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  928. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  929. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
  930. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  931. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
  932. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  933. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
  934. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  935. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  936. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +393 -0
  937. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +33 -0
  938. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
  939. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/dependency_groups.py +302 -0
  940. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/direct_url.py +325 -0
  941. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/errors.py +94 -0
  942. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +186 -0
  943. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
  944. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +492 -0
  945. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +964 -0
  946. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  947. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +905 -0
  948. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +129 -0
  949. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1943 -0
  950. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +932 -0
  951. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +296 -0
  952. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +1231 -0
  953. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
  954. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  955. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
  956. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  957. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  958. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  959. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
  960. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
  961. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  962. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
  963. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
  964. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
  965. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
  966. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  967. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  968. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
  969. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
  970. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  971. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  972. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  973. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  974. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  975. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  976. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  977. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
  978. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  979. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  980. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  981. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  982. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  983. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
  984. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  985. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  986. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
  987. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  988. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
  989. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  990. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  991. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  992. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  993. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  994. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  995. package/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
  996. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +178 -0
  997. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
  998. package/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +51 -0
  999. package/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +697 -0
  1000. package/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
  1001. package/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
  1002. package/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +18 -0
  1003. package/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
  1004. package/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
  1005. package/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +152 -0
  1006. package/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +124 -0
  1007. package/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +34 -0
  1008. package/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1041 -0
  1009. package/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
  1010. package/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +834 -0
  1011. package/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  1012. package/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
  1013. package/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1083 -0
  1014. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
  1015. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  1016. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  1017. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  1018. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  1019. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  1020. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  1021. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  1022. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  1023. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  1024. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  1025. package/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
  1026. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
  1027. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
  1028. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  1029. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  1030. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  1031. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  1032. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
  1033. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  1034. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  1035. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  1036. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
  1037. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  1038. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  1039. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
  1040. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  1041. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  1042. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
  1043. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
  1044. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  1045. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
  1046. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  1047. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  1048. package/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
  1049. package/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
  1050. package/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
  1051. package/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
  1052. package/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
  1053. package/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
  1054. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
  1055. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  1056. package/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
  1057. package/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
  1058. package/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
  1059. package/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
  1060. package/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
  1061. package/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  1062. package/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  1063. package/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
  1064. package/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
  1065. package/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  1066. package/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
  1067. package/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  1068. package/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
  1069. package/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  1070. package/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
  1071. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
  1072. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
  1073. package/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
  1074. package/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
  1075. package/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
  1076. package/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
  1077. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
  1078. package/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
  1079. package/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
  1080. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  1081. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
  1082. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  1083. package/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
  1084. package/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
  1085. package/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  1086. package/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
  1087. package/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
  1088. package/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
  1089. package/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
  1090. package/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
  1091. package/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
  1092. package/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
  1093. package/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
  1094. package/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
  1095. package/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
  1096. package/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
  1097. package/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
  1098. package/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  1099. package/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
  1100. package/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
  1101. package/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
  1102. package/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
  1103. package/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
  1104. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
  1105. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  1106. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +788 -0
  1107. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
  1108. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
  1109. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
  1110. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
  1111. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  1112. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  1113. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  1114. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
  1115. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  1116. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
  1117. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  1118. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
  1119. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  1120. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  1121. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  1122. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1123. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +211 -0
  1124. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_base_connection.py +165 -0
  1125. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +487 -0
  1126. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_request_methods.py +278 -0
  1127. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +34 -0
  1128. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +1099 -0
  1129. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1178 -0
  1130. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1131. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/__init__.py +17 -0
  1132. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/connection.py +260 -0
  1133. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
  1134. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/fetch.py +726 -0
  1135. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/request.py +22 -0
  1136. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/response.py +277 -0
  1137. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +564 -0
  1138. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +228 -0
  1139. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +335 -0
  1140. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +341 -0
  1141. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +89 -0
  1142. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/__init__.py +53 -0
  1143. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/connection.py +356 -0
  1144. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/probe.py +87 -0
  1145. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +651 -0
  1146. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/py.typed +2 -0
  1147. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +1474 -0
  1148. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +42 -0
  1149. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +137 -0
  1150. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +43 -0
  1151. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +254 -0
  1152. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +101 -0
  1153. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +549 -0
  1154. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +527 -0
  1155. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  1156. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +271 -0
  1157. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +275 -0
  1158. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +469 -0
  1159. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/util.py +42 -0
  1160. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +124 -0
  1161. package/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +18 -0
  1162. package/python/lib/python3.12/site-packages/pip/py.typed +4 -0
  1163. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/INSTALLER +1 -0
  1164. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/METADATA +109 -0
  1165. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/RECORD +866 -0
  1166. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/REQUESTED +0 -0
  1167. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/WHEEL +4 -0
  1168. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/direct_url.json +1 -0
  1169. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/entry_points.txt +4 -0
  1170. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/AUTHORS.txt +868 -0
  1171. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/LICENSE.txt +20 -0
  1172. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  1173. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  1174. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
  1175. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  1176. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
  1177. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  1178. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  1179. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1180. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1181. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
  1182. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  1183. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  1184. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1185. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  1186. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  1187. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  1188. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  1189. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
  1190. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  1191. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1192. package/python/lib/python3.12/site.py +693 -0
  1193. package/python/lib/python3.12/smtplib.py +1109 -0
  1194. package/python/lib/python3.12/sndhdr.py +271 -0
  1195. package/python/lib/python3.12/socket.py +983 -0
  1196. package/python/lib/python3.12/socketserver.py +863 -0
  1197. package/python/lib/python3.12/sqlite3/__init__.py +70 -0
  1198. package/python/lib/python3.12/sqlite3/__main__.py +127 -0
  1199. package/python/lib/python3.12/sqlite3/__pycache__/__init__.cpython-312.pyc +0 -0
  1200. package/python/lib/python3.12/sqlite3/__pycache__/dbapi2.cpython-312.pyc +0 -0
  1201. package/python/lib/python3.12/sqlite3/dbapi2.py +108 -0
  1202. package/python/lib/python3.12/sqlite3/dump.py +89 -0
  1203. package/python/lib/python3.12/sre_compile.py +7 -0
  1204. package/python/lib/python3.12/sre_constants.py +7 -0
  1205. package/python/lib/python3.12/sre_parse.py +7 -0
  1206. package/python/lib/python3.12/ssl.py +1488 -0
  1207. package/python/lib/python3.12/stat.py +195 -0
  1208. package/python/lib/python3.12/statistics.py +1454 -0
  1209. package/python/lib/python3.12/string.py +309 -0
  1210. package/python/lib/python3.12/stringprep.py +272 -0
  1211. package/python/lib/python3.12/struct.py +15 -0
  1212. package/python/lib/python3.12/subprocess.py +2216 -0
  1213. package/python/lib/python3.12/sunau.py +533 -0
  1214. package/python/lib/python3.12/symtable.py +362 -0
  1215. package/python/lib/python3.12/sysconfig.py +894 -0
  1216. package/python/lib/python3.12/tabnanny.py +340 -0
  1217. package/python/lib/python3.12/tarfile.py +3031 -0
  1218. package/python/lib/python3.12/telnetlib.py +680 -0
  1219. package/python/lib/python3.12/tempfile.py +956 -0
  1220. package/python/lib/python3.12/textwrap.py +491 -0
  1221. package/python/lib/python3.12/this.py +28 -0
  1222. package/python/lib/python3.12/threading.py +1708 -0
  1223. package/python/lib/python3.12/timeit.py +381 -0
  1224. package/python/lib/python3.12/token.py +143 -0
  1225. package/python/lib/python3.12/tokenize.py +594 -0
  1226. package/python/lib/python3.12/tomllib/__init__.py +10 -0
  1227. package/python/lib/python3.12/tomllib/_parser.py +691 -0
  1228. package/python/lib/python3.12/tomllib/_re.py +107 -0
  1229. package/python/lib/python3.12/tomllib/_types.py +10 -0
  1230. package/python/lib/python3.12/trace.py +748 -0
  1231. package/python/lib/python3.12/traceback.py +1187 -0
  1232. package/python/lib/python3.12/tracemalloc.py +560 -0
  1233. package/python/lib/python3.12/tty.py +73 -0
  1234. package/python/lib/python3.12/turtle.py +4207 -0
  1235. package/python/lib/python3.12/types.py +333 -0
  1236. package/python/lib/python3.12/typing.py +3494 -0
  1237. package/python/lib/python3.12/unittest/__init__.py +85 -0
  1238. package/python/lib/python3.12/unittest/__main__.py +18 -0
  1239. package/python/lib/python3.12/unittest/_log.py +86 -0
  1240. package/python/lib/python3.12/unittest/async_case.py +143 -0
  1241. package/python/lib/python3.12/unittest/case.py +1456 -0
  1242. package/python/lib/python3.12/unittest/loader.py +497 -0
  1243. package/python/lib/python3.12/unittest/main.py +291 -0
  1244. package/python/lib/python3.12/unittest/mock.py +3054 -0
  1245. package/python/lib/python3.12/unittest/result.py +256 -0
  1246. package/python/lib/python3.12/unittest/runner.py +292 -0
  1247. package/python/lib/python3.12/unittest/signals.py +71 -0
  1248. package/python/lib/python3.12/unittest/suite.py +379 -0
  1249. package/python/lib/python3.12/unittest/util.py +170 -0
  1250. package/python/lib/python3.12/urllib/__init__.py +0 -0
  1251. package/python/lib/python3.12/urllib/__pycache__/__init__.cpython-312.pyc +0 -0
  1252. package/python/lib/python3.12/urllib/__pycache__/error.cpython-312.pyc +0 -0
  1253. package/python/lib/python3.12/urllib/__pycache__/parse.cpython-312.pyc +0 -0
  1254. package/python/lib/python3.12/urllib/__pycache__/request.cpython-312.pyc +0 -0
  1255. package/python/lib/python3.12/urllib/__pycache__/response.cpython-312.pyc +0 -0
  1256. package/python/lib/python3.12/urllib/error.py +74 -0
  1257. package/python/lib/python3.12/urllib/parse.py +1262 -0
  1258. package/python/lib/python3.12/urllib/request.py +2816 -0
  1259. package/python/lib/python3.12/urllib/response.py +84 -0
  1260. package/python/lib/python3.12/urllib/robotparser.py +275 -0
  1261. package/python/lib/python3.12/uu.py +216 -0
  1262. package/python/lib/python3.12/uuid.py +793 -0
  1263. package/python/lib/python3.12/venv/__init__.py +608 -0
  1264. package/python/lib/python3.12/venv/__main__.py +10 -0
  1265. package/python/lib/python3.12/venv/scripts/common/Activate.ps1 +247 -0
  1266. package/python/lib/python3.12/venv/scripts/common/activate +76 -0
  1267. package/python/lib/python3.12/venv/scripts/posix/activate.csh +27 -0
  1268. package/python/lib/python3.12/venv/scripts/posix/activate.fish +69 -0
  1269. package/python/lib/python3.12/warnings.py +598 -0
  1270. package/python/lib/python3.12/wave.py +653 -0
  1271. package/python/lib/python3.12/weakref.py +674 -0
  1272. package/python/lib/python3.12/webbrowser.py +689 -0
  1273. package/python/lib/python3.12/wsgiref/__init__.py +25 -0
  1274. package/python/lib/python3.12/wsgiref/handlers.py +573 -0
  1275. package/python/lib/python3.12/wsgiref/headers.py +192 -0
  1276. package/python/lib/python3.12/wsgiref/simple_server.py +165 -0
  1277. package/python/lib/python3.12/wsgiref/types.py +54 -0
  1278. package/python/lib/python3.12/wsgiref/util.py +159 -0
  1279. package/python/lib/python3.12/wsgiref/validate.py +438 -0
  1280. package/python/lib/python3.12/xdrlib.py +242 -0
  1281. package/python/lib/python3.12/xml/__init__.py +20 -0
  1282. package/python/lib/python3.12/xml/__pycache__/__init__.cpython-312.pyc +0 -0
  1283. package/python/lib/python3.12/xml/dom/NodeFilter.py +27 -0
  1284. package/python/lib/python3.12/xml/dom/__init__.py +140 -0
  1285. package/python/lib/python3.12/xml/dom/domreg.py +99 -0
  1286. package/python/lib/python3.12/xml/dom/expatbuilder.py +962 -0
  1287. package/python/lib/python3.12/xml/dom/minicompat.py +109 -0
  1288. package/python/lib/python3.12/xml/dom/minidom.py +2008 -0
  1289. package/python/lib/python3.12/xml/dom/pulldom.py +336 -0
  1290. package/python/lib/python3.12/xml/dom/xmlbuilder.py +389 -0
  1291. package/python/lib/python3.12/xml/etree/ElementInclude.py +186 -0
  1292. package/python/lib/python3.12/xml/etree/ElementPath.py +423 -0
  1293. package/python/lib/python3.12/xml/etree/ElementTree.py +2085 -0
  1294. package/python/lib/python3.12/xml/etree/__init__.py +33 -0
  1295. package/python/lib/python3.12/xml/etree/cElementTree.py +3 -0
  1296. package/python/lib/python3.12/xml/parsers/__init__.py +8 -0
  1297. package/python/lib/python3.12/xml/parsers/__pycache__/__init__.cpython-312.pyc +0 -0
  1298. package/python/lib/python3.12/xml/parsers/__pycache__/expat.cpython-312.pyc +0 -0
  1299. package/python/lib/python3.12/xml/parsers/expat.py +8 -0
  1300. package/python/lib/python3.12/xml/sax/__init__.py +94 -0
  1301. package/python/lib/python3.12/xml/sax/_exceptions.py +127 -0
  1302. package/python/lib/python3.12/xml/sax/expatreader.py +454 -0
  1303. package/python/lib/python3.12/xml/sax/handler.py +387 -0
  1304. package/python/lib/python3.12/xml/sax/saxutils.py +369 -0
  1305. package/python/lib/python3.12/xml/sax/xmlreader.py +378 -0
  1306. package/python/lib/python3.12/xmlrpc/__init__.py +1 -0
  1307. package/python/lib/python3.12/xmlrpc/client.py +1529 -0
  1308. package/python/lib/python3.12/xmlrpc/server.py +1002 -0
  1309. package/python/lib/python3.12/zipapp.py +206 -0
  1310. package/python/lib/python3.12/zipfile/__init__.py +2340 -0
  1311. package/python/lib/python3.12/zipfile/__main__.py +4 -0
  1312. package/python/lib/python3.12/zipfile/_path/__init__.py +412 -0
  1313. package/python/lib/python3.12/zipfile/_path/glob.py +53 -0
  1314. package/python/lib/python3.12/zipimport.py +712 -0
  1315. package/python/lib/python3.12/zoneinfo/__init__.py +31 -0
  1316. package/python/lib/python3.12/zoneinfo/_common.py +164 -0
  1317. package/python/lib/python3.12/zoneinfo/_tzpath.py +181 -0
  1318. package/python/lib/python3.12/zoneinfo/_zoneinfo.py +772 -0
@@ -0,0 +1,2698 @@
1
+ """
2
+ Python implementation of the io module.
3
+ """
4
+
5
+ import os
6
+ import abc
7
+ import codecs
8
+ import errno
9
+ import stat
10
+ import sys
11
+ # Import _thread instead of threading to reduce startup cost
12
+ from _thread import allocate_lock as Lock
13
+ if sys.platform in {'win32', 'cygwin'}:
14
+ from msvcrt import setmode as _setmode
15
+ else:
16
+ _setmode = None
17
+
18
+ import io
19
+ from io import (__all__, SEEK_SET, SEEK_CUR, SEEK_END)
20
+
21
+ valid_seek_flags = {0, 1, 2} # Hardwired values
22
+ if hasattr(os, 'SEEK_HOLE') :
23
+ valid_seek_flags.add(os.SEEK_HOLE)
24
+ valid_seek_flags.add(os.SEEK_DATA)
25
+
26
+ # open() uses st_blksize whenever we can
27
+ DEFAULT_BUFFER_SIZE = 8 * 1024 # bytes
28
+
29
+ # NOTE: Base classes defined here are registered with the "official" ABCs
30
+ # defined in io.py. We don't use real inheritance though, because we don't want
31
+ # to inherit the C implementations.
32
+
33
+ # Rebind for compatibility
34
+ BlockingIOError = BlockingIOError
35
+
36
+ # Does io.IOBase finalizer log the exception if the close() method fails?
37
+ # The exception is ignored silently by default in release build.
38
+ _IOBASE_EMITS_UNRAISABLE = (hasattr(sys, "gettotalrefcount") or sys.flags.dev_mode)
39
+ # Does open() check its 'errors' argument?
40
+ _CHECK_ERRORS = _IOBASE_EMITS_UNRAISABLE
41
+
42
+
43
+ def text_encoding(encoding, stacklevel=2):
44
+ """
45
+ A helper function to choose the text encoding.
46
+
47
+ When encoding is not None, this function returns it.
48
+ Otherwise, this function returns the default text encoding
49
+ (i.e. "locale" or "utf-8" depends on UTF-8 mode).
50
+
51
+ This function emits an EncodingWarning if *encoding* is None and
52
+ sys.flags.warn_default_encoding is true.
53
+
54
+ This can be used in APIs with an encoding=None parameter
55
+ that pass it to TextIOWrapper or open.
56
+ However, please consider using encoding="utf-8" for new APIs.
57
+ """
58
+ if encoding is None:
59
+ if sys.flags.utf8_mode:
60
+ encoding = "utf-8"
61
+ else:
62
+ encoding = "locale"
63
+ if sys.flags.warn_default_encoding:
64
+ import warnings
65
+ warnings.warn("'encoding' argument not specified.",
66
+ EncodingWarning, stacklevel + 1)
67
+ return encoding
68
+
69
+
70
+ # Wrapper for builtins.open
71
+ #
72
+ # Trick so that open() won't become a bound method when stored
73
+ # as a class variable (as dbm.dumb does).
74
+ #
75
+ # See init_set_builtins_open() in Python/pylifecycle.c.
76
+ @staticmethod
77
+ def open(file, mode="r", buffering=-1, encoding=None, errors=None,
78
+ newline=None, closefd=True, opener=None):
79
+
80
+ r"""Open file and return a stream. Raise OSError upon failure.
81
+
82
+ file is either a text or byte string giving the name (and the path
83
+ if the file isn't in the current working directory) of the file to
84
+ be opened or an integer file descriptor of the file to be
85
+ wrapped. (If a file descriptor is given, it is closed when the
86
+ returned I/O object is closed, unless closefd is set to False.)
87
+
88
+ mode is an optional string that specifies the mode in which the file is
89
+ opened. It defaults to 'r' which means open for reading in text mode. Other
90
+ common values are 'w' for writing (truncating the file if it already
91
+ exists), 'x' for exclusive creation of a new file, and 'a' for appending
92
+ (which on some Unix systems, means that all writes append to the end of the
93
+ file regardless of the current seek position). In text mode, if encoding is
94
+ not specified the encoding used is platform dependent. (For reading and
95
+ writing raw bytes use binary mode and leave encoding unspecified.) The
96
+ available modes are:
97
+
98
+ ========= ===============================================================
99
+ Character Meaning
100
+ --------- ---------------------------------------------------------------
101
+ 'r' open for reading (default)
102
+ 'w' open for writing, truncating the file first
103
+ 'x' create a new file and open it for writing
104
+ 'a' open for writing, appending to the end of the file if it exists
105
+ 'b' binary mode
106
+ 't' text mode (default)
107
+ '+' open a disk file for updating (reading and writing)
108
+ ========= ===============================================================
109
+
110
+ The default mode is 'rt' (open for reading text). For binary random
111
+ access, the mode 'w+b' opens and truncates the file to 0 bytes, while
112
+ 'r+b' opens the file without truncation. The 'x' mode implies 'w' and
113
+ raises an `FileExistsError` if the file already exists.
114
+
115
+ Python distinguishes between files opened in binary and text modes,
116
+ even when the underlying operating system doesn't. Files opened in
117
+ binary mode (appending 'b' to the mode argument) return contents as
118
+ bytes objects without any decoding. In text mode (the default, or when
119
+ 't' is appended to the mode argument), the contents of the file are
120
+ returned as strings, the bytes having been first decoded using a
121
+ platform-dependent encoding or using the specified encoding if given.
122
+
123
+ buffering is an optional integer used to set the buffering policy.
124
+ Pass 0 to switch buffering off (only allowed in binary mode), 1 to select
125
+ line buffering (only usable in text mode), and an integer > 1 to indicate
126
+ the size of a fixed-size chunk buffer. When no buffering argument is
127
+ given, the default buffering policy works as follows:
128
+
129
+ * Binary files are buffered in fixed-size chunks; the size of the buffer
130
+ is chosen using a heuristic trying to determine the underlying device's
131
+ "block size" and falling back on `io.DEFAULT_BUFFER_SIZE`.
132
+ On many systems, the buffer will typically be 4096 or 8192 bytes long.
133
+
134
+ * "Interactive" text files (files for which isatty() returns True)
135
+ use line buffering. Other text files use the policy described above
136
+ for binary files.
137
+
138
+ encoding is the str name of the encoding used to decode or encode the
139
+ file. This should only be used in text mode. The default encoding is
140
+ platform dependent, but any encoding supported by Python can be
141
+ passed. See the codecs module for the list of supported encodings.
142
+
143
+ errors is an optional string that specifies how encoding errors are to
144
+ be handled---this argument should not be used in binary mode. Pass
145
+ 'strict' to raise a ValueError exception if there is an encoding error
146
+ (the default of None has the same effect), or pass 'ignore' to ignore
147
+ errors. (Note that ignoring encoding errors can lead to data loss.)
148
+ See the documentation for codecs.register for a list of the permitted
149
+ encoding error strings.
150
+
151
+ newline is a string controlling how universal newlines works (it only
152
+ applies to text mode). It can be None, '', '\n', '\r', and '\r\n'. It works
153
+ as follows:
154
+
155
+ * On input, if newline is None, universal newlines mode is
156
+ enabled. Lines in the input can end in '\n', '\r', or '\r\n', and
157
+ these are translated into '\n' before being returned to the
158
+ caller. If it is '', universal newline mode is enabled, but line
159
+ endings are returned to the caller untranslated. If it has any of
160
+ the other legal values, input lines are only terminated by the given
161
+ string, and the line ending is returned to the caller untranslated.
162
+
163
+ * On output, if newline is None, any '\n' characters written are
164
+ translated to the system default line separator, os.linesep. If
165
+ newline is '', no translation takes place. If newline is any of the
166
+ other legal values, any '\n' characters written are translated to
167
+ the given string.
168
+
169
+ closedfd is a bool. If closefd is False, the underlying file descriptor will
170
+ be kept open when the file is closed. This does not work when a file name is
171
+ given and must be True in that case.
172
+
173
+ The newly created file is non-inheritable.
174
+
175
+ A custom opener can be used by passing a callable as *opener*. The
176
+ underlying file descriptor for the file object is then obtained by calling
177
+ *opener* with (*file*, *flags*). *opener* must return an open file
178
+ descriptor (passing os.open as *opener* results in functionality similar to
179
+ passing None).
180
+
181
+ open() returns a file object whose type depends on the mode, and
182
+ through which the standard file operations such as reading and writing
183
+ are performed. When open() is used to open a file in a text mode ('w',
184
+ 'r', 'wt', 'rt', etc.), it returns a TextIOWrapper. When used to open
185
+ a file in a binary mode, the returned class varies: in read binary
186
+ mode, it returns a BufferedReader; in write binary and append binary
187
+ modes, it returns a BufferedWriter, and in read/write mode, it returns
188
+ a BufferedRandom.
189
+
190
+ It is also possible to use a string or bytearray as a file for both
191
+ reading and writing. For strings StringIO can be used like a file
192
+ opened in a text mode, and for bytes a BytesIO can be used like a file
193
+ opened in a binary mode.
194
+ """
195
+ if not isinstance(file, int):
196
+ file = os.fspath(file)
197
+ if not isinstance(file, (str, bytes, int)):
198
+ raise TypeError("invalid file: %r" % file)
199
+ if not isinstance(mode, str):
200
+ raise TypeError("invalid mode: %r" % mode)
201
+ if not isinstance(buffering, int):
202
+ raise TypeError("invalid buffering: %r" % buffering)
203
+ if encoding is not None and not isinstance(encoding, str):
204
+ raise TypeError("invalid encoding: %r" % encoding)
205
+ if errors is not None and not isinstance(errors, str):
206
+ raise TypeError("invalid errors: %r" % errors)
207
+ modes = set(mode)
208
+ if modes - set("axrwb+t") or len(mode) > len(modes):
209
+ raise ValueError("invalid mode: %r" % mode)
210
+ creating = "x" in modes
211
+ reading = "r" in modes
212
+ writing = "w" in modes
213
+ appending = "a" in modes
214
+ updating = "+" in modes
215
+ text = "t" in modes
216
+ binary = "b" in modes
217
+ if text and binary:
218
+ raise ValueError("can't have text and binary mode at once")
219
+ if creating + reading + writing + appending > 1:
220
+ raise ValueError("can't have read/write/append mode at once")
221
+ if not (creating or reading or writing or appending):
222
+ raise ValueError("must have exactly one of read/write/append mode")
223
+ if binary and encoding is not None:
224
+ raise ValueError("binary mode doesn't take an encoding argument")
225
+ if binary and errors is not None:
226
+ raise ValueError("binary mode doesn't take an errors argument")
227
+ if binary and newline is not None:
228
+ raise ValueError("binary mode doesn't take a newline argument")
229
+ if binary and buffering == 1:
230
+ import warnings
231
+ warnings.warn("line buffering (buffering=1) isn't supported in binary "
232
+ "mode, the default buffer size will be used",
233
+ RuntimeWarning, 2)
234
+ raw = FileIO(file,
235
+ (creating and "x" or "") +
236
+ (reading and "r" or "") +
237
+ (writing and "w" or "") +
238
+ (appending and "a" or "") +
239
+ (updating and "+" or ""),
240
+ closefd, opener=opener)
241
+ result = raw
242
+ try:
243
+ line_buffering = False
244
+ if buffering == 1 or buffering < 0 and raw.isatty():
245
+ buffering = -1
246
+ line_buffering = True
247
+ if buffering < 0:
248
+ buffering = DEFAULT_BUFFER_SIZE
249
+ try:
250
+ bs = os.fstat(raw.fileno()).st_blksize
251
+ except (OSError, AttributeError):
252
+ pass
253
+ else:
254
+ if bs > 1:
255
+ buffering = bs
256
+ if buffering < 0:
257
+ raise ValueError("invalid buffering size")
258
+ if buffering == 0:
259
+ if binary:
260
+ return result
261
+ raise ValueError("can't have unbuffered text I/O")
262
+ if updating:
263
+ buffer = BufferedRandom(raw, buffering)
264
+ elif creating or writing or appending:
265
+ buffer = BufferedWriter(raw, buffering)
266
+ elif reading:
267
+ buffer = BufferedReader(raw, buffering)
268
+ else:
269
+ raise ValueError("unknown mode: %r" % mode)
270
+ result = buffer
271
+ if binary:
272
+ return result
273
+ encoding = text_encoding(encoding)
274
+ text = TextIOWrapper(buffer, encoding, errors, newline, line_buffering)
275
+ result = text
276
+ text.mode = mode
277
+ return result
278
+ except:
279
+ result.close()
280
+ raise
281
+
282
+ # Define a default pure-Python implementation for open_code()
283
+ # that does not allow hooks. Warn on first use. Defined for tests.
284
+ def _open_code_with_warning(path):
285
+ """Opens the provided file with mode ``'rb'``. This function
286
+ should be used when the intent is to treat the contents as
287
+ executable code.
288
+
289
+ ``path`` should be an absolute path.
290
+
291
+ When supported by the runtime, this function can be hooked
292
+ in order to allow embedders more control over code files.
293
+ This functionality is not supported on the current runtime.
294
+ """
295
+ import warnings
296
+ warnings.warn("_pyio.open_code() may not be using hooks",
297
+ RuntimeWarning, 2)
298
+ return open(path, "rb")
299
+
300
+ try:
301
+ open_code = io.open_code
302
+ except AttributeError:
303
+ open_code = _open_code_with_warning
304
+
305
+
306
+ # In normal operation, both `UnsupportedOperation`s should be bound to the
307
+ # same object.
308
+ try:
309
+ UnsupportedOperation = io.UnsupportedOperation
310
+ except AttributeError:
311
+ class UnsupportedOperation(OSError, ValueError):
312
+ pass
313
+
314
+
315
+ class IOBase(metaclass=abc.ABCMeta):
316
+
317
+ """The abstract base class for all I/O classes.
318
+
319
+ This class provides dummy implementations for many methods that
320
+ derived classes can override selectively; the default implementations
321
+ represent a file that cannot be read, written or seeked.
322
+
323
+ Even though IOBase does not declare read or write because
324
+ their signatures will vary, implementations and clients should
325
+ consider those methods part of the interface. Also, implementations
326
+ may raise UnsupportedOperation when operations they do not support are
327
+ called.
328
+
329
+ The basic type used for binary data read from or written to a file is
330
+ bytes. Other bytes-like objects are accepted as method arguments too.
331
+ Text I/O classes work with str data.
332
+
333
+ Note that calling any method (even inquiries) on a closed stream is
334
+ undefined. Implementations may raise OSError in this case.
335
+
336
+ IOBase (and its subclasses) support the iterator protocol, meaning
337
+ that an IOBase object can be iterated over yielding the lines in a
338
+ stream.
339
+
340
+ IOBase also supports the :keyword:`with` statement. In this example,
341
+ fp is closed after the suite of the with statement is complete:
342
+
343
+ with open('spam.txt', 'r') as fp:
344
+ fp.write('Spam and eggs!')
345
+ """
346
+
347
+ ### Internal ###
348
+
349
+ def _unsupported(self, name):
350
+ """Internal: raise an OSError exception for unsupported operations."""
351
+ raise UnsupportedOperation("%s.%s() not supported" %
352
+ (self.__class__.__name__, name))
353
+
354
+ ### Positioning ###
355
+
356
+ def seek(self, pos, whence=0):
357
+ """Change stream position.
358
+
359
+ Change the stream position to byte offset pos. Argument pos is
360
+ interpreted relative to the position indicated by whence. Values
361
+ for whence are ints:
362
+
363
+ * 0 -- start of stream (the default); offset should be zero or positive
364
+ * 1 -- current stream position; offset may be negative
365
+ * 2 -- end of stream; offset is usually negative
366
+ Some operating systems / file systems could provide additional values.
367
+
368
+ Return an int indicating the new absolute position.
369
+ """
370
+ self._unsupported("seek")
371
+
372
+ def tell(self):
373
+ """Return an int indicating the current stream position."""
374
+ return self.seek(0, 1)
375
+
376
+ def truncate(self, pos=None):
377
+ """Truncate file to size bytes.
378
+
379
+ Size defaults to the current IO position as reported by tell(). Return
380
+ the new size.
381
+ """
382
+ self._unsupported("truncate")
383
+
384
+ ### Flush and close ###
385
+
386
+ def flush(self):
387
+ """Flush write buffers, if applicable.
388
+
389
+ This is not implemented for read-only and non-blocking streams.
390
+ """
391
+ self._checkClosed()
392
+ # XXX Should this return the number of bytes written???
393
+
394
+ __closed = False
395
+
396
+ def close(self):
397
+ """Flush and close the IO object.
398
+
399
+ This method has no effect if the file is already closed.
400
+ """
401
+ if not self.__closed:
402
+ try:
403
+ self.flush()
404
+ finally:
405
+ self.__closed = True
406
+
407
+ def __del__(self):
408
+ """Destructor. Calls close()."""
409
+ try:
410
+ closed = self.closed
411
+ except AttributeError:
412
+ # If getting closed fails, then the object is probably
413
+ # in an unusable state, so ignore.
414
+ return
415
+
416
+ if closed:
417
+ return
418
+
419
+ if _IOBASE_EMITS_UNRAISABLE:
420
+ self.close()
421
+ else:
422
+ # The try/except block is in case this is called at program
423
+ # exit time, when it's possible that globals have already been
424
+ # deleted, and then the close() call might fail. Since
425
+ # there's nothing we can do about such failures and they annoy
426
+ # the end users, we suppress the traceback.
427
+ try:
428
+ self.close()
429
+ except:
430
+ pass
431
+
432
+ ### Inquiries ###
433
+
434
+ def seekable(self):
435
+ """Return a bool indicating whether object supports random access.
436
+
437
+ If False, seek(), tell() and truncate() will raise OSError.
438
+ This method may need to do a test seek().
439
+ """
440
+ return False
441
+
442
+ def _checkSeekable(self, msg=None):
443
+ """Internal: raise UnsupportedOperation if file is not seekable
444
+ """
445
+ if not self.seekable():
446
+ raise UnsupportedOperation("File or stream is not seekable."
447
+ if msg is None else msg)
448
+
449
+ def readable(self):
450
+ """Return a bool indicating whether object was opened for reading.
451
+
452
+ If False, read() will raise OSError.
453
+ """
454
+ return False
455
+
456
+ def _checkReadable(self, msg=None):
457
+ """Internal: raise UnsupportedOperation if file is not readable
458
+ """
459
+ if not self.readable():
460
+ raise UnsupportedOperation("File or stream is not readable."
461
+ if msg is None else msg)
462
+
463
+ def writable(self):
464
+ """Return a bool indicating whether object was opened for writing.
465
+
466
+ If False, write() and truncate() will raise OSError.
467
+ """
468
+ return False
469
+
470
+ def _checkWritable(self, msg=None):
471
+ """Internal: raise UnsupportedOperation if file is not writable
472
+ """
473
+ if not self.writable():
474
+ raise UnsupportedOperation("File or stream is not writable."
475
+ if msg is None else msg)
476
+
477
+ @property
478
+ def closed(self):
479
+ """closed: bool. True iff the file has been closed.
480
+
481
+ For backwards compatibility, this is a property, not a predicate.
482
+ """
483
+ return self.__closed
484
+
485
+ def _checkClosed(self, msg=None):
486
+ """Internal: raise a ValueError if file is closed
487
+ """
488
+ if self.closed:
489
+ raise ValueError("I/O operation on closed file."
490
+ if msg is None else msg)
491
+
492
+ ### Context manager ###
493
+
494
+ def __enter__(self): # That's a forward reference
495
+ """Context management protocol. Returns self (an instance of IOBase)."""
496
+ self._checkClosed()
497
+ return self
498
+
499
+ def __exit__(self, *args):
500
+ """Context management protocol. Calls close()"""
501
+ self.close()
502
+
503
+ ### Lower-level APIs ###
504
+
505
+ # XXX Should these be present even if unimplemented?
506
+
507
+ def fileno(self):
508
+ """Returns underlying file descriptor (an int) if one exists.
509
+
510
+ An OSError is raised if the IO object does not use a file descriptor.
511
+ """
512
+ self._unsupported("fileno")
513
+
514
+ def isatty(self):
515
+ """Return a bool indicating whether this is an 'interactive' stream.
516
+
517
+ Return False if it can't be determined.
518
+ """
519
+ self._checkClosed()
520
+ return False
521
+
522
+ ### Readline[s] and writelines ###
523
+
524
+ def readline(self, size=-1):
525
+ r"""Read and return a line of bytes from the stream.
526
+
527
+ If size is specified, at most size bytes will be read.
528
+ Size should be an int.
529
+
530
+ The line terminator is always b'\n' for binary files; for text
531
+ files, the newlines argument to open can be used to select the line
532
+ terminator(s) recognized.
533
+ """
534
+ # For backwards compatibility, a (slowish) readline().
535
+ if hasattr(self, "peek"):
536
+ def nreadahead():
537
+ readahead = self.peek(1)
538
+ if not readahead:
539
+ return 1
540
+ n = (readahead.find(b"\n") + 1) or len(readahead)
541
+ if size >= 0:
542
+ n = min(n, size)
543
+ return n
544
+ else:
545
+ def nreadahead():
546
+ return 1
547
+ if size is None:
548
+ size = -1
549
+ else:
550
+ try:
551
+ size_index = size.__index__
552
+ except AttributeError:
553
+ raise TypeError(f"{size!r} is not an integer")
554
+ else:
555
+ size = size_index()
556
+ res = bytearray()
557
+ while size < 0 or len(res) < size:
558
+ b = self.read(nreadahead())
559
+ if not b:
560
+ break
561
+ res += b
562
+ if res.endswith(b"\n"):
563
+ break
564
+ return bytes(res)
565
+
566
+ def __iter__(self):
567
+ self._checkClosed()
568
+ return self
569
+
570
+ def __next__(self):
571
+ line = self.readline()
572
+ if not line:
573
+ raise StopIteration
574
+ return line
575
+
576
+ def readlines(self, hint=None):
577
+ """Return a list of lines from the stream.
578
+
579
+ hint can be specified to control the number of lines read: no more
580
+ lines will be read if the total size (in bytes/characters) of all
581
+ lines so far exceeds hint.
582
+ """
583
+ if hint is None or hint <= 0:
584
+ return list(self)
585
+ n = 0
586
+ lines = []
587
+ for line in self:
588
+ lines.append(line)
589
+ n += len(line)
590
+ if n >= hint:
591
+ break
592
+ return lines
593
+
594
+ def writelines(self, lines):
595
+ """Write a list of lines to the stream.
596
+
597
+ Line separators are not added, so it is usual for each of the lines
598
+ provided to have a line separator at the end.
599
+ """
600
+ self._checkClosed()
601
+ for line in lines:
602
+ self.write(line)
603
+
604
+ io.IOBase.register(IOBase)
605
+
606
+
607
+ class RawIOBase(IOBase):
608
+
609
+ """Base class for raw binary I/O."""
610
+
611
+ # The read() method is implemented by calling readinto(); derived
612
+ # classes that want to support read() only need to implement
613
+ # readinto() as a primitive operation. In general, readinto() can be
614
+ # more efficient than read().
615
+
616
+ # (It would be tempting to also provide an implementation of
617
+ # readinto() in terms of read(), in case the latter is a more suitable
618
+ # primitive operation, but that would lead to nasty recursion in case
619
+ # a subclass doesn't implement either.)
620
+
621
+ def read(self, size=-1):
622
+ """Read and return up to size bytes, where size is an int.
623
+
624
+ Returns an empty bytes object on EOF, or None if the object is
625
+ set not to block and has no data to read.
626
+ """
627
+ if size is None:
628
+ size = -1
629
+ if size < 0:
630
+ return self.readall()
631
+ b = bytearray(size.__index__())
632
+ n = self.readinto(b)
633
+ if n is None:
634
+ return None
635
+ del b[n:]
636
+ return bytes(b)
637
+
638
+ def readall(self):
639
+ """Read until EOF, using multiple read() call."""
640
+ res = bytearray()
641
+ while data := self.read(DEFAULT_BUFFER_SIZE):
642
+ res += data
643
+ if res:
644
+ return bytes(res)
645
+ else:
646
+ # b'' or None
647
+ return data
648
+
649
+ def readinto(self, b):
650
+ """Read bytes into a pre-allocated bytes-like object b.
651
+
652
+ Returns an int representing the number of bytes read (0 for EOF), or
653
+ None if the object is set not to block and has no data to read.
654
+ """
655
+ self._unsupported("readinto")
656
+
657
+ def write(self, b):
658
+ """Write the given buffer to the IO stream.
659
+
660
+ Returns the number of bytes written, which may be less than the
661
+ length of b in bytes.
662
+ """
663
+ self._unsupported("write")
664
+
665
+ io.RawIOBase.register(RawIOBase)
666
+ from _io import FileIO
667
+ RawIOBase.register(FileIO)
668
+
669
+
670
+ class BufferedIOBase(IOBase):
671
+
672
+ """Base class for buffered IO objects.
673
+
674
+ The main difference with RawIOBase is that the read() method
675
+ supports omitting the size argument, and does not have a default
676
+ implementation that defers to readinto().
677
+
678
+ In addition, read(), readinto() and write() may raise
679
+ BlockingIOError if the underlying raw stream is in non-blocking
680
+ mode and not ready; unlike their raw counterparts, they will never
681
+ return None.
682
+
683
+ A typical implementation should not inherit from a RawIOBase
684
+ implementation, but wrap one.
685
+ """
686
+
687
+ def read(self, size=-1):
688
+ """Read and return up to size bytes, where size is an int.
689
+
690
+ If the argument is omitted, None, or negative, reads and
691
+ returns all data until EOF.
692
+
693
+ If the argument is positive, and the underlying raw stream is
694
+ not 'interactive', multiple raw reads may be issued to satisfy
695
+ the byte count (unless EOF is reached first). But for
696
+ interactive raw streams (XXX and for pipes?), at most one raw
697
+ read will be issued, and a short result does not imply that
698
+ EOF is imminent.
699
+
700
+ Returns an empty bytes array on EOF.
701
+
702
+ Raises BlockingIOError if the underlying raw stream has no
703
+ data at the moment.
704
+ """
705
+ self._unsupported("read")
706
+
707
+ def read1(self, size=-1):
708
+ """Read up to size bytes with at most one read() system call,
709
+ where size is an int.
710
+ """
711
+ self._unsupported("read1")
712
+
713
+ def readinto(self, b):
714
+ """Read bytes into a pre-allocated bytes-like object b.
715
+
716
+ Like read(), this may issue multiple reads to the underlying raw
717
+ stream, unless the latter is 'interactive'.
718
+
719
+ Returns an int representing the number of bytes read (0 for EOF).
720
+
721
+ Raises BlockingIOError if the underlying raw stream has no
722
+ data at the moment.
723
+ """
724
+
725
+ return self._readinto(b, read1=False)
726
+
727
+ def readinto1(self, b):
728
+ """Read bytes into buffer *b*, using at most one system call
729
+
730
+ Returns an int representing the number of bytes read (0 for EOF).
731
+
732
+ Raises BlockingIOError if the underlying raw stream has no
733
+ data at the moment.
734
+ """
735
+
736
+ return self._readinto(b, read1=True)
737
+
738
+ def _readinto(self, b, read1):
739
+ if not isinstance(b, memoryview):
740
+ b = memoryview(b)
741
+ b = b.cast('B')
742
+
743
+ if read1:
744
+ data = self.read1(len(b))
745
+ else:
746
+ data = self.read(len(b))
747
+ n = len(data)
748
+
749
+ b[:n] = data
750
+
751
+ return n
752
+
753
+ def write(self, b):
754
+ """Write the given bytes buffer to the IO stream.
755
+
756
+ Return the number of bytes written, which is always the length of b
757
+ in bytes.
758
+
759
+ Raises BlockingIOError if the buffer is full and the
760
+ underlying raw stream cannot accept more data at the moment.
761
+ """
762
+ self._unsupported("write")
763
+
764
+ def detach(self):
765
+ """
766
+ Separate the underlying raw stream from the buffer and return it.
767
+
768
+ After the raw stream has been detached, the buffer is in an unusable
769
+ state.
770
+ """
771
+ self._unsupported("detach")
772
+
773
+ io.BufferedIOBase.register(BufferedIOBase)
774
+
775
+
776
+ class _BufferedIOMixin(BufferedIOBase):
777
+
778
+ """A mixin implementation of BufferedIOBase with an underlying raw stream.
779
+
780
+ This passes most requests on to the underlying raw stream. It
781
+ does *not* provide implementations of read(), readinto() or
782
+ write().
783
+ """
784
+
785
+ def __init__(self, raw):
786
+ self._raw = raw
787
+
788
+ ### Positioning ###
789
+
790
+ def seek(self, pos, whence=0):
791
+ new_position = self.raw.seek(pos, whence)
792
+ if new_position < 0:
793
+ raise OSError("seek() returned an invalid position")
794
+ return new_position
795
+
796
+ def tell(self):
797
+ pos = self.raw.tell()
798
+ if pos < 0:
799
+ raise OSError("tell() returned an invalid position")
800
+ return pos
801
+
802
+ def truncate(self, pos=None):
803
+ self._checkClosed()
804
+ self._checkWritable()
805
+
806
+ # Flush the stream. We're mixing buffered I/O with lower-level I/O,
807
+ # and a flush may be necessary to synch both views of the current
808
+ # file state.
809
+ self.flush()
810
+
811
+ if pos is None:
812
+ pos = self.tell()
813
+ # XXX: Should seek() be used, instead of passing the position
814
+ # XXX directly to truncate?
815
+ return self.raw.truncate(pos)
816
+
817
+ ### Flush and close ###
818
+
819
+ def flush(self):
820
+ if self.closed:
821
+ raise ValueError("flush on closed file")
822
+ self.raw.flush()
823
+
824
+ def close(self):
825
+ if self.raw is not None and not self.closed:
826
+ try:
827
+ # may raise BlockingIOError or BrokenPipeError etc
828
+ self.flush()
829
+ finally:
830
+ self.raw.close()
831
+
832
+ def detach(self):
833
+ if self.raw is None:
834
+ raise ValueError("raw stream already detached")
835
+ self.flush()
836
+ raw = self._raw
837
+ self._raw = None
838
+ return raw
839
+
840
+ ### Inquiries ###
841
+
842
+ def seekable(self):
843
+ return self.raw.seekable()
844
+
845
+ @property
846
+ def raw(self):
847
+ return self._raw
848
+
849
+ @property
850
+ def closed(self):
851
+ return self.raw.closed
852
+
853
+ @property
854
+ def name(self):
855
+ return self.raw.name
856
+
857
+ @property
858
+ def mode(self):
859
+ return self.raw.mode
860
+
861
+ def __getstate__(self):
862
+ raise TypeError(f"cannot pickle {self.__class__.__name__!r} object")
863
+
864
+ def __repr__(self):
865
+ modname = self.__class__.__module__
866
+ clsname = self.__class__.__qualname__
867
+ try:
868
+ name = self.name
869
+ except AttributeError:
870
+ return "<{}.{}>".format(modname, clsname)
871
+ else:
872
+ return "<{}.{} name={!r}>".format(modname, clsname, name)
873
+
874
+ ### Lower-level APIs ###
875
+
876
+ def fileno(self):
877
+ return self.raw.fileno()
878
+
879
+ def isatty(self):
880
+ return self.raw.isatty()
881
+
882
+
883
+ class BytesIO(BufferedIOBase):
884
+
885
+ """Buffered I/O implementation using an in-memory bytes buffer."""
886
+
887
+ # Initialize _buffer as soon as possible since it's used by __del__()
888
+ # which calls close()
889
+ _buffer = None
890
+
891
+ def __init__(self, initial_bytes=None):
892
+ buf = bytearray()
893
+ if initial_bytes is not None:
894
+ buf += initial_bytes
895
+ self._buffer = buf
896
+ self._pos = 0
897
+
898
+ def __getstate__(self):
899
+ if self.closed:
900
+ raise ValueError("__getstate__ on closed file")
901
+ return self.__dict__.copy()
902
+
903
+ def getvalue(self):
904
+ """Return the bytes value (contents) of the buffer
905
+ """
906
+ if self.closed:
907
+ raise ValueError("getvalue on closed file")
908
+ return bytes(self._buffer)
909
+
910
+ def getbuffer(self):
911
+ """Return a readable and writable view of the buffer.
912
+ """
913
+ if self.closed:
914
+ raise ValueError("getbuffer on closed file")
915
+ return memoryview(self._buffer)
916
+
917
+ def close(self):
918
+ if self._buffer is not None:
919
+ self._buffer.clear()
920
+ super().close()
921
+
922
+ def read(self, size=-1):
923
+ if self.closed:
924
+ raise ValueError("read from closed file")
925
+ if size is None:
926
+ size = -1
927
+ else:
928
+ try:
929
+ size_index = size.__index__
930
+ except AttributeError:
931
+ raise TypeError(f"{size!r} is not an integer")
932
+ else:
933
+ size = size_index()
934
+ if size < 0:
935
+ size = len(self._buffer)
936
+ if len(self._buffer) <= self._pos:
937
+ return b""
938
+ newpos = min(len(self._buffer), self._pos + size)
939
+ b = self._buffer[self._pos : newpos]
940
+ self._pos = newpos
941
+ return bytes(b)
942
+
943
+ def read1(self, size=-1):
944
+ """This is the same as read.
945
+ """
946
+ return self.read(size)
947
+
948
+ def write(self, b):
949
+ if self.closed:
950
+ raise ValueError("write to closed file")
951
+ if isinstance(b, str):
952
+ raise TypeError("can't write str to binary stream")
953
+ with memoryview(b) as view:
954
+ n = view.nbytes # Size of any bytes-like object
955
+ if n == 0:
956
+ return 0
957
+ pos = self._pos
958
+ if pos > len(self._buffer):
959
+ # Inserts null bytes between the current end of the file
960
+ # and the new write position.
961
+ padding = b'\x00' * (pos - len(self._buffer))
962
+ self._buffer += padding
963
+ self._buffer[pos:pos + n] = b
964
+ self._pos += n
965
+ return n
966
+
967
+ def seek(self, pos, whence=0):
968
+ if self.closed:
969
+ raise ValueError("seek on closed file")
970
+ try:
971
+ pos_index = pos.__index__
972
+ except AttributeError:
973
+ raise TypeError(f"{pos!r} is not an integer")
974
+ else:
975
+ pos = pos_index()
976
+ if whence == 0:
977
+ if pos < 0:
978
+ raise ValueError("negative seek position %r" % (pos,))
979
+ self._pos = pos
980
+ elif whence == 1:
981
+ self._pos = max(0, self._pos + pos)
982
+ elif whence == 2:
983
+ self._pos = max(0, len(self._buffer) + pos)
984
+ else:
985
+ raise ValueError("unsupported whence value")
986
+ return self._pos
987
+
988
+ def tell(self):
989
+ if self.closed:
990
+ raise ValueError("tell on closed file")
991
+ return self._pos
992
+
993
+ def truncate(self, pos=None):
994
+ if self.closed:
995
+ raise ValueError("truncate on closed file")
996
+ if pos is None:
997
+ pos = self._pos
998
+ else:
999
+ try:
1000
+ pos_index = pos.__index__
1001
+ except AttributeError:
1002
+ raise TypeError(f"{pos!r} is not an integer")
1003
+ else:
1004
+ pos = pos_index()
1005
+ if pos < 0:
1006
+ raise ValueError("negative truncate position %r" % (pos,))
1007
+ del self._buffer[pos:]
1008
+ return pos
1009
+
1010
+ def readable(self):
1011
+ if self.closed:
1012
+ raise ValueError("I/O operation on closed file.")
1013
+ return True
1014
+
1015
+ def writable(self):
1016
+ if self.closed:
1017
+ raise ValueError("I/O operation on closed file.")
1018
+ return True
1019
+
1020
+ def seekable(self):
1021
+ if self.closed:
1022
+ raise ValueError("I/O operation on closed file.")
1023
+ return True
1024
+
1025
+
1026
+ class BufferedReader(_BufferedIOMixin):
1027
+
1028
+ """BufferedReader(raw[, buffer_size])
1029
+
1030
+ A buffer for a readable, sequential BaseRawIO object.
1031
+
1032
+ The constructor creates a BufferedReader for the given readable raw
1033
+ stream and buffer_size. If buffer_size is omitted, DEFAULT_BUFFER_SIZE
1034
+ is used.
1035
+ """
1036
+
1037
+ def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):
1038
+ """Create a new buffered reader using the given readable raw IO object.
1039
+ """
1040
+ if not raw.readable():
1041
+ raise OSError('"raw" argument must be readable.')
1042
+
1043
+ _BufferedIOMixin.__init__(self, raw)
1044
+ if buffer_size <= 0:
1045
+ raise ValueError("invalid buffer size")
1046
+ self.buffer_size = buffer_size
1047
+ self._reset_read_buf()
1048
+ self._read_lock = Lock()
1049
+
1050
+ def readable(self):
1051
+ return self.raw.readable()
1052
+
1053
+ def _reset_read_buf(self):
1054
+ self._read_buf = b""
1055
+ self._read_pos = 0
1056
+
1057
+ def read(self, size=None):
1058
+ """Read size bytes.
1059
+
1060
+ Returns exactly size bytes of data unless the underlying raw IO
1061
+ stream reaches EOF or if the call would block in non-blocking
1062
+ mode. If size is negative, read until EOF or until read() would
1063
+ block.
1064
+ """
1065
+ if size is not None and size < -1:
1066
+ raise ValueError("invalid number of bytes to read")
1067
+ with self._read_lock:
1068
+ return self._read_unlocked(size)
1069
+
1070
+ def _read_unlocked(self, n=None):
1071
+ nodata_val = b""
1072
+ empty_values = (b"", None)
1073
+ buf = self._read_buf
1074
+ pos = self._read_pos
1075
+
1076
+ # Special case for when the number of bytes to read is unspecified.
1077
+ if n is None or n == -1:
1078
+ self._reset_read_buf()
1079
+ if hasattr(self.raw, 'readall'):
1080
+ chunk = self.raw.readall()
1081
+ if chunk is None:
1082
+ return buf[pos:] or None
1083
+ else:
1084
+ return buf[pos:] + chunk
1085
+ chunks = [buf[pos:]] # Strip the consumed bytes.
1086
+ current_size = 0
1087
+ while True:
1088
+ # Read until EOF or until read() would block.
1089
+ chunk = self.raw.read()
1090
+ if chunk in empty_values:
1091
+ nodata_val = chunk
1092
+ break
1093
+ current_size += len(chunk)
1094
+ chunks.append(chunk)
1095
+ return b"".join(chunks) or nodata_val
1096
+
1097
+ # The number of bytes to read is specified, return at most n bytes.
1098
+ avail = len(buf) - pos # Length of the available buffered data.
1099
+ if n <= avail:
1100
+ # Fast path: the data to read is fully buffered.
1101
+ self._read_pos += n
1102
+ return buf[pos:pos+n]
1103
+ # Slow path: read from the stream until enough bytes are read,
1104
+ # or until an EOF occurs or until read() would block.
1105
+ chunks = [buf[pos:]]
1106
+ wanted = max(self.buffer_size, n)
1107
+ while avail < n:
1108
+ chunk = self.raw.read(wanted)
1109
+ if chunk in empty_values:
1110
+ nodata_val = chunk
1111
+ break
1112
+ avail += len(chunk)
1113
+ chunks.append(chunk)
1114
+ # n is more than avail only when an EOF occurred or when
1115
+ # read() would have blocked.
1116
+ n = min(n, avail)
1117
+ out = b"".join(chunks)
1118
+ self._read_buf = out[n:] # Save the extra data in the buffer.
1119
+ self._read_pos = 0
1120
+ return out[:n] if out else nodata_val
1121
+
1122
+ def peek(self, size=0):
1123
+ """Returns buffered bytes without advancing the position.
1124
+
1125
+ The argument indicates a desired minimal number of bytes; we
1126
+ do at most one raw read to satisfy it. We never return more
1127
+ than self.buffer_size.
1128
+ """
1129
+ self._checkClosed("peek of closed file")
1130
+ with self._read_lock:
1131
+ return self._peek_unlocked(size)
1132
+
1133
+ def _peek_unlocked(self, n=0):
1134
+ want = min(n, self.buffer_size)
1135
+ have = len(self._read_buf) - self._read_pos
1136
+ if have < want or have <= 0:
1137
+ to_read = self.buffer_size - have
1138
+ current = self.raw.read(to_read)
1139
+ if current:
1140
+ self._read_buf = self._read_buf[self._read_pos:] + current
1141
+ self._read_pos = 0
1142
+ return self._read_buf[self._read_pos:]
1143
+
1144
+ def read1(self, size=-1):
1145
+ """Reads up to size bytes, with at most one read() system call."""
1146
+ # Returns up to size bytes. If at least one byte is buffered, we
1147
+ # only return buffered bytes. Otherwise, we do one raw read.
1148
+ self._checkClosed("read of closed file")
1149
+ if size < 0:
1150
+ size = self.buffer_size
1151
+ if size == 0:
1152
+ return b""
1153
+ with self._read_lock:
1154
+ self._peek_unlocked(1)
1155
+ return self._read_unlocked(
1156
+ min(size, len(self._read_buf) - self._read_pos))
1157
+
1158
+ # Implementing readinto() and readinto1() is not strictly necessary (we
1159
+ # could rely on the base class that provides an implementation in terms of
1160
+ # read() and read1()). We do it anyway to keep the _pyio implementation
1161
+ # similar to the io implementation (which implements the methods for
1162
+ # performance reasons).
1163
+ def _readinto(self, buf, read1):
1164
+ """Read data into *buf* with at most one system call."""
1165
+
1166
+ self._checkClosed("readinto of closed file")
1167
+
1168
+ # Need to create a memoryview object of type 'b', otherwise
1169
+ # we may not be able to assign bytes to it, and slicing it
1170
+ # would create a new object.
1171
+ if not isinstance(buf, memoryview):
1172
+ buf = memoryview(buf)
1173
+ if buf.nbytes == 0:
1174
+ return 0
1175
+ buf = buf.cast('B')
1176
+
1177
+ written = 0
1178
+ with self._read_lock:
1179
+ while written < len(buf):
1180
+
1181
+ # First try to read from internal buffer
1182
+ avail = min(len(self._read_buf) - self._read_pos, len(buf))
1183
+ if avail:
1184
+ buf[written:written+avail] = \
1185
+ self._read_buf[self._read_pos:self._read_pos+avail]
1186
+ self._read_pos += avail
1187
+ written += avail
1188
+ if written == len(buf):
1189
+ break
1190
+
1191
+ # If remaining space in callers buffer is larger than
1192
+ # internal buffer, read directly into callers buffer
1193
+ if len(buf) - written > self.buffer_size:
1194
+ n = self.raw.readinto(buf[written:])
1195
+ if not n:
1196
+ break # eof
1197
+ written += n
1198
+
1199
+ # Otherwise refill internal buffer - unless we're
1200
+ # in read1 mode and already got some data
1201
+ elif not (read1 and written):
1202
+ if not self._peek_unlocked(1):
1203
+ break # eof
1204
+
1205
+ # In readinto1 mode, return as soon as we have some data
1206
+ if read1 and written:
1207
+ break
1208
+
1209
+ return written
1210
+
1211
+ def tell(self):
1212
+ # GH-95782: Keep return value non-negative
1213
+ return max(_BufferedIOMixin.tell(self) - len(self._read_buf) + self._read_pos, 0)
1214
+
1215
+ def seek(self, pos, whence=0):
1216
+ if whence not in valid_seek_flags:
1217
+ raise ValueError("invalid whence value")
1218
+ self._checkClosed("seek of closed file")
1219
+ with self._read_lock:
1220
+ if whence == 1:
1221
+ pos -= len(self._read_buf) - self._read_pos
1222
+ pos = _BufferedIOMixin.seek(self, pos, whence)
1223
+ self._reset_read_buf()
1224
+ return pos
1225
+
1226
+ class BufferedWriter(_BufferedIOMixin):
1227
+
1228
+ """A buffer for a writeable sequential RawIO object.
1229
+
1230
+ The constructor creates a BufferedWriter for the given writeable raw
1231
+ stream. If the buffer_size is not given, it defaults to
1232
+ DEFAULT_BUFFER_SIZE.
1233
+ """
1234
+
1235
+ def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):
1236
+ if not raw.writable():
1237
+ raise OSError('"raw" argument must be writable.')
1238
+
1239
+ _BufferedIOMixin.__init__(self, raw)
1240
+ if buffer_size <= 0:
1241
+ raise ValueError("invalid buffer size")
1242
+ self.buffer_size = buffer_size
1243
+ self._write_buf = bytearray()
1244
+ self._write_lock = Lock()
1245
+
1246
+ def writable(self):
1247
+ return self.raw.writable()
1248
+
1249
+ def write(self, b):
1250
+ if isinstance(b, str):
1251
+ raise TypeError("can't write str to binary stream")
1252
+ with self._write_lock:
1253
+ if self.closed:
1254
+ raise ValueError("write to closed file")
1255
+ # XXX we can implement some more tricks to try and avoid
1256
+ # partial writes
1257
+ if len(self._write_buf) > self.buffer_size:
1258
+ # We're full, so let's pre-flush the buffer. (This may
1259
+ # raise BlockingIOError with characters_written == 0.)
1260
+ self._flush_unlocked()
1261
+ before = len(self._write_buf)
1262
+ self._write_buf.extend(b)
1263
+ written = len(self._write_buf) - before
1264
+ if len(self._write_buf) > self.buffer_size:
1265
+ try:
1266
+ self._flush_unlocked()
1267
+ except BlockingIOError as e:
1268
+ if len(self._write_buf) > self.buffer_size:
1269
+ # We've hit the buffer_size. We have to accept a partial
1270
+ # write and cut back our buffer.
1271
+ overage = len(self._write_buf) - self.buffer_size
1272
+ written -= overage
1273
+ self._write_buf = self._write_buf[:self.buffer_size]
1274
+ raise BlockingIOError(e.errno, e.strerror, written)
1275
+ return written
1276
+
1277
+ def truncate(self, pos=None):
1278
+ with self._write_lock:
1279
+ self._flush_unlocked()
1280
+ if pos is None:
1281
+ pos = self.raw.tell()
1282
+ return self.raw.truncate(pos)
1283
+
1284
+ def flush(self):
1285
+ with self._write_lock:
1286
+ self._flush_unlocked()
1287
+
1288
+ def _flush_unlocked(self):
1289
+ if self.closed:
1290
+ raise ValueError("flush on closed file")
1291
+ while self._write_buf:
1292
+ try:
1293
+ n = self.raw.write(self._write_buf)
1294
+ except BlockingIOError:
1295
+ raise RuntimeError("self.raw should implement RawIOBase: it "
1296
+ "should not raise BlockingIOError")
1297
+ if n is None:
1298
+ raise BlockingIOError(
1299
+ errno.EAGAIN,
1300
+ "write could not complete without blocking", 0)
1301
+ if n > len(self._write_buf) or n < 0:
1302
+ raise OSError("write() returned incorrect number of bytes")
1303
+ del self._write_buf[:n]
1304
+
1305
+ def tell(self):
1306
+ return _BufferedIOMixin.tell(self) + len(self._write_buf)
1307
+
1308
+ def seek(self, pos, whence=0):
1309
+ if whence not in valid_seek_flags:
1310
+ raise ValueError("invalid whence value")
1311
+ with self._write_lock:
1312
+ self._flush_unlocked()
1313
+ return _BufferedIOMixin.seek(self, pos, whence)
1314
+
1315
+ def close(self):
1316
+ with self._write_lock:
1317
+ if self.raw is None or self.closed:
1318
+ return
1319
+ # We have to release the lock and call self.flush() (which will
1320
+ # probably just re-take the lock) in case flush has been overridden in
1321
+ # a subclass or the user set self.flush to something. This is the same
1322
+ # behavior as the C implementation.
1323
+ try:
1324
+ # may raise BlockingIOError or BrokenPipeError etc
1325
+ self.flush()
1326
+ finally:
1327
+ with self._write_lock:
1328
+ self.raw.close()
1329
+
1330
+
1331
+ class BufferedRWPair(BufferedIOBase):
1332
+
1333
+ """A buffered reader and writer object together.
1334
+
1335
+ A buffered reader object and buffered writer object put together to
1336
+ form a sequential IO object that can read and write. This is typically
1337
+ used with a socket or two-way pipe.
1338
+
1339
+ reader and writer are RawIOBase objects that are readable and
1340
+ writeable respectively. If the buffer_size is omitted it defaults to
1341
+ DEFAULT_BUFFER_SIZE.
1342
+ """
1343
+
1344
+ # XXX The usefulness of this (compared to having two separate IO
1345
+ # objects) is questionable.
1346
+
1347
+ def __init__(self, reader, writer, buffer_size=DEFAULT_BUFFER_SIZE):
1348
+ """Constructor.
1349
+
1350
+ The arguments are two RawIO instances.
1351
+ """
1352
+ if not reader.readable():
1353
+ raise OSError('"reader" argument must be readable.')
1354
+
1355
+ if not writer.writable():
1356
+ raise OSError('"writer" argument must be writable.')
1357
+
1358
+ self.reader = BufferedReader(reader, buffer_size)
1359
+ self.writer = BufferedWriter(writer, buffer_size)
1360
+
1361
+ def read(self, size=-1):
1362
+ if size is None:
1363
+ size = -1
1364
+ return self.reader.read(size)
1365
+
1366
+ def readinto(self, b):
1367
+ return self.reader.readinto(b)
1368
+
1369
+ def write(self, b):
1370
+ return self.writer.write(b)
1371
+
1372
+ def peek(self, size=0):
1373
+ return self.reader.peek(size)
1374
+
1375
+ def read1(self, size=-1):
1376
+ return self.reader.read1(size)
1377
+
1378
+ def readinto1(self, b):
1379
+ return self.reader.readinto1(b)
1380
+
1381
+ def readable(self):
1382
+ return self.reader.readable()
1383
+
1384
+ def writable(self):
1385
+ return self.writer.writable()
1386
+
1387
+ def flush(self):
1388
+ return self.writer.flush()
1389
+
1390
+ def close(self):
1391
+ try:
1392
+ self.writer.close()
1393
+ finally:
1394
+ self.reader.close()
1395
+
1396
+ def isatty(self):
1397
+ return self.reader.isatty() or self.writer.isatty()
1398
+
1399
+ @property
1400
+ def closed(self):
1401
+ return self.writer.closed
1402
+
1403
+
1404
+ class BufferedRandom(BufferedWriter, BufferedReader):
1405
+
1406
+ """A buffered interface to random access streams.
1407
+
1408
+ The constructor creates a reader and writer for a seekable stream,
1409
+ raw, given in the first argument. If the buffer_size is omitted it
1410
+ defaults to DEFAULT_BUFFER_SIZE.
1411
+ """
1412
+
1413
+ def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):
1414
+ raw._checkSeekable()
1415
+ BufferedReader.__init__(self, raw, buffer_size)
1416
+ BufferedWriter.__init__(self, raw, buffer_size)
1417
+
1418
+ def seek(self, pos, whence=0):
1419
+ if whence not in valid_seek_flags:
1420
+ raise ValueError("invalid whence value")
1421
+ self.flush()
1422
+ if self._read_buf:
1423
+ # Undo read ahead.
1424
+ with self._read_lock:
1425
+ self.raw.seek(self._read_pos - len(self._read_buf), 1)
1426
+ # First do the raw seek, then empty the read buffer, so that
1427
+ # if the raw seek fails, we don't lose buffered data forever.
1428
+ pos = self.raw.seek(pos, whence)
1429
+ with self._read_lock:
1430
+ self._reset_read_buf()
1431
+ if pos < 0:
1432
+ raise OSError("seek() returned invalid position")
1433
+ return pos
1434
+
1435
+ def tell(self):
1436
+ if self._write_buf:
1437
+ return BufferedWriter.tell(self)
1438
+ else:
1439
+ return BufferedReader.tell(self)
1440
+
1441
+ def truncate(self, pos=None):
1442
+ if pos is None:
1443
+ pos = self.tell()
1444
+ # Use seek to flush the read buffer.
1445
+ return BufferedWriter.truncate(self, pos)
1446
+
1447
+ def read(self, size=None):
1448
+ if size is None:
1449
+ size = -1
1450
+ self.flush()
1451
+ return BufferedReader.read(self, size)
1452
+
1453
+ def readinto(self, b):
1454
+ self.flush()
1455
+ return BufferedReader.readinto(self, b)
1456
+
1457
+ def peek(self, size=0):
1458
+ self.flush()
1459
+ return BufferedReader.peek(self, size)
1460
+
1461
+ def read1(self, size=-1):
1462
+ self.flush()
1463
+ return BufferedReader.read1(self, size)
1464
+
1465
+ def readinto1(self, b):
1466
+ self.flush()
1467
+ return BufferedReader.readinto1(self, b)
1468
+
1469
+ def write(self, b):
1470
+ if self._read_buf:
1471
+ # Undo readahead
1472
+ with self._read_lock:
1473
+ self.raw.seek(self._read_pos - len(self._read_buf), 1)
1474
+ self._reset_read_buf()
1475
+ return BufferedWriter.write(self, b)
1476
+
1477
+
1478
+ class FileIO(RawIOBase):
1479
+ _fd = -1
1480
+ _created = False
1481
+ _readable = False
1482
+ _writable = False
1483
+ _appending = False
1484
+ _seekable = None
1485
+ _closefd = True
1486
+
1487
+ def __init__(self, file, mode='r', closefd=True, opener=None):
1488
+ """Open a file. The mode can be 'r' (default), 'w', 'x' or 'a' for reading,
1489
+ writing, exclusive creation or appending. The file will be created if it
1490
+ doesn't exist when opened for writing or appending; it will be truncated
1491
+ when opened for writing. A FileExistsError will be raised if it already
1492
+ exists when opened for creating. Opening a file for creating implies
1493
+ writing so this mode behaves in a similar way to 'w'. Add a '+' to the mode
1494
+ to allow simultaneous reading and writing. A custom opener can be used by
1495
+ passing a callable as *opener*. The underlying file descriptor for the file
1496
+ object is then obtained by calling opener with (*name*, *flags*).
1497
+ *opener* must return an open file descriptor (passing os.open as *opener*
1498
+ results in functionality similar to passing None).
1499
+ """
1500
+ if self._fd >= 0:
1501
+ # Have to close the existing file first.
1502
+ try:
1503
+ if self._closefd:
1504
+ os.close(self._fd)
1505
+ finally:
1506
+ self._fd = -1
1507
+
1508
+ if isinstance(file, float):
1509
+ raise TypeError('integer argument expected, got float')
1510
+ if isinstance(file, int):
1511
+ fd = file
1512
+ if fd < 0:
1513
+ raise ValueError('negative file descriptor')
1514
+ else:
1515
+ fd = -1
1516
+
1517
+ if not isinstance(mode, str):
1518
+ raise TypeError('invalid mode: %s' % (mode,))
1519
+ if not set(mode) <= set('xrwab+'):
1520
+ raise ValueError('invalid mode: %s' % (mode,))
1521
+ if sum(c in 'rwax' for c in mode) != 1 or mode.count('+') > 1:
1522
+ raise ValueError('Must have exactly one of create/read/write/append '
1523
+ 'mode and at most one plus')
1524
+
1525
+ if 'x' in mode:
1526
+ self._created = True
1527
+ self._writable = True
1528
+ flags = os.O_EXCL | os.O_CREAT
1529
+ elif 'r' in mode:
1530
+ self._readable = True
1531
+ flags = 0
1532
+ elif 'w' in mode:
1533
+ self._writable = True
1534
+ flags = os.O_CREAT | os.O_TRUNC
1535
+ elif 'a' in mode:
1536
+ self._writable = True
1537
+ self._appending = True
1538
+ flags = os.O_APPEND | os.O_CREAT
1539
+
1540
+ if '+' in mode:
1541
+ self._readable = True
1542
+ self._writable = True
1543
+
1544
+ if self._readable and self._writable:
1545
+ flags |= os.O_RDWR
1546
+ elif self._readable:
1547
+ flags |= os.O_RDONLY
1548
+ else:
1549
+ flags |= os.O_WRONLY
1550
+
1551
+ flags |= getattr(os, 'O_BINARY', 0)
1552
+
1553
+ noinherit_flag = (getattr(os, 'O_NOINHERIT', 0) or
1554
+ getattr(os, 'O_CLOEXEC', 0))
1555
+ flags |= noinherit_flag
1556
+
1557
+ owned_fd = None
1558
+ try:
1559
+ if fd < 0:
1560
+ if not closefd:
1561
+ raise ValueError('Cannot use closefd=False with file name')
1562
+ if opener is None:
1563
+ fd = os.open(file, flags, 0o666)
1564
+ else:
1565
+ fd = opener(file, flags)
1566
+ if not isinstance(fd, int):
1567
+ raise TypeError('expected integer from opener')
1568
+ if fd < 0:
1569
+ raise OSError('Negative file descriptor')
1570
+ owned_fd = fd
1571
+ if not noinherit_flag:
1572
+ os.set_inheritable(fd, False)
1573
+
1574
+ self._closefd = closefd
1575
+ fdfstat = os.fstat(fd)
1576
+ try:
1577
+ if stat.S_ISDIR(fdfstat.st_mode):
1578
+ raise IsADirectoryError(errno.EISDIR,
1579
+ os.strerror(errno.EISDIR), file)
1580
+ except AttributeError:
1581
+ # Ignore the AttributeError if stat.S_ISDIR or errno.EISDIR
1582
+ # don't exist.
1583
+ pass
1584
+ self._blksize = getattr(fdfstat, 'st_blksize', 0)
1585
+ if self._blksize <= 1:
1586
+ self._blksize = DEFAULT_BUFFER_SIZE
1587
+
1588
+ if _setmode:
1589
+ # don't translate newlines (\r\n <=> \n)
1590
+ _setmode(fd, os.O_BINARY)
1591
+
1592
+ self.name = file
1593
+ if self._appending:
1594
+ # For consistent behaviour, we explicitly seek to the
1595
+ # end of file (otherwise, it might be done only on the
1596
+ # first write()).
1597
+ try:
1598
+ os.lseek(fd, 0, SEEK_END)
1599
+ except OSError as e:
1600
+ if e.errno != errno.ESPIPE:
1601
+ raise
1602
+ except:
1603
+ if owned_fd is not None:
1604
+ os.close(owned_fd)
1605
+ raise
1606
+ self._fd = fd
1607
+
1608
+ def __del__(self):
1609
+ if self._fd >= 0 and self._closefd and not self.closed:
1610
+ import warnings
1611
+ warnings.warn('unclosed file %r' % (self,), ResourceWarning,
1612
+ stacklevel=2, source=self)
1613
+ self.close()
1614
+
1615
+ def __getstate__(self):
1616
+ raise TypeError(f"cannot pickle {self.__class__.__name__!r} object")
1617
+
1618
+ def __repr__(self):
1619
+ class_name = '%s.%s' % (self.__class__.__module__,
1620
+ self.__class__.__qualname__)
1621
+ if self.closed:
1622
+ return '<%s [closed]>' % class_name
1623
+ try:
1624
+ name = self.name
1625
+ except AttributeError:
1626
+ return ('<%s fd=%d mode=%r closefd=%r>' %
1627
+ (class_name, self._fd, self.mode, self._closefd))
1628
+ else:
1629
+ return ('<%s name=%r mode=%r closefd=%r>' %
1630
+ (class_name, name, self.mode, self._closefd))
1631
+
1632
+ def _checkReadable(self):
1633
+ if not self._readable:
1634
+ raise UnsupportedOperation('File not open for reading')
1635
+
1636
+ def _checkWritable(self, msg=None):
1637
+ if not self._writable:
1638
+ raise UnsupportedOperation('File not open for writing')
1639
+
1640
+ def read(self, size=None):
1641
+ """Read at most size bytes, returned as bytes.
1642
+
1643
+ Only makes one system call, so less data may be returned than requested
1644
+ In non-blocking mode, returns None if no data is available.
1645
+ Return an empty bytes object at EOF.
1646
+ """
1647
+ self._checkClosed()
1648
+ self._checkReadable()
1649
+ if size is None or size < 0:
1650
+ return self.readall()
1651
+ try:
1652
+ return os.read(self._fd, size)
1653
+ except BlockingIOError:
1654
+ return None
1655
+
1656
+ def readall(self):
1657
+ """Read all data from the file, returned as bytes.
1658
+
1659
+ In non-blocking mode, returns as much as is immediately available,
1660
+ or None if no data is available. Return an empty bytes object at EOF.
1661
+ """
1662
+ self._checkClosed()
1663
+ self._checkReadable()
1664
+ bufsize = DEFAULT_BUFFER_SIZE
1665
+ try:
1666
+ pos = os.lseek(self._fd, 0, SEEK_CUR)
1667
+ end = os.fstat(self._fd).st_size
1668
+ if end >= pos:
1669
+ bufsize = end - pos + 1
1670
+ except OSError:
1671
+ pass
1672
+
1673
+ result = bytearray()
1674
+ while True:
1675
+ if len(result) >= bufsize:
1676
+ bufsize = len(result)
1677
+ bufsize += max(bufsize, DEFAULT_BUFFER_SIZE)
1678
+ n = bufsize - len(result)
1679
+ try:
1680
+ chunk = os.read(self._fd, n)
1681
+ except BlockingIOError:
1682
+ if result:
1683
+ break
1684
+ return None
1685
+ if not chunk: # reached the end of the file
1686
+ break
1687
+ result += chunk
1688
+
1689
+ return bytes(result)
1690
+
1691
+ def readinto(self, b):
1692
+ """Same as RawIOBase.readinto()."""
1693
+ m = memoryview(b).cast('B')
1694
+ data = self.read(len(m))
1695
+ n = len(data)
1696
+ m[:n] = data
1697
+ return n
1698
+
1699
+ def write(self, b):
1700
+ """Write bytes b to file, return number written.
1701
+
1702
+ Only makes one system call, so not all of the data may be written.
1703
+ The number of bytes actually written is returned. In non-blocking mode,
1704
+ returns None if the write would block.
1705
+ """
1706
+ self._checkClosed()
1707
+ self._checkWritable()
1708
+ try:
1709
+ return os.write(self._fd, b)
1710
+ except BlockingIOError:
1711
+ return None
1712
+
1713
+ def seek(self, pos, whence=SEEK_SET):
1714
+ """Move to new file position.
1715
+
1716
+ Argument offset is a byte count. Optional argument whence defaults to
1717
+ SEEK_SET or 0 (offset from start of file, offset should be >= 0); other values
1718
+ are SEEK_CUR or 1 (move relative to current position, positive or negative),
1719
+ and SEEK_END or 2 (move relative to end of file, usually negative, although
1720
+ many platforms allow seeking beyond the end of a file).
1721
+
1722
+ Note that not all file objects are seekable.
1723
+ """
1724
+ if isinstance(pos, float):
1725
+ raise TypeError('an integer is required')
1726
+ self._checkClosed()
1727
+ return os.lseek(self._fd, pos, whence)
1728
+
1729
+ def tell(self):
1730
+ """tell() -> int. Current file position.
1731
+
1732
+ Can raise OSError for non seekable files."""
1733
+ self._checkClosed()
1734
+ return os.lseek(self._fd, 0, SEEK_CUR)
1735
+
1736
+ def truncate(self, size=None):
1737
+ """Truncate the file to at most size bytes.
1738
+
1739
+ Size defaults to the current file position, as returned by tell().
1740
+ The current file position is changed to the value of size.
1741
+ """
1742
+ self._checkClosed()
1743
+ self._checkWritable()
1744
+ if size is None:
1745
+ size = self.tell()
1746
+ os.ftruncate(self._fd, size)
1747
+ return size
1748
+
1749
+ def close(self):
1750
+ """Close the file.
1751
+
1752
+ A closed file cannot be used for further I/O operations. close() may be
1753
+ called more than once without error.
1754
+ """
1755
+ if not self.closed:
1756
+ try:
1757
+ if self._closefd:
1758
+ os.close(self._fd)
1759
+ finally:
1760
+ super().close()
1761
+
1762
+ def seekable(self):
1763
+ """True if file supports random-access."""
1764
+ self._checkClosed()
1765
+ if self._seekable is None:
1766
+ try:
1767
+ self.tell()
1768
+ except OSError:
1769
+ self._seekable = False
1770
+ else:
1771
+ self._seekable = True
1772
+ return self._seekable
1773
+
1774
+ def readable(self):
1775
+ """True if file was opened in a read mode."""
1776
+ self._checkClosed()
1777
+ return self._readable
1778
+
1779
+ def writable(self):
1780
+ """True if file was opened in a write mode."""
1781
+ self._checkClosed()
1782
+ return self._writable
1783
+
1784
+ def fileno(self):
1785
+ """Return the underlying file descriptor (an integer)."""
1786
+ self._checkClosed()
1787
+ return self._fd
1788
+
1789
+ def isatty(self):
1790
+ """True if the file is connected to a TTY device."""
1791
+ self._checkClosed()
1792
+ return os.isatty(self._fd)
1793
+
1794
+ @property
1795
+ def closefd(self):
1796
+ """True if the file descriptor will be closed by close()."""
1797
+ return self._closefd
1798
+
1799
+ @property
1800
+ def mode(self):
1801
+ """String giving the file mode"""
1802
+ if self._created:
1803
+ if self._readable:
1804
+ return 'xb+'
1805
+ else:
1806
+ return 'xb'
1807
+ elif self._appending:
1808
+ if self._readable:
1809
+ return 'ab+'
1810
+ else:
1811
+ return 'ab'
1812
+ elif self._readable:
1813
+ if self._writable:
1814
+ return 'rb+'
1815
+ else:
1816
+ return 'rb'
1817
+ else:
1818
+ return 'wb'
1819
+
1820
+
1821
+ class TextIOBase(IOBase):
1822
+
1823
+ """Base class for text I/O.
1824
+
1825
+ This class provides a character and line based interface to stream
1826
+ I/O.
1827
+ """
1828
+
1829
+ def read(self, size=-1):
1830
+ """Read at most size characters from stream, where size is an int.
1831
+
1832
+ Read from underlying buffer until we have size characters or we hit EOF.
1833
+ If size is negative or omitted, read until EOF.
1834
+
1835
+ Returns a string.
1836
+ """
1837
+ self._unsupported("read")
1838
+
1839
+ def write(self, s):
1840
+ """Write string s to stream and returning an int."""
1841
+ self._unsupported("write")
1842
+
1843
+ def truncate(self, pos=None):
1844
+ """Truncate size to pos, where pos is an int."""
1845
+ self._unsupported("truncate")
1846
+
1847
+ def readline(self):
1848
+ """Read until newline or EOF.
1849
+
1850
+ Returns an empty string if EOF is hit immediately.
1851
+ """
1852
+ self._unsupported("readline")
1853
+
1854
+ def detach(self):
1855
+ """
1856
+ Separate the underlying buffer from the TextIOBase and return it.
1857
+
1858
+ After the underlying buffer has been detached, the TextIO is in an
1859
+ unusable state.
1860
+ """
1861
+ self._unsupported("detach")
1862
+
1863
+ @property
1864
+ def encoding(self):
1865
+ """Subclasses should override."""
1866
+ return None
1867
+
1868
+ @property
1869
+ def newlines(self):
1870
+ """Line endings translated so far.
1871
+
1872
+ Only line endings translated during reading are considered.
1873
+
1874
+ Subclasses should override.
1875
+ """
1876
+ return None
1877
+
1878
+ @property
1879
+ def errors(self):
1880
+ """Error setting of the decoder or encoder.
1881
+
1882
+ Subclasses should override."""
1883
+ return None
1884
+
1885
+ io.TextIOBase.register(TextIOBase)
1886
+
1887
+
1888
+ class IncrementalNewlineDecoder(codecs.IncrementalDecoder):
1889
+ r"""Codec used when reading a file in universal newlines mode. It wraps
1890
+ another incremental decoder, translating \r\n and \r into \n. It also
1891
+ records the types of newlines encountered. When used with
1892
+ translate=False, it ensures that the newline sequence is returned in
1893
+ one piece.
1894
+ """
1895
+ def __init__(self, decoder, translate, errors='strict'):
1896
+ codecs.IncrementalDecoder.__init__(self, errors=errors)
1897
+ self.translate = translate
1898
+ self.decoder = decoder
1899
+ self.seennl = 0
1900
+ self.pendingcr = False
1901
+
1902
+ def decode(self, input, final=False):
1903
+ # decode input (with the eventual \r from a previous pass)
1904
+ if self.decoder is None:
1905
+ output = input
1906
+ else:
1907
+ output = self.decoder.decode(input, final=final)
1908
+ if self.pendingcr and (output or final):
1909
+ output = "\r" + output
1910
+ self.pendingcr = False
1911
+
1912
+ # retain last \r even when not translating data:
1913
+ # then readline() is sure to get \r\n in one pass
1914
+ if output.endswith("\r") and not final:
1915
+ output = output[:-1]
1916
+ self.pendingcr = True
1917
+
1918
+ # Record which newlines are read
1919
+ crlf = output.count('\r\n')
1920
+ cr = output.count('\r') - crlf
1921
+ lf = output.count('\n') - crlf
1922
+ self.seennl |= (lf and self._LF) | (cr and self._CR) \
1923
+ | (crlf and self._CRLF)
1924
+
1925
+ if self.translate:
1926
+ if crlf:
1927
+ output = output.replace("\r\n", "\n")
1928
+ if cr:
1929
+ output = output.replace("\r", "\n")
1930
+
1931
+ return output
1932
+
1933
+ def getstate(self):
1934
+ if self.decoder is None:
1935
+ buf = b""
1936
+ flag = 0
1937
+ else:
1938
+ buf, flag = self.decoder.getstate()
1939
+ flag <<= 1
1940
+ if self.pendingcr:
1941
+ flag |= 1
1942
+ return buf, flag
1943
+
1944
+ def setstate(self, state):
1945
+ buf, flag = state
1946
+ self.pendingcr = bool(flag & 1)
1947
+ if self.decoder is not None:
1948
+ self.decoder.setstate((buf, flag >> 1))
1949
+
1950
+ def reset(self):
1951
+ self.seennl = 0
1952
+ self.pendingcr = False
1953
+ if self.decoder is not None:
1954
+ self.decoder.reset()
1955
+
1956
+ _LF = 1
1957
+ _CR = 2
1958
+ _CRLF = 4
1959
+
1960
+ @property
1961
+ def newlines(self):
1962
+ return (None,
1963
+ "\n",
1964
+ "\r",
1965
+ ("\r", "\n"),
1966
+ "\r\n",
1967
+ ("\n", "\r\n"),
1968
+ ("\r", "\r\n"),
1969
+ ("\r", "\n", "\r\n")
1970
+ )[self.seennl]
1971
+
1972
+
1973
+ class TextIOWrapper(TextIOBase):
1974
+
1975
+ r"""Character and line based layer over a BufferedIOBase object, buffer.
1976
+
1977
+ encoding gives the name of the encoding that the stream will be
1978
+ decoded or encoded with. It defaults to locale.getencoding().
1979
+
1980
+ errors determines the strictness of encoding and decoding (see the
1981
+ codecs.register) and defaults to "strict".
1982
+
1983
+ newline can be None, '', '\n', '\r', or '\r\n'. It controls the
1984
+ handling of line endings. If it is None, universal newlines is
1985
+ enabled. With this enabled, on input, the lines endings '\n', '\r',
1986
+ or '\r\n' are translated to '\n' before being returned to the
1987
+ caller. Conversely, on output, '\n' is translated to the system
1988
+ default line separator, os.linesep. If newline is any other of its
1989
+ legal values, that newline becomes the newline when the file is read
1990
+ and it is returned untranslated. On output, '\n' is converted to the
1991
+ newline.
1992
+
1993
+ If line_buffering is True, a call to flush is implied when a call to
1994
+ write contains a newline character.
1995
+ """
1996
+
1997
+ _CHUNK_SIZE = 2048
1998
+
1999
+ # Initialize _buffer as soon as possible since it's used by __del__()
2000
+ # which calls close()
2001
+ _buffer = None
2002
+
2003
+ # The write_through argument has no effect here since this
2004
+ # implementation always writes through. The argument is present only
2005
+ # so that the signature can match the signature of the C version.
2006
+ def __init__(self, buffer, encoding=None, errors=None, newline=None,
2007
+ line_buffering=False, write_through=False):
2008
+ self._check_newline(newline)
2009
+ encoding = text_encoding(encoding)
2010
+
2011
+ if encoding == "locale":
2012
+ encoding = self._get_locale_encoding()
2013
+
2014
+ if not isinstance(encoding, str):
2015
+ raise ValueError("invalid encoding: %r" % encoding)
2016
+
2017
+ if not codecs.lookup(encoding)._is_text_encoding:
2018
+ msg = ("%r is not a text encoding; "
2019
+ "use codecs.open() to handle arbitrary codecs")
2020
+ raise LookupError(msg % encoding)
2021
+
2022
+ if errors is None:
2023
+ errors = "strict"
2024
+ else:
2025
+ if not isinstance(errors, str):
2026
+ raise ValueError("invalid errors: %r" % errors)
2027
+ if _CHECK_ERRORS:
2028
+ codecs.lookup_error(errors)
2029
+
2030
+ self._buffer = buffer
2031
+ self._decoded_chars = '' # buffer for text returned from decoder
2032
+ self._decoded_chars_used = 0 # offset into _decoded_chars for read()
2033
+ self._snapshot = None # info for reconstructing decoder state
2034
+ self._seekable = self._telling = self.buffer.seekable()
2035
+ self._has_read1 = hasattr(self.buffer, 'read1')
2036
+ self._configure(encoding, errors, newline,
2037
+ line_buffering, write_through)
2038
+
2039
+ def _check_newline(self, newline):
2040
+ if newline is not None and not isinstance(newline, str):
2041
+ raise TypeError("illegal newline type: %r" % (type(newline),))
2042
+ if newline not in (None, "", "\n", "\r", "\r\n"):
2043
+ raise ValueError("illegal newline value: %r" % (newline,))
2044
+
2045
+ def _configure(self, encoding=None, errors=None, newline=None,
2046
+ line_buffering=False, write_through=False):
2047
+ self._encoding = encoding
2048
+ self._errors = errors
2049
+ self._encoder = None
2050
+ self._decoder = None
2051
+ self._b2cratio = 0.0
2052
+
2053
+ self._readuniversal = not newline
2054
+ self._readtranslate = newline is None
2055
+ self._readnl = newline
2056
+ self._writetranslate = newline != ''
2057
+ self._writenl = newline or os.linesep
2058
+
2059
+ self._line_buffering = line_buffering
2060
+ self._write_through = write_through
2061
+
2062
+ # don't write a BOM in the middle of a file
2063
+ if self._seekable and self.writable():
2064
+ position = self.buffer.tell()
2065
+ if position != 0:
2066
+ try:
2067
+ self._get_encoder().setstate(0)
2068
+ except LookupError:
2069
+ # Sometimes the encoder doesn't exist
2070
+ pass
2071
+
2072
+ # self._snapshot is either None, or a tuple (dec_flags, next_input)
2073
+ # where dec_flags is the second (integer) item of the decoder state
2074
+ # and next_input is the chunk of input bytes that comes next after the
2075
+ # snapshot point. We use this to reconstruct decoder states in tell().
2076
+
2077
+ # Naming convention:
2078
+ # - "bytes_..." for integer variables that count input bytes
2079
+ # - "chars_..." for integer variables that count decoded characters
2080
+
2081
+ def __repr__(self):
2082
+ result = "<{}.{}".format(self.__class__.__module__,
2083
+ self.__class__.__qualname__)
2084
+ try:
2085
+ name = self.name
2086
+ except AttributeError:
2087
+ pass
2088
+ else:
2089
+ result += " name={0!r}".format(name)
2090
+ try:
2091
+ mode = self.mode
2092
+ except AttributeError:
2093
+ pass
2094
+ else:
2095
+ result += " mode={0!r}".format(mode)
2096
+ return result + " encoding={0!r}>".format(self.encoding)
2097
+
2098
+ @property
2099
+ def encoding(self):
2100
+ return self._encoding
2101
+
2102
+ @property
2103
+ def errors(self):
2104
+ return self._errors
2105
+
2106
+ @property
2107
+ def line_buffering(self):
2108
+ return self._line_buffering
2109
+
2110
+ @property
2111
+ def write_through(self):
2112
+ return self._write_through
2113
+
2114
+ @property
2115
+ def buffer(self):
2116
+ return self._buffer
2117
+
2118
+ def reconfigure(self, *,
2119
+ encoding=None, errors=None, newline=Ellipsis,
2120
+ line_buffering=None, write_through=None):
2121
+ """Reconfigure the text stream with new parameters.
2122
+
2123
+ This also flushes the stream.
2124
+ """
2125
+ if (self._decoder is not None
2126
+ and (encoding is not None or errors is not None
2127
+ or newline is not Ellipsis)):
2128
+ raise UnsupportedOperation(
2129
+ "It is not possible to set the encoding or newline of stream "
2130
+ "after the first read")
2131
+
2132
+ if errors is None:
2133
+ if encoding is None:
2134
+ errors = self._errors
2135
+ else:
2136
+ errors = 'strict'
2137
+ elif not isinstance(errors, str):
2138
+ raise TypeError("invalid errors: %r" % errors)
2139
+
2140
+ if encoding is None:
2141
+ encoding = self._encoding
2142
+ else:
2143
+ if not isinstance(encoding, str):
2144
+ raise TypeError("invalid encoding: %r" % encoding)
2145
+ if encoding == "locale":
2146
+ encoding = self._get_locale_encoding()
2147
+
2148
+ if newline is Ellipsis:
2149
+ newline = self._readnl
2150
+ self._check_newline(newline)
2151
+
2152
+ if line_buffering is None:
2153
+ line_buffering = self.line_buffering
2154
+ if write_through is None:
2155
+ write_through = self.write_through
2156
+
2157
+ self.flush()
2158
+ self._configure(encoding, errors, newline,
2159
+ line_buffering, write_through)
2160
+
2161
+ def seekable(self):
2162
+ if self.closed:
2163
+ raise ValueError("I/O operation on closed file.")
2164
+ return self._seekable
2165
+
2166
+ def readable(self):
2167
+ return self.buffer.readable()
2168
+
2169
+ def writable(self):
2170
+ return self.buffer.writable()
2171
+
2172
+ def flush(self):
2173
+ self.buffer.flush()
2174
+ self._telling = self._seekable
2175
+
2176
+ def close(self):
2177
+ if self.buffer is not None and not self.closed:
2178
+ try:
2179
+ self.flush()
2180
+ finally:
2181
+ self.buffer.close()
2182
+
2183
+ @property
2184
+ def closed(self):
2185
+ return self.buffer.closed
2186
+
2187
+ @property
2188
+ def name(self):
2189
+ return self.buffer.name
2190
+
2191
+ def fileno(self):
2192
+ return self.buffer.fileno()
2193
+
2194
+ def isatty(self):
2195
+ return self.buffer.isatty()
2196
+
2197
+ def write(self, s):
2198
+ 'Write data, where s is a str'
2199
+ if self.closed:
2200
+ raise ValueError("write to closed file")
2201
+ if not isinstance(s, str):
2202
+ raise TypeError("can't write %s to text stream" %
2203
+ s.__class__.__name__)
2204
+ length = len(s)
2205
+ haslf = (self._writetranslate or self._line_buffering) and "\n" in s
2206
+ if haslf and self._writetranslate and self._writenl != "\n":
2207
+ s = s.replace("\n", self._writenl)
2208
+ encoder = self._encoder or self._get_encoder()
2209
+ # XXX What if we were just reading?
2210
+ b = encoder.encode(s)
2211
+ self.buffer.write(b)
2212
+ if self._line_buffering and (haslf or "\r" in s):
2213
+ self.flush()
2214
+ if self._snapshot is not None:
2215
+ self._set_decoded_chars('')
2216
+ self._snapshot = None
2217
+ if self._decoder:
2218
+ self._decoder.reset()
2219
+ return length
2220
+
2221
+ def _get_encoder(self):
2222
+ make_encoder = codecs.getincrementalencoder(self._encoding)
2223
+ self._encoder = make_encoder(self._errors)
2224
+ return self._encoder
2225
+
2226
+ def _get_decoder(self):
2227
+ make_decoder = codecs.getincrementaldecoder(self._encoding)
2228
+ decoder = make_decoder(self._errors)
2229
+ if self._readuniversal:
2230
+ decoder = IncrementalNewlineDecoder(decoder, self._readtranslate)
2231
+ self._decoder = decoder
2232
+ return decoder
2233
+
2234
+ # The following three methods implement an ADT for _decoded_chars.
2235
+ # Text returned from the decoder is buffered here until the client
2236
+ # requests it by calling our read() or readline() method.
2237
+ def _set_decoded_chars(self, chars):
2238
+ """Set the _decoded_chars buffer."""
2239
+ self._decoded_chars = chars
2240
+ self._decoded_chars_used = 0
2241
+
2242
+ def _get_decoded_chars(self, n=None):
2243
+ """Advance into the _decoded_chars buffer."""
2244
+ offset = self._decoded_chars_used
2245
+ if n is None:
2246
+ chars = self._decoded_chars[offset:]
2247
+ else:
2248
+ chars = self._decoded_chars[offset:offset + n]
2249
+ self._decoded_chars_used += len(chars)
2250
+ return chars
2251
+
2252
+ def _get_locale_encoding(self):
2253
+ try:
2254
+ import locale
2255
+ except ImportError:
2256
+ # Importing locale may fail if Python is being built
2257
+ return "utf-8"
2258
+ else:
2259
+ return locale.getencoding()
2260
+
2261
+ def _rewind_decoded_chars(self, n):
2262
+ """Rewind the _decoded_chars buffer."""
2263
+ if self._decoded_chars_used < n:
2264
+ raise AssertionError("rewind decoded_chars out of bounds")
2265
+ self._decoded_chars_used -= n
2266
+
2267
+ def _read_chunk(self):
2268
+ """
2269
+ Read and decode the next chunk of data from the BufferedReader.
2270
+ """
2271
+
2272
+ # The return value is True unless EOF was reached. The decoded
2273
+ # string is placed in self._decoded_chars (replacing its previous
2274
+ # value). The entire input chunk is sent to the decoder, though
2275
+ # some of it may remain buffered in the decoder, yet to be
2276
+ # converted.
2277
+
2278
+ if self._decoder is None:
2279
+ raise ValueError("no decoder")
2280
+
2281
+ if self._telling:
2282
+ # To prepare for tell(), we need to snapshot a point in the
2283
+ # file where the decoder's input buffer is empty.
2284
+
2285
+ dec_buffer, dec_flags = self._decoder.getstate()
2286
+ # Given this, we know there was a valid snapshot point
2287
+ # len(dec_buffer) bytes ago with decoder state (b'', dec_flags).
2288
+
2289
+ # Read a chunk, decode it, and put the result in self._decoded_chars.
2290
+ if self._has_read1:
2291
+ input_chunk = self.buffer.read1(self._CHUNK_SIZE)
2292
+ else:
2293
+ input_chunk = self.buffer.read(self._CHUNK_SIZE)
2294
+ eof = not input_chunk
2295
+ decoded_chars = self._decoder.decode(input_chunk, eof)
2296
+ self._set_decoded_chars(decoded_chars)
2297
+ if decoded_chars:
2298
+ self._b2cratio = len(input_chunk) / len(self._decoded_chars)
2299
+ else:
2300
+ self._b2cratio = 0.0
2301
+
2302
+ if self._telling:
2303
+ # At the snapshot point, len(dec_buffer) bytes before the read,
2304
+ # the next input to be decoded is dec_buffer + input_chunk.
2305
+ self._snapshot = (dec_flags, dec_buffer + input_chunk)
2306
+
2307
+ return not eof
2308
+
2309
+ def _pack_cookie(self, position, dec_flags=0,
2310
+ bytes_to_feed=0, need_eof=False, chars_to_skip=0):
2311
+ # The meaning of a tell() cookie is: seek to position, set the
2312
+ # decoder flags to dec_flags, read bytes_to_feed bytes, feed them
2313
+ # into the decoder with need_eof as the EOF flag, then skip
2314
+ # chars_to_skip characters of the decoded result. For most simple
2315
+ # decoders, tell() will often just give a byte offset in the file.
2316
+ return (position | (dec_flags<<64) | (bytes_to_feed<<128) |
2317
+ (chars_to_skip<<192) | bool(need_eof)<<256)
2318
+
2319
+ def _unpack_cookie(self, bigint):
2320
+ rest, position = divmod(bigint, 1<<64)
2321
+ rest, dec_flags = divmod(rest, 1<<64)
2322
+ rest, bytes_to_feed = divmod(rest, 1<<64)
2323
+ need_eof, chars_to_skip = divmod(rest, 1<<64)
2324
+ return position, dec_flags, bytes_to_feed, bool(need_eof), chars_to_skip
2325
+
2326
+ def tell(self):
2327
+ if not self._seekable:
2328
+ raise UnsupportedOperation("underlying stream is not seekable")
2329
+ if not self._telling:
2330
+ raise OSError("telling position disabled by next() call")
2331
+ self.flush()
2332
+ position = self.buffer.tell()
2333
+ decoder = self._decoder
2334
+ if decoder is None or self._snapshot is None:
2335
+ if self._decoded_chars:
2336
+ # This should never happen.
2337
+ raise AssertionError("pending decoded text")
2338
+ return position
2339
+
2340
+ # Skip backward to the snapshot point (see _read_chunk).
2341
+ dec_flags, next_input = self._snapshot
2342
+ position -= len(next_input)
2343
+
2344
+ # How many decoded characters have been used up since the snapshot?
2345
+ chars_to_skip = self._decoded_chars_used
2346
+ if chars_to_skip == 0:
2347
+ # We haven't moved from the snapshot point.
2348
+ return self._pack_cookie(position, dec_flags)
2349
+
2350
+ # Starting from the snapshot position, we will walk the decoder
2351
+ # forward until it gives us enough decoded characters.
2352
+ saved_state = decoder.getstate()
2353
+ try:
2354
+ # Fast search for an acceptable start point, close to our
2355
+ # current pos.
2356
+ # Rationale: calling decoder.decode() has a large overhead
2357
+ # regardless of chunk size; we want the number of such calls to
2358
+ # be O(1) in most situations (common decoders, sensible input).
2359
+ # Actually, it will be exactly 1 for fixed-size codecs (all
2360
+ # 8-bit codecs, also UTF-16 and UTF-32).
2361
+ skip_bytes = int(self._b2cratio * chars_to_skip)
2362
+ skip_back = 1
2363
+ assert skip_bytes <= len(next_input)
2364
+ while skip_bytes > 0:
2365
+ decoder.setstate((b'', dec_flags))
2366
+ # Decode up to temptative start point
2367
+ n = len(decoder.decode(next_input[:skip_bytes]))
2368
+ if n <= chars_to_skip:
2369
+ b, d = decoder.getstate()
2370
+ if not b:
2371
+ # Before pos and no bytes buffered in decoder => OK
2372
+ dec_flags = d
2373
+ chars_to_skip -= n
2374
+ break
2375
+ # Skip back by buffered amount and reset heuristic
2376
+ skip_bytes -= len(b)
2377
+ skip_back = 1
2378
+ else:
2379
+ # We're too far ahead, skip back a bit
2380
+ skip_bytes -= skip_back
2381
+ skip_back = skip_back * 2
2382
+ else:
2383
+ skip_bytes = 0
2384
+ decoder.setstate((b'', dec_flags))
2385
+
2386
+ # Note our initial start point.
2387
+ start_pos = position + skip_bytes
2388
+ start_flags = dec_flags
2389
+ if chars_to_skip == 0:
2390
+ # We haven't moved from the start point.
2391
+ return self._pack_cookie(start_pos, start_flags)
2392
+
2393
+ # Feed the decoder one byte at a time. As we go, note the
2394
+ # nearest "safe start point" before the current location
2395
+ # (a point where the decoder has nothing buffered, so seek()
2396
+ # can safely start from there and advance to this location).
2397
+ bytes_fed = 0
2398
+ need_eof = False
2399
+ # Chars decoded since `start_pos`
2400
+ chars_decoded = 0
2401
+ for i in range(skip_bytes, len(next_input)):
2402
+ bytes_fed += 1
2403
+ chars_decoded += len(decoder.decode(next_input[i:i+1]))
2404
+ dec_buffer, dec_flags = decoder.getstate()
2405
+ if not dec_buffer and chars_decoded <= chars_to_skip:
2406
+ # Decoder buffer is empty, so this is a safe start point.
2407
+ start_pos += bytes_fed
2408
+ chars_to_skip -= chars_decoded
2409
+ start_flags, bytes_fed, chars_decoded = dec_flags, 0, 0
2410
+ if chars_decoded >= chars_to_skip:
2411
+ break
2412
+ else:
2413
+ # We didn't get enough decoded data; signal EOF to get more.
2414
+ chars_decoded += len(decoder.decode(b'', final=True))
2415
+ need_eof = True
2416
+ if chars_decoded < chars_to_skip:
2417
+ raise OSError("can't reconstruct logical file position")
2418
+
2419
+ # The returned cookie corresponds to the last safe start point.
2420
+ return self._pack_cookie(
2421
+ start_pos, start_flags, bytes_fed, need_eof, chars_to_skip)
2422
+ finally:
2423
+ decoder.setstate(saved_state)
2424
+
2425
+ def truncate(self, pos=None):
2426
+ self.flush()
2427
+ if pos is None:
2428
+ pos = self.tell()
2429
+ return self.buffer.truncate(pos)
2430
+
2431
+ def detach(self):
2432
+ if self.buffer is None:
2433
+ raise ValueError("buffer is already detached")
2434
+ self.flush()
2435
+ buffer = self._buffer
2436
+ self._buffer = None
2437
+ return buffer
2438
+
2439
+ def seek(self, cookie, whence=0):
2440
+ def _reset_encoder(position):
2441
+ """Reset the encoder (merely useful for proper BOM handling)"""
2442
+ try:
2443
+ encoder = self._encoder or self._get_encoder()
2444
+ except LookupError:
2445
+ # Sometimes the encoder doesn't exist
2446
+ pass
2447
+ else:
2448
+ if position != 0:
2449
+ encoder.setstate(0)
2450
+ else:
2451
+ encoder.reset()
2452
+
2453
+ if self.closed:
2454
+ raise ValueError("tell on closed file")
2455
+ if not self._seekable:
2456
+ raise UnsupportedOperation("underlying stream is not seekable")
2457
+ if whence == SEEK_CUR:
2458
+ if cookie != 0:
2459
+ raise UnsupportedOperation("can't do nonzero cur-relative seeks")
2460
+ # Seeking to the current position should attempt to
2461
+ # sync the underlying buffer with the current position.
2462
+ whence = 0
2463
+ cookie = self.tell()
2464
+ elif whence == SEEK_END:
2465
+ if cookie != 0:
2466
+ raise UnsupportedOperation("can't do nonzero end-relative seeks")
2467
+ self.flush()
2468
+ position = self.buffer.seek(0, whence)
2469
+ self._set_decoded_chars('')
2470
+ self._snapshot = None
2471
+ if self._decoder:
2472
+ self._decoder.reset()
2473
+ _reset_encoder(position)
2474
+ return position
2475
+ if whence != 0:
2476
+ raise ValueError("unsupported whence (%r)" % (whence,))
2477
+ if cookie < 0:
2478
+ raise ValueError("negative seek position %r" % (cookie,))
2479
+ self.flush()
2480
+
2481
+ # The strategy of seek() is to go back to the safe start point
2482
+ # and replay the effect of read(chars_to_skip) from there.
2483
+ start_pos, dec_flags, bytes_to_feed, need_eof, chars_to_skip = \
2484
+ self._unpack_cookie(cookie)
2485
+
2486
+ # Seek back to the safe start point.
2487
+ self.buffer.seek(start_pos)
2488
+ self._set_decoded_chars('')
2489
+ self._snapshot = None
2490
+
2491
+ # Restore the decoder to its state from the safe start point.
2492
+ if cookie == 0 and self._decoder:
2493
+ self._decoder.reset()
2494
+ elif self._decoder or dec_flags or chars_to_skip:
2495
+ self._decoder = self._decoder or self._get_decoder()
2496
+ self._decoder.setstate((b'', dec_flags))
2497
+ self._snapshot = (dec_flags, b'')
2498
+
2499
+ if chars_to_skip:
2500
+ # Just like _read_chunk, feed the decoder and save a snapshot.
2501
+ input_chunk = self.buffer.read(bytes_to_feed)
2502
+ self._set_decoded_chars(
2503
+ self._decoder.decode(input_chunk, need_eof))
2504
+ self._snapshot = (dec_flags, input_chunk)
2505
+
2506
+ # Skip chars_to_skip of the decoded characters.
2507
+ if len(self._decoded_chars) < chars_to_skip:
2508
+ raise OSError("can't restore logical file position")
2509
+ self._decoded_chars_used = chars_to_skip
2510
+
2511
+ _reset_encoder(cookie)
2512
+ return cookie
2513
+
2514
+ def read(self, size=None):
2515
+ self._checkReadable()
2516
+ if size is None:
2517
+ size = -1
2518
+ else:
2519
+ try:
2520
+ size_index = size.__index__
2521
+ except AttributeError:
2522
+ raise TypeError(f"{size!r} is not an integer")
2523
+ else:
2524
+ size = size_index()
2525
+ decoder = self._decoder or self._get_decoder()
2526
+ if size < 0:
2527
+ # Read everything.
2528
+ result = (self._get_decoded_chars() +
2529
+ decoder.decode(self.buffer.read(), final=True))
2530
+ if self._snapshot is not None:
2531
+ self._set_decoded_chars('')
2532
+ self._snapshot = None
2533
+ return result
2534
+ else:
2535
+ # Keep reading chunks until we have size characters to return.
2536
+ eof = False
2537
+ result = self._get_decoded_chars(size)
2538
+ while len(result) < size and not eof:
2539
+ eof = not self._read_chunk()
2540
+ result += self._get_decoded_chars(size - len(result))
2541
+ return result
2542
+
2543
+ def __next__(self):
2544
+ self._telling = False
2545
+ line = self.readline()
2546
+ if not line:
2547
+ self._snapshot = None
2548
+ self._telling = self._seekable
2549
+ raise StopIteration
2550
+ return line
2551
+
2552
+ def readline(self, size=None):
2553
+ if self.closed:
2554
+ raise ValueError("read from closed file")
2555
+ if size is None:
2556
+ size = -1
2557
+ else:
2558
+ try:
2559
+ size_index = size.__index__
2560
+ except AttributeError:
2561
+ raise TypeError(f"{size!r} is not an integer")
2562
+ else:
2563
+ size = size_index()
2564
+
2565
+ # Grab all the decoded text (we will rewind any extra bits later).
2566
+ line = self._get_decoded_chars()
2567
+
2568
+ start = 0
2569
+ # Make the decoder if it doesn't already exist.
2570
+ if not self._decoder:
2571
+ self._get_decoder()
2572
+
2573
+ pos = endpos = None
2574
+ while True:
2575
+ if self._readtranslate:
2576
+ # Newlines are already translated, only search for \n
2577
+ pos = line.find('\n', start)
2578
+ if pos >= 0:
2579
+ endpos = pos + 1
2580
+ break
2581
+ else:
2582
+ start = len(line)
2583
+
2584
+ elif self._readuniversal:
2585
+ # Universal newline search. Find any of \r, \r\n, \n
2586
+ # The decoder ensures that \r\n are not split in two pieces
2587
+
2588
+ # In C we'd look for these in parallel of course.
2589
+ nlpos = line.find("\n", start)
2590
+ crpos = line.find("\r", start)
2591
+ if crpos == -1:
2592
+ if nlpos == -1:
2593
+ # Nothing found
2594
+ start = len(line)
2595
+ else:
2596
+ # Found \n
2597
+ endpos = nlpos + 1
2598
+ break
2599
+ elif nlpos == -1:
2600
+ # Found lone \r
2601
+ endpos = crpos + 1
2602
+ break
2603
+ elif nlpos < crpos:
2604
+ # Found \n
2605
+ endpos = nlpos + 1
2606
+ break
2607
+ elif nlpos == crpos + 1:
2608
+ # Found \r\n
2609
+ endpos = crpos + 2
2610
+ break
2611
+ else:
2612
+ # Found \r
2613
+ endpos = crpos + 1
2614
+ break
2615
+ else:
2616
+ # non-universal
2617
+ pos = line.find(self._readnl)
2618
+ if pos >= 0:
2619
+ endpos = pos + len(self._readnl)
2620
+ break
2621
+
2622
+ if size >= 0 and len(line) >= size:
2623
+ endpos = size # reached length size
2624
+ break
2625
+
2626
+ # No line ending seen yet - get more data'
2627
+ while self._read_chunk():
2628
+ if self._decoded_chars:
2629
+ break
2630
+ if self._decoded_chars:
2631
+ line += self._get_decoded_chars()
2632
+ else:
2633
+ # end of file
2634
+ self._set_decoded_chars('')
2635
+ self._snapshot = None
2636
+ return line
2637
+
2638
+ if size >= 0 and endpos > size:
2639
+ endpos = size # don't exceed size
2640
+
2641
+ # Rewind _decoded_chars to just after the line ending we found.
2642
+ self._rewind_decoded_chars(len(line) - endpos)
2643
+ return line[:endpos]
2644
+
2645
+ @property
2646
+ def newlines(self):
2647
+ return self._decoder.newlines if self._decoder else None
2648
+
2649
+
2650
+ class StringIO(TextIOWrapper):
2651
+ """Text I/O implementation using an in-memory buffer.
2652
+
2653
+ The initial_value argument sets the value of object. The newline
2654
+ argument is like the one of TextIOWrapper's constructor.
2655
+ """
2656
+
2657
+ def __init__(self, initial_value="", newline="\n"):
2658
+ super(StringIO, self).__init__(BytesIO(),
2659
+ encoding="utf-8",
2660
+ errors="surrogatepass",
2661
+ newline=newline)
2662
+ # Issue #5645: make universal newlines semantics the same as in the
2663
+ # C version, even under Windows.
2664
+ if newline is None:
2665
+ self._writetranslate = False
2666
+ if initial_value is not None:
2667
+ if not isinstance(initial_value, str):
2668
+ raise TypeError("initial_value must be str or None, not {0}"
2669
+ .format(type(initial_value).__name__))
2670
+ self.write(initial_value)
2671
+ self.seek(0)
2672
+
2673
+ def getvalue(self):
2674
+ self.flush()
2675
+ decoder = self._decoder or self._get_decoder()
2676
+ old_state = decoder.getstate()
2677
+ decoder.reset()
2678
+ try:
2679
+ return decoder.decode(self.buffer.getvalue(), final=True)
2680
+ finally:
2681
+ decoder.setstate(old_state)
2682
+
2683
+ def __repr__(self):
2684
+ # TextIOWrapper tells the encoding in its repr. In StringIO,
2685
+ # that's an implementation detail.
2686
+ return object.__repr__(self)
2687
+
2688
+ @property
2689
+ def errors(self):
2690
+ return None
2691
+
2692
+ @property
2693
+ def encoding(self):
2694
+ return None
2695
+
2696
+ def detach(self):
2697
+ # This doesn't make sense on StringIO.
2698
+ self._unsupported("detach")