@pairling/runtime-darwin-x64 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1238) hide show
  1. package/bin/pairling-connectd +0 -0
  2. package/manifest.json +9 -3
  3. package/package.json +1 -1
  4. package/python/bin/2to3-3.12 +7 -0
  5. package/python/bin/idle3.12 +7 -0
  6. package/python/bin/pip +8 -0
  7. package/python/bin/pip3 +8 -0
  8. package/python/bin/pip3.12 +8 -0
  9. package/python/bin/pydoc3.12 +7 -0
  10. package/python/bin/python3 +0 -0
  11. package/python/bin/python3.12 +0 -0
  12. package/python/bin/python3.12-config +76 -0
  13. package/python/include/python3.12/Python.h +109 -0
  14. package/python/include/python3.12/abstract.h +899 -0
  15. package/python/include/python3.12/bltinmodule.h +14 -0
  16. package/python/include/python3.12/boolobject.h +42 -0
  17. package/python/include/python3.12/bytearrayobject.h +44 -0
  18. package/python/include/python3.12/bytesobject.h +69 -0
  19. package/python/include/python3.12/ceval.h +168 -0
  20. package/python/include/python3.12/codecs.h +248 -0
  21. package/python/include/python3.12/compile.h +22 -0
  22. package/python/include/python3.12/complexobject.h +30 -0
  23. package/python/include/python3.12/cpython/abstract.h +206 -0
  24. package/python/include/python3.12/cpython/bytearrayobject.h +34 -0
  25. package/python/include/python3.12/cpython/bytesobject.h +133 -0
  26. package/python/include/python3.12/cpython/cellobject.h +44 -0
  27. package/python/include/python3.12/cpython/ceval.h +35 -0
  28. package/python/include/python3.12/cpython/classobject.h +71 -0
  29. package/python/include/python3.12/cpython/code.h +389 -0
  30. package/python/include/python3.12/cpython/compile.h +69 -0
  31. package/python/include/python3.12/cpython/complexobject.h +44 -0
  32. package/python/include/python3.12/cpython/context.h +78 -0
  33. package/python/include/python3.12/cpython/descrobject.h +64 -0
  34. package/python/include/python3.12/cpython/dictobject.h +118 -0
  35. package/python/include/python3.12/cpython/fileobject.h +19 -0
  36. package/python/include/python3.12/cpython/fileutils.h +8 -0
  37. package/python/include/python3.12/cpython/floatobject.h +27 -0
  38. package/python/include/python3.12/cpython/frameobject.h +29 -0
  39. package/python/include/python3.12/cpython/funcobject.h +190 -0
  40. package/python/include/python3.12/cpython/genobject.h +89 -0
  41. package/python/include/python3.12/cpython/import.h +46 -0
  42. package/python/include/python3.12/cpython/initconfig.h +256 -0
  43. package/python/include/python3.12/cpython/interpreteridobject.h +11 -0
  44. package/python/include/python3.12/cpython/listobject.h +47 -0
  45. package/python/include/python3.12/cpython/longintrepr.h +133 -0
  46. package/python/include/python3.12/cpython/longobject.h +100 -0
  47. package/python/include/python3.12/cpython/memoryobject.h +52 -0
  48. package/python/include/python3.12/cpython/methodobject.h +66 -0
  49. package/python/include/python3.12/cpython/modsupport.h +109 -0
  50. package/python/include/python3.12/cpython/object.h +575 -0
  51. package/python/include/python3.12/cpython/objimpl.h +95 -0
  52. package/python/include/python3.12/cpython/odictobject.h +43 -0
  53. package/python/include/python3.12/cpython/picklebufobject.h +31 -0
  54. package/python/include/python3.12/cpython/pthread_stubs.h +88 -0
  55. package/python/include/python3.12/cpython/pyctype.h +39 -0
  56. package/python/include/python3.12/cpython/pydebug.h +38 -0
  57. package/python/include/python3.12/cpython/pyerrors.h +178 -0
  58. package/python/include/python3.12/cpython/pyfpe.h +15 -0
  59. package/python/include/python3.12/cpython/pyframe.h +35 -0
  60. package/python/include/python3.12/cpython/pylifecycle.h +111 -0
  61. package/python/include/python3.12/cpython/pymem.h +98 -0
  62. package/python/include/python3.12/cpython/pystate.h +456 -0
  63. package/python/include/python3.12/cpython/pythonrun.h +121 -0
  64. package/python/include/python3.12/cpython/pythread.h +42 -0
  65. package/python/include/python3.12/cpython/pytime.h +331 -0
  66. package/python/include/python3.12/cpython/setobject.h +72 -0
  67. package/python/include/python3.12/cpython/sysmodule.h +16 -0
  68. package/python/include/python3.12/cpython/traceback.h +16 -0
  69. package/python/include/python3.12/cpython/tupleobject.h +39 -0
  70. package/python/include/python3.12/cpython/unicodeobject.h +976 -0
  71. package/python/include/python3.12/cpython/warnings.h +20 -0
  72. package/python/include/python3.12/cpython/weakrefobject.h +56 -0
  73. package/python/include/python3.12/datetime.h +267 -0
  74. package/python/include/python3.12/descrobject.h +100 -0
  75. package/python/include/python3.12/dictobject.h +97 -0
  76. package/python/include/python3.12/dynamic_annotations.h +499 -0
  77. package/python/include/python3.12/enumobject.h +17 -0
  78. package/python/include/python3.12/errcode.h +38 -0
  79. package/python/include/python3.12/exports.h +36 -0
  80. package/python/include/python3.12/fileobject.h +49 -0
  81. package/python/include/python3.12/fileutils.h +26 -0
  82. package/python/include/python3.12/floatobject.h +54 -0
  83. package/python/include/python3.12/frameobject.h +20 -0
  84. package/python/include/python3.12/genericaliasobject.h +14 -0
  85. package/python/include/python3.12/import.h +98 -0
  86. package/python/include/python3.12/internal/pycore_abstract.h +25 -0
  87. package/python/include/python3.12/internal/pycore_asdl.h +112 -0
  88. package/python/include/python3.12/internal/pycore_ast.h +922 -0
  89. package/python/include/python3.12/internal/pycore_ast_state.h +265 -0
  90. package/python/include/python3.12/internal/pycore_atexit.h +57 -0
  91. package/python/include/python3.12/internal/pycore_atomic.h +557 -0
  92. package/python/include/python3.12/internal/pycore_atomic_funcs.h +94 -0
  93. package/python/include/python3.12/internal/pycore_bitutils.h +186 -0
  94. package/python/include/python3.12/internal/pycore_blocks_output_buffer.h +317 -0
  95. package/python/include/python3.12/internal/pycore_bytes_methods.h +73 -0
  96. package/python/include/python3.12/internal/pycore_bytesobject.h +47 -0
  97. package/python/include/python3.12/internal/pycore_call.h +133 -0
  98. package/python/include/python3.12/internal/pycore_ceval.h +164 -0
  99. package/python/include/python3.12/internal/pycore_ceval_state.h +103 -0
  100. package/python/include/python3.12/internal/pycore_code.h +496 -0
  101. package/python/include/python3.12/internal/pycore_compile.h +118 -0
  102. package/python/include/python3.12/internal/pycore_condvar.h +99 -0
  103. package/python/include/python3.12/internal/pycore_context.h +71 -0
  104. package/python/include/python3.12/internal/pycore_descrobject.h +26 -0
  105. package/python/include/python3.12/internal/pycore_dict.h +199 -0
  106. package/python/include/python3.12/internal/pycore_dict_state.h +50 -0
  107. package/python/include/python3.12/internal/pycore_dtoa.h +69 -0
  108. package/python/include/python3.12/internal/pycore_emscripten_signal.h +25 -0
  109. package/python/include/python3.12/internal/pycore_exceptions.h +37 -0
  110. package/python/include/python3.12/internal/pycore_faulthandler.h +99 -0
  111. package/python/include/python3.12/internal/pycore_fileutils.h +292 -0
  112. package/python/include/python3.12/internal/pycore_fileutils_windows.h +98 -0
  113. package/python/include/python3.12/internal/pycore_floatobject.h +71 -0
  114. package/python/include/python3.12/internal/pycore_flowgraph.h +120 -0
  115. package/python/include/python3.12/internal/pycore_format.h +27 -0
  116. package/python/include/python3.12/internal/pycore_frame.h +283 -0
  117. package/python/include/python3.12/internal/pycore_function.h +26 -0
  118. package/python/include/python3.12/internal/pycore_gc.h +211 -0
  119. package/python/include/python3.12/internal/pycore_genobject.h +49 -0
  120. package/python/include/python3.12/internal/pycore_getopt.h +22 -0
  121. package/python/include/python3.12/internal/pycore_gil.h +50 -0
  122. package/python/include/python3.12/internal/pycore_global_objects.h +105 -0
  123. package/python/include/python3.12/internal/pycore_global_objects_fini_generated.h +1517 -0
  124. package/python/include/python3.12/internal/pycore_global_strings.h +777 -0
  125. package/python/include/python3.12/internal/pycore_hamt.h +134 -0
  126. package/python/include/python3.12/internal/pycore_hashtable.h +149 -0
  127. package/python/include/python3.12/internal/pycore_import.h +183 -0
  128. package/python/include/python3.12/internal/pycore_initconfig.h +179 -0
  129. package/python/include/python3.12/internal/pycore_instruments.h +106 -0
  130. package/python/include/python3.12/internal/pycore_interp.h +275 -0
  131. package/python/include/python3.12/internal/pycore_intrinsics.h +32 -0
  132. package/python/include/python3.12/internal/pycore_list.h +83 -0
  133. package/python/include/python3.12/internal/pycore_long.h +258 -0
  134. package/python/include/python3.12/internal/pycore_memoryobject.h +18 -0
  135. package/python/include/python3.12/internal/pycore_moduleobject.h +45 -0
  136. package/python/include/python3.12/internal/pycore_namespace.h +20 -0
  137. package/python/include/python3.12/internal/pycore_object.h +455 -0
  138. package/python/include/python3.12/internal/pycore_object_state.h +42 -0
  139. package/python/include/python3.12/internal/pycore_obmalloc.h +700 -0
  140. package/python/include/python3.12/internal/pycore_obmalloc_init.h +73 -0
  141. package/python/include/python3.12/internal/pycore_opcode.h +587 -0
  142. package/python/include/python3.12/internal/pycore_opcode_utils.h +92 -0
  143. package/python/include/python3.12/internal/pycore_parser.h +66 -0
  144. package/python/include/python3.12/internal/pycore_pathconfig.h +24 -0
  145. package/python/include/python3.12/internal/pycore_pyarena.h +64 -0
  146. package/python/include/python3.12/internal/pycore_pyerrors.h +129 -0
  147. package/python/include/python3.12/internal/pycore_pyhash.h +40 -0
  148. package/python/include/python3.12/internal/pycore_pylifecycle.h +99 -0
  149. package/python/include/python3.12/internal/pycore_pymath.h +205 -0
  150. package/python/include/python3.12/internal/pycore_pymem.h +98 -0
  151. package/python/include/python3.12/internal/pycore_pymem_init.h +85 -0
  152. package/python/include/python3.12/internal/pycore_pystate.h +180 -0
  153. package/python/include/python3.12/internal/pycore_pythread.h +81 -0
  154. package/python/include/python3.12/internal/pycore_range.h +21 -0
  155. package/python/include/python3.12/internal/pycore_runtime.h +235 -0
  156. package/python/include/python3.12/internal/pycore_runtime_init.h +188 -0
  157. package/python/include/python3.12/internal/pycore_runtime_init_generated.h +1511 -0
  158. package/python/include/python3.12/internal/pycore_signal.h +98 -0
  159. package/python/include/python3.12/internal/pycore_sliceobject.h +22 -0
  160. package/python/include/python3.12/internal/pycore_strhex.h +36 -0
  161. package/python/include/python3.12/internal/pycore_structseq.h +39 -0
  162. package/python/include/python3.12/internal/pycore_symtable.h +160 -0
  163. package/python/include/python3.12/internal/pycore_sysmodule.h +34 -0
  164. package/python/include/python3.12/internal/pycore_time.h +25 -0
  165. package/python/include/python3.12/internal/pycore_token.h +108 -0
  166. package/python/include/python3.12/internal/pycore_traceback.h +101 -0
  167. package/python/include/python3.12/internal/pycore_tracemalloc.h +123 -0
  168. package/python/include/python3.12/internal/pycore_tuple.h +79 -0
  169. package/python/include/python3.12/internal/pycore_typeobject.h +151 -0
  170. package/python/include/python3.12/internal/pycore_typevarobject.h +24 -0
  171. package/python/include/python3.12/internal/pycore_ucnhash.h +34 -0
  172. package/python/include/python3.12/internal/pycore_unicodeobject.h +86 -0
  173. package/python/include/python3.12/internal/pycore_unicodeobject_generated.h +2832 -0
  174. package/python/include/python3.12/internal/pycore_unionobject.h +23 -0
  175. package/python/include/python3.12/internal/pycore_warnings.h +29 -0
  176. package/python/include/python3.12/interpreteridobject.h +17 -0
  177. package/python/include/python3.12/intrcheck.h +30 -0
  178. package/python/include/python3.12/iterobject.h +27 -0
  179. package/python/include/python3.12/listobject.h +52 -0
  180. package/python/include/python3.12/longobject.h +108 -0
  181. package/python/include/python3.12/marshal.h +31 -0
  182. package/python/include/python3.12/memoryobject.h +34 -0
  183. package/python/include/python3.12/methodobject.h +132 -0
  184. package/python/include/python3.12/modsupport.h +168 -0
  185. package/python/include/python3.12/moduleobject.h +119 -0
  186. package/python/include/python3.12/object.h +993 -0
  187. package/python/include/python3.12/objimpl.h +234 -0
  188. package/python/include/python3.12/opcode.h +271 -0
  189. package/python/include/python3.12/osdefs.h +51 -0
  190. package/python/include/python3.12/osmodule.h +17 -0
  191. package/python/include/python3.12/patchlevel.h +35 -0
  192. package/python/include/python3.12/py_curses.h +99 -0
  193. package/python/include/python3.12/pybuffer.h +145 -0
  194. package/python/include/python3.12/pycapsule.h +59 -0
  195. package/python/include/python3.12/pyconfig.h +1943 -0
  196. package/python/include/python3.12/pydtrace.h +59 -0
  197. package/python/include/python3.12/pyerrors.h +337 -0
  198. package/python/include/python3.12/pyexpat.h +62 -0
  199. package/python/include/python3.12/pyframe.h +26 -0
  200. package/python/include/python3.12/pyhash.h +144 -0
  201. package/python/include/python3.12/pylifecycle.h +78 -0
  202. package/python/include/python3.12/pymacconfig.h +99 -0
  203. package/python/include/python3.12/pymacro.h +172 -0
  204. package/python/include/python3.12/pymath.h +62 -0
  205. package/python/include/python3.12/pymem.h +104 -0
  206. package/python/include/python3.12/pyport.h +782 -0
  207. package/python/include/python3.12/pystate.h +132 -0
  208. package/python/include/python3.12/pystats.h +110 -0
  209. package/python/include/python3.12/pystrcmp.h +23 -0
  210. package/python/include/python3.12/pystrtod.h +46 -0
  211. package/python/include/python3.12/pythonrun.h +49 -0
  212. package/python/include/python3.12/pythread.h +135 -0
  213. package/python/include/python3.12/pytypedefs.h +30 -0
  214. package/python/include/python3.12/rangeobject.h +27 -0
  215. package/python/include/python3.12/setobject.h +49 -0
  216. package/python/include/python3.12/sliceobject.h +65 -0
  217. package/python/include/python3.12/structmember.h +56 -0
  218. package/python/include/python3.12/structseq.h +49 -0
  219. package/python/include/python3.12/sysmodule.h +54 -0
  220. package/python/include/python3.12/traceback.h +26 -0
  221. package/python/include/python3.12/tracemalloc.h +77 -0
  222. package/python/include/python3.12/tupleobject.h +46 -0
  223. package/python/include/python3.12/typeslots.h +88 -0
  224. package/python/include/python3.12/unicodeobject.h +1020 -0
  225. package/python/include/python3.12/warnings.h +45 -0
  226. package/python/include/python3.12/weakrefobject.h +42 -0
  227. package/python/lib/libpython3.12.dylib +0 -0
  228. package/python/lib/python3.12/LICENSE.txt +279 -0
  229. package/python/lib/python3.12/__future__.py +147 -0
  230. package/python/lib/python3.12/__hello__.py +16 -0
  231. package/python/lib/python3.12/__phello__/__init__.py +7 -0
  232. package/python/lib/python3.12/__phello__/spam.py +7 -0
  233. package/python/lib/python3.12/_aix_support.py +108 -0
  234. package/python/lib/python3.12/_collections_abc.py +1173 -0
  235. package/python/lib/python3.12/_compat_pickle.py +252 -0
  236. package/python/lib/python3.12/_compression.py +162 -0
  237. package/python/lib/python3.12/_markupbase.py +396 -0
  238. package/python/lib/python3.12/_osx_support.py +579 -0
  239. package/python/lib/python3.12/_py_abc.py +147 -0
  240. package/python/lib/python3.12/_pydatetime.py +2643 -0
  241. package/python/lib/python3.12/_pydecimal.py +6339 -0
  242. package/python/lib/python3.12/_pyio.py +2698 -0
  243. package/python/lib/python3.12/_pylong.py +329 -0
  244. package/python/lib/python3.12/_sitebuiltins.py +103 -0
  245. package/python/lib/python3.12/_strptime.py +664 -0
  246. package/python/lib/python3.12/_sysconfigdata__darwin_darwin.py +984 -0
  247. package/python/lib/python3.12/_threading_local.py +242 -0
  248. package/python/lib/python3.12/_weakrefset.py +205 -0
  249. package/python/lib/python3.12/abc.py +188 -0
  250. package/python/lib/python3.12/aifc.py +984 -0
  251. package/python/lib/python3.12/antigravity.py +17 -0
  252. package/python/lib/python3.12/argparse.py +2650 -0
  253. package/python/lib/python3.12/ast.py +1840 -0
  254. package/python/lib/python3.12/asyncio/__init__.py +47 -0
  255. package/python/lib/python3.12/asyncio/__main__.py +128 -0
  256. package/python/lib/python3.12/asyncio/base_events.py +2024 -0
  257. package/python/lib/python3.12/asyncio/base_futures.py +67 -0
  258. package/python/lib/python3.12/asyncio/base_subprocess.py +285 -0
  259. package/python/lib/python3.12/asyncio/base_tasks.py +94 -0
  260. package/python/lib/python3.12/asyncio/constants.py +41 -0
  261. package/python/lib/python3.12/asyncio/coroutines.py +109 -0
  262. package/python/lib/python3.12/asyncio/events.py +868 -0
  263. package/python/lib/python3.12/asyncio/exceptions.py +62 -0
  264. package/python/lib/python3.12/asyncio/format_helpers.py +76 -0
  265. package/python/lib/python3.12/asyncio/futures.py +430 -0
  266. package/python/lib/python3.12/asyncio/locks.py +586 -0
  267. package/python/lib/python3.12/asyncio/log.py +7 -0
  268. package/python/lib/python3.12/asyncio/mixins.py +21 -0
  269. package/python/lib/python3.12/asyncio/proactor_events.py +897 -0
  270. package/python/lib/python3.12/asyncio/protocols.py +216 -0
  271. package/python/lib/python3.12/asyncio/queues.py +244 -0
  272. package/python/lib/python3.12/asyncio/runners.py +216 -0
  273. package/python/lib/python3.12/asyncio/selector_events.py +1324 -0
  274. package/python/lib/python3.12/asyncio/sslproto.py +929 -0
  275. package/python/lib/python3.12/asyncio/staggered.py +174 -0
  276. package/python/lib/python3.12/asyncio/streams.py +770 -0
  277. package/python/lib/python3.12/asyncio/subprocess.py +229 -0
  278. package/python/lib/python3.12/asyncio/taskgroups.py +268 -0
  279. package/python/lib/python3.12/asyncio/tasks.py +1065 -0
  280. package/python/lib/python3.12/asyncio/threads.py +25 -0
  281. package/python/lib/python3.12/asyncio/timeouts.py +168 -0
  282. package/python/lib/python3.12/asyncio/transports.py +335 -0
  283. package/python/lib/python3.12/asyncio/trsock.py +98 -0
  284. package/python/lib/python3.12/asyncio/unix_events.py +1500 -0
  285. package/python/lib/python3.12/asyncio/windows_events.py +901 -0
  286. package/python/lib/python3.12/asyncio/windows_utils.py +173 -0
  287. package/python/lib/python3.12/base64.py +586 -0
  288. package/python/lib/python3.12/bdb.py +920 -0
  289. package/python/lib/python3.12/bisect.py +118 -0
  290. package/python/lib/python3.12/bz2.py +344 -0
  291. package/python/lib/python3.12/cProfile.py +195 -0
  292. package/python/lib/python3.12/calendar.py +808 -0
  293. package/python/lib/python3.12/cgi.py +1014 -0
  294. package/python/lib/python3.12/cgitb.py +332 -0
  295. package/python/lib/python3.12/chunk.py +173 -0
  296. package/python/lib/python3.12/cmd.py +401 -0
  297. package/python/lib/python3.12/code.py +324 -0
  298. package/python/lib/python3.12/codecs.py +1129 -0
  299. package/python/lib/python3.12/codeop.py +161 -0
  300. package/python/lib/python3.12/collections/__init__.py +1592 -0
  301. package/python/lib/python3.12/collections/abc.py +3 -0
  302. package/python/lib/python3.12/colorsys.py +166 -0
  303. package/python/lib/python3.12/compileall.py +469 -0
  304. package/python/lib/python3.12/concurrent/__init__.py +1 -0
  305. package/python/lib/python3.12/concurrent/futures/__init__.py +54 -0
  306. package/python/lib/python3.12/concurrent/futures/_base.py +654 -0
  307. package/python/lib/python3.12/concurrent/futures/process.py +876 -0
  308. package/python/lib/python3.12/concurrent/futures/thread.py +240 -0
  309. package/python/lib/python3.12/config-3.12-darwin/Makefile +3224 -0
  310. package/python/lib/python3.12/config-3.12-darwin/Setup +303 -0
  311. package/python/lib/python3.12/config-3.12-darwin/Setup.bootstrap +36 -0
  312. package/python/lib/python3.12/config-3.12-darwin/Setup.local +90 -0
  313. package/python/lib/python3.12/config-3.12-darwin/Setup.stdlib +183 -0
  314. package/python/lib/python3.12/config-3.12-darwin/config.c +246 -0
  315. package/python/lib/python3.12/config-3.12-darwin/config.c.in +71 -0
  316. package/python/lib/python3.12/config-3.12-darwin/install-sh +541 -0
  317. package/python/lib/python3.12/config-3.12-darwin/makesetup +353 -0
  318. package/python/lib/python3.12/config-3.12-darwin/python-config.py +76 -0
  319. package/python/lib/python3.12/config-3.12-darwin/python.o +0 -0
  320. package/python/lib/python3.12/configparser.py +1333 -0
  321. package/python/lib/python3.12/contextlib.py +800 -0
  322. package/python/lib/python3.12/contextvars.py +4 -0
  323. package/python/lib/python3.12/copy.py +292 -0
  324. package/python/lib/python3.12/copyreg.py +217 -0
  325. package/python/lib/python3.12/crypt.py +124 -0
  326. package/python/lib/python3.12/csv.py +451 -0
  327. package/python/lib/python3.12/ctypes/__init__.py +582 -0
  328. package/python/lib/python3.12/ctypes/_aix.py +327 -0
  329. package/python/lib/python3.12/ctypes/_endian.py +78 -0
  330. package/python/lib/python3.12/ctypes/macholib/README.ctypes +7 -0
  331. package/python/lib/python3.12/ctypes/macholib/__init__.py +9 -0
  332. package/python/lib/python3.12/ctypes/macholib/dyld.py +165 -0
  333. package/python/lib/python3.12/ctypes/macholib/dylib.py +42 -0
  334. package/python/lib/python3.12/ctypes/macholib/fetch_macholib +2 -0
  335. package/python/lib/python3.12/ctypes/macholib/fetch_macholib.bat +1 -0
  336. package/python/lib/python3.12/ctypes/macholib/framework.py +42 -0
  337. package/python/lib/python3.12/ctypes/util.py +379 -0
  338. package/python/lib/python3.12/ctypes/wintypes.py +202 -0
  339. package/python/lib/python3.12/curses/__init__.py +101 -0
  340. package/python/lib/python3.12/curses/ascii.py +99 -0
  341. package/python/lib/python3.12/curses/has_key.py +192 -0
  342. package/python/lib/python3.12/curses/panel.py +6 -0
  343. package/python/lib/python3.12/curses/textpad.py +204 -0
  344. package/python/lib/python3.12/dataclasses.py +1588 -0
  345. package/python/lib/python3.12/datetime.py +9 -0
  346. package/python/lib/python3.12/dbm/__init__.py +190 -0
  347. package/python/lib/python3.12/dbm/dumb.py +317 -0
  348. package/python/lib/python3.12/dbm/gnu.py +3 -0
  349. package/python/lib/python3.12/dbm/ndbm.py +3 -0
  350. package/python/lib/python3.12/decimal.py +108 -0
  351. package/python/lib/python3.12/difflib.py +2056 -0
  352. package/python/lib/python3.12/dis.py +805 -0
  353. package/python/lib/python3.12/doctest.py +2845 -0
  354. package/python/lib/python3.12/email/__init__.py +61 -0
  355. package/python/lib/python3.12/email/_encoded_words.py +233 -0
  356. package/python/lib/python3.12/email/_header_value_parser.py +3108 -0
  357. package/python/lib/python3.12/email/_parseaddr.py +557 -0
  358. package/python/lib/python3.12/email/_policybase.py +382 -0
  359. package/python/lib/python3.12/email/architecture.rst +216 -0
  360. package/python/lib/python3.12/email/base64mime.py +115 -0
  361. package/python/lib/python3.12/email/charset.py +398 -0
  362. package/python/lib/python3.12/email/contentmanager.py +251 -0
  363. package/python/lib/python3.12/email/encoders.py +65 -0
  364. package/python/lib/python3.12/email/errors.py +117 -0
  365. package/python/lib/python3.12/email/feedparser.py +534 -0
  366. package/python/lib/python3.12/email/generator.py +530 -0
  367. package/python/lib/python3.12/email/header.py +573 -0
  368. package/python/lib/python3.12/email/headerregistry.py +604 -0
  369. package/python/lib/python3.12/email/iterators.py +68 -0
  370. package/python/lib/python3.12/email/message.py +1215 -0
  371. package/python/lib/python3.12/email/mime/__init__.py +0 -0
  372. package/python/lib/python3.12/email/mime/application.py +37 -0
  373. package/python/lib/python3.12/email/mime/audio.py +100 -0
  374. package/python/lib/python3.12/email/mime/base.py +29 -0
  375. package/python/lib/python3.12/email/mime/image.py +152 -0
  376. package/python/lib/python3.12/email/mime/message.py +33 -0
  377. package/python/lib/python3.12/email/mime/multipart.py +47 -0
  378. package/python/lib/python3.12/email/mime/nonmultipart.py +21 -0
  379. package/python/lib/python3.12/email/mime/text.py +40 -0
  380. package/python/lib/python3.12/email/parser.py +127 -0
  381. package/python/lib/python3.12/email/policy.py +232 -0
  382. package/python/lib/python3.12/email/quoprimime.py +300 -0
  383. package/python/lib/python3.12/email/utils.py +486 -0
  384. package/python/lib/python3.12/encodings/__init__.py +174 -0
  385. package/python/lib/python3.12/encodings/aliases.py +551 -0
  386. package/python/lib/python3.12/encodings/ascii.py +50 -0
  387. package/python/lib/python3.12/encodings/base64_codec.py +55 -0
  388. package/python/lib/python3.12/encodings/big5.py +39 -0
  389. package/python/lib/python3.12/encodings/big5hkscs.py +39 -0
  390. package/python/lib/python3.12/encodings/bz2_codec.py +78 -0
  391. package/python/lib/python3.12/encodings/charmap.py +69 -0
  392. package/python/lib/python3.12/encodings/cp037.py +307 -0
  393. package/python/lib/python3.12/encodings/cp1006.py +307 -0
  394. package/python/lib/python3.12/encodings/cp1026.py +307 -0
  395. package/python/lib/python3.12/encodings/cp1125.py +698 -0
  396. package/python/lib/python3.12/encodings/cp1140.py +307 -0
  397. package/python/lib/python3.12/encodings/cp1250.py +307 -0
  398. package/python/lib/python3.12/encodings/cp1251.py +307 -0
  399. package/python/lib/python3.12/encodings/cp1252.py +307 -0
  400. package/python/lib/python3.12/encodings/cp1253.py +307 -0
  401. package/python/lib/python3.12/encodings/cp1254.py +307 -0
  402. package/python/lib/python3.12/encodings/cp1255.py +307 -0
  403. package/python/lib/python3.12/encodings/cp1256.py +307 -0
  404. package/python/lib/python3.12/encodings/cp1257.py +307 -0
  405. package/python/lib/python3.12/encodings/cp1258.py +307 -0
  406. package/python/lib/python3.12/encodings/cp273.py +307 -0
  407. package/python/lib/python3.12/encodings/cp424.py +307 -0
  408. package/python/lib/python3.12/encodings/cp437.py +698 -0
  409. package/python/lib/python3.12/encodings/cp500.py +307 -0
  410. package/python/lib/python3.12/encodings/cp720.py +309 -0
  411. package/python/lib/python3.12/encodings/cp737.py +698 -0
  412. package/python/lib/python3.12/encodings/cp775.py +697 -0
  413. package/python/lib/python3.12/encodings/cp850.py +698 -0
  414. package/python/lib/python3.12/encodings/cp852.py +698 -0
  415. package/python/lib/python3.12/encodings/cp855.py +698 -0
  416. package/python/lib/python3.12/encodings/cp856.py +307 -0
  417. package/python/lib/python3.12/encodings/cp857.py +694 -0
  418. package/python/lib/python3.12/encodings/cp858.py +698 -0
  419. package/python/lib/python3.12/encodings/cp860.py +698 -0
  420. package/python/lib/python3.12/encodings/cp861.py +698 -0
  421. package/python/lib/python3.12/encodings/cp862.py +698 -0
  422. package/python/lib/python3.12/encodings/cp863.py +698 -0
  423. package/python/lib/python3.12/encodings/cp864.py +690 -0
  424. package/python/lib/python3.12/encodings/cp865.py +698 -0
  425. package/python/lib/python3.12/encodings/cp866.py +698 -0
  426. package/python/lib/python3.12/encodings/cp869.py +689 -0
  427. package/python/lib/python3.12/encodings/cp874.py +307 -0
  428. package/python/lib/python3.12/encodings/cp875.py +307 -0
  429. package/python/lib/python3.12/encodings/cp932.py +39 -0
  430. package/python/lib/python3.12/encodings/cp949.py +39 -0
  431. package/python/lib/python3.12/encodings/cp950.py +39 -0
  432. package/python/lib/python3.12/encodings/euc_jis_2004.py +39 -0
  433. package/python/lib/python3.12/encodings/euc_jisx0213.py +39 -0
  434. package/python/lib/python3.12/encodings/euc_jp.py +39 -0
  435. package/python/lib/python3.12/encodings/euc_kr.py +39 -0
  436. package/python/lib/python3.12/encodings/gb18030.py +39 -0
  437. package/python/lib/python3.12/encodings/gb2312.py +39 -0
  438. package/python/lib/python3.12/encodings/gbk.py +39 -0
  439. package/python/lib/python3.12/encodings/hex_codec.py +55 -0
  440. package/python/lib/python3.12/encodings/hp_roman8.py +314 -0
  441. package/python/lib/python3.12/encodings/hz.py +39 -0
  442. package/python/lib/python3.12/encodings/idna.py +317 -0
  443. package/python/lib/python3.12/encodings/iso2022_jp.py +39 -0
  444. package/python/lib/python3.12/encodings/iso2022_jp_1.py +39 -0
  445. package/python/lib/python3.12/encodings/iso2022_jp_2.py +39 -0
  446. package/python/lib/python3.12/encodings/iso2022_jp_2004.py +39 -0
  447. package/python/lib/python3.12/encodings/iso2022_jp_3.py +39 -0
  448. package/python/lib/python3.12/encodings/iso2022_jp_ext.py +39 -0
  449. package/python/lib/python3.12/encodings/iso2022_kr.py +39 -0
  450. package/python/lib/python3.12/encodings/iso8859_1.py +307 -0
  451. package/python/lib/python3.12/encodings/iso8859_10.py +307 -0
  452. package/python/lib/python3.12/encodings/iso8859_11.py +307 -0
  453. package/python/lib/python3.12/encodings/iso8859_13.py +307 -0
  454. package/python/lib/python3.12/encodings/iso8859_14.py +307 -0
  455. package/python/lib/python3.12/encodings/iso8859_15.py +307 -0
  456. package/python/lib/python3.12/encodings/iso8859_16.py +307 -0
  457. package/python/lib/python3.12/encodings/iso8859_2.py +307 -0
  458. package/python/lib/python3.12/encodings/iso8859_3.py +307 -0
  459. package/python/lib/python3.12/encodings/iso8859_4.py +307 -0
  460. package/python/lib/python3.12/encodings/iso8859_5.py +307 -0
  461. package/python/lib/python3.12/encodings/iso8859_6.py +307 -0
  462. package/python/lib/python3.12/encodings/iso8859_7.py +307 -0
  463. package/python/lib/python3.12/encodings/iso8859_8.py +307 -0
  464. package/python/lib/python3.12/encodings/iso8859_9.py +307 -0
  465. package/python/lib/python3.12/encodings/johab.py +39 -0
  466. package/python/lib/python3.12/encodings/koi8_r.py +307 -0
  467. package/python/lib/python3.12/encodings/koi8_t.py +308 -0
  468. package/python/lib/python3.12/encodings/koi8_u.py +307 -0
  469. package/python/lib/python3.12/encodings/kz1048.py +307 -0
  470. package/python/lib/python3.12/encodings/latin_1.py +50 -0
  471. package/python/lib/python3.12/encodings/mac_arabic.py +698 -0
  472. package/python/lib/python3.12/encodings/mac_croatian.py +307 -0
  473. package/python/lib/python3.12/encodings/mac_cyrillic.py +307 -0
  474. package/python/lib/python3.12/encodings/mac_farsi.py +307 -0
  475. package/python/lib/python3.12/encodings/mac_greek.py +307 -0
  476. package/python/lib/python3.12/encodings/mac_iceland.py +307 -0
  477. package/python/lib/python3.12/encodings/mac_latin2.py +312 -0
  478. package/python/lib/python3.12/encodings/mac_roman.py +307 -0
  479. package/python/lib/python3.12/encodings/mac_romanian.py +307 -0
  480. package/python/lib/python3.12/encodings/mac_turkish.py +307 -0
  481. package/python/lib/python3.12/encodings/mbcs.py +47 -0
  482. package/python/lib/python3.12/encodings/oem.py +41 -0
  483. package/python/lib/python3.12/encodings/palmos.py +308 -0
  484. package/python/lib/python3.12/encodings/ptcp154.py +312 -0
  485. package/python/lib/python3.12/encodings/punycode.py +237 -0
  486. package/python/lib/python3.12/encodings/quopri_codec.py +56 -0
  487. package/python/lib/python3.12/encodings/raw_unicode_escape.py +46 -0
  488. package/python/lib/python3.12/encodings/rot_13.py +113 -0
  489. package/python/lib/python3.12/encodings/shift_jis.py +39 -0
  490. package/python/lib/python3.12/encodings/shift_jis_2004.py +39 -0
  491. package/python/lib/python3.12/encodings/shift_jisx0213.py +39 -0
  492. package/python/lib/python3.12/encodings/tis_620.py +307 -0
  493. package/python/lib/python3.12/encodings/undefined.py +49 -0
  494. package/python/lib/python3.12/encodings/unicode_escape.py +46 -0
  495. package/python/lib/python3.12/encodings/utf_16.py +155 -0
  496. package/python/lib/python3.12/encodings/utf_16_be.py +42 -0
  497. package/python/lib/python3.12/encodings/utf_16_le.py +42 -0
  498. package/python/lib/python3.12/encodings/utf_32.py +150 -0
  499. package/python/lib/python3.12/encodings/utf_32_be.py +37 -0
  500. package/python/lib/python3.12/encodings/utf_32_le.py +37 -0
  501. package/python/lib/python3.12/encodings/utf_7.py +38 -0
  502. package/python/lib/python3.12/encodings/utf_8.py +42 -0
  503. package/python/lib/python3.12/encodings/utf_8_sig.py +130 -0
  504. package/python/lib/python3.12/encodings/uu_codec.py +103 -0
  505. package/python/lib/python3.12/encodings/zlib_codec.py +77 -0
  506. package/python/lib/python3.12/ensurepip/__init__.py +291 -0
  507. package/python/lib/python3.12/ensurepip/__main__.py +5 -0
  508. package/python/lib/python3.12/ensurepip/_bundled/pip-25.0.1-py3-none-any.whl +0 -0
  509. package/python/lib/python3.12/ensurepip/_uninstall.py +31 -0
  510. package/python/lib/python3.12/enum.py +2108 -0
  511. package/python/lib/python3.12/filecmp.py +315 -0
  512. package/python/lib/python3.12/fileinput.py +442 -0
  513. package/python/lib/python3.12/fnmatch.py +185 -0
  514. package/python/lib/python3.12/fractions.py +990 -0
  515. package/python/lib/python3.12/ftplib.py +966 -0
  516. package/python/lib/python3.12/functools.py +1009 -0
  517. package/python/lib/python3.12/genericpath.py +176 -0
  518. package/python/lib/python3.12/getopt.py +215 -0
  519. package/python/lib/python3.12/getpass.py +185 -0
  520. package/python/lib/python3.12/gettext.py +646 -0
  521. package/python/lib/python3.12/glob.py +252 -0
  522. package/python/lib/python3.12/graphlib.py +250 -0
  523. package/python/lib/python3.12/gzip.py +711 -0
  524. package/python/lib/python3.12/hashlib.py +253 -0
  525. package/python/lib/python3.12/heapq.py +603 -0
  526. package/python/lib/python3.12/hmac.py +219 -0
  527. package/python/lib/python3.12/html/__init__.py +132 -0
  528. package/python/lib/python3.12/html/entities.py +2513 -0
  529. package/python/lib/python3.12/html/parser.py +535 -0
  530. package/python/lib/python3.12/http/__init__.py +200 -0
  531. package/python/lib/python3.12/http/client.py +1570 -0
  532. package/python/lib/python3.12/http/cookiejar.py +2121 -0
  533. package/python/lib/python3.12/http/cookies.py +615 -0
  534. package/python/lib/python3.12/http/server.py +1335 -0
  535. package/python/lib/python3.12/imaplib.py +1641 -0
  536. package/python/lib/python3.12/imghdr.py +180 -0
  537. package/python/lib/python3.12/importlib/__init__.py +138 -0
  538. package/python/lib/python3.12/importlib/_abc.py +39 -0
  539. package/python/lib/python3.12/importlib/_bootstrap.py +1551 -0
  540. package/python/lib/python3.12/importlib/_bootstrap_external.py +1749 -0
  541. package/python/lib/python3.12/importlib/abc.py +239 -0
  542. package/python/lib/python3.12/importlib/machinery.py +20 -0
  543. package/python/lib/python3.12/importlib/metadata/__init__.py +966 -0
  544. package/python/lib/python3.12/importlib/metadata/_adapters.py +89 -0
  545. package/python/lib/python3.12/importlib/metadata/_collections.py +30 -0
  546. package/python/lib/python3.12/importlib/metadata/_functools.py +104 -0
  547. package/python/lib/python3.12/importlib/metadata/_itertools.py +73 -0
  548. package/python/lib/python3.12/importlib/metadata/_meta.py +63 -0
  549. package/python/lib/python3.12/importlib/metadata/_text.py +99 -0
  550. package/python/lib/python3.12/importlib/readers.py +12 -0
  551. package/python/lib/python3.12/importlib/resources/__init__.py +38 -0
  552. package/python/lib/python3.12/importlib/resources/_adapters.py +168 -0
  553. package/python/lib/python3.12/importlib/resources/_common.py +208 -0
  554. package/python/lib/python3.12/importlib/resources/_itertools.py +38 -0
  555. package/python/lib/python3.12/importlib/resources/_legacy.py +98 -0
  556. package/python/lib/python3.12/importlib/resources/abc.py +173 -0
  557. package/python/lib/python3.12/importlib/resources/readers.py +146 -0
  558. package/python/lib/python3.12/importlib/resources/simple.py +106 -0
  559. package/python/lib/python3.12/importlib/simple.py +14 -0
  560. package/python/lib/python3.12/importlib/util.py +270 -0
  561. package/python/lib/python3.12/inspect.py +3433 -0
  562. package/python/lib/python3.12/io.py +99 -0
  563. package/python/lib/python3.12/ipaddress.py +2430 -0
  564. package/python/lib/python3.12/json/__init__.py +359 -0
  565. package/python/lib/python3.12/json/decoder.py +357 -0
  566. package/python/lib/python3.12/json/encoder.py +443 -0
  567. package/python/lib/python3.12/json/scanner.py +73 -0
  568. package/python/lib/python3.12/json/tool.py +85 -0
  569. package/python/lib/python3.12/keyword.py +64 -0
  570. package/python/lib/python3.12/lib-dynload/.empty +0 -0
  571. package/python/lib/python3.12/lib-dynload/_crypt.cpython-312-darwin.so +0 -0
  572. package/python/lib/python3.12/lib-dynload/_dbm.cpython-312-darwin.so +0 -0
  573. package/python/lib/python3.12/linecache.py +185 -0
  574. package/python/lib/python3.12/locale.py +1779 -0
  575. package/python/lib/python3.12/logging/__init__.py +2345 -0
  576. package/python/lib/python3.12/logging/config.py +1078 -0
  577. package/python/lib/python3.12/logging/handlers.py +1624 -0
  578. package/python/lib/python3.12/lzma.py +356 -0
  579. package/python/lib/python3.12/mailbox.py +2153 -0
  580. package/python/lib/python3.12/mailcap.py +302 -0
  581. package/python/lib/python3.12/mimetypes.py +656 -0
  582. package/python/lib/python3.12/modulefinder.py +666 -0
  583. package/python/lib/python3.12/multiprocessing/__init__.py +37 -0
  584. package/python/lib/python3.12/multiprocessing/connection.py +1178 -0
  585. package/python/lib/python3.12/multiprocessing/context.py +377 -0
  586. package/python/lib/python3.12/multiprocessing/dummy/__init__.py +126 -0
  587. package/python/lib/python3.12/multiprocessing/dummy/connection.py +75 -0
  588. package/python/lib/python3.12/multiprocessing/forkserver.py +350 -0
  589. package/python/lib/python3.12/multiprocessing/heap.py +337 -0
  590. package/python/lib/python3.12/multiprocessing/managers.py +1387 -0
  591. package/python/lib/python3.12/multiprocessing/pool.py +957 -0
  592. package/python/lib/python3.12/multiprocessing/popen_fork.py +83 -0
  593. package/python/lib/python3.12/multiprocessing/popen_forkserver.py +74 -0
  594. package/python/lib/python3.12/multiprocessing/popen_spawn_posix.py +72 -0
  595. package/python/lib/python3.12/multiprocessing/popen_spawn_win32.py +145 -0
  596. package/python/lib/python3.12/multiprocessing/process.py +439 -0
  597. package/python/lib/python3.12/multiprocessing/queues.py +401 -0
  598. package/python/lib/python3.12/multiprocessing/reduction.py +281 -0
  599. package/python/lib/python3.12/multiprocessing/resource_sharer.py +154 -0
  600. package/python/lib/python3.12/multiprocessing/resource_tracker.py +294 -0
  601. package/python/lib/python3.12/multiprocessing/shared_memory.py +534 -0
  602. package/python/lib/python3.12/multiprocessing/sharedctypes.py +240 -0
  603. package/python/lib/python3.12/multiprocessing/spawn.py +307 -0
  604. package/python/lib/python3.12/multiprocessing/synchronize.py +404 -0
  605. package/python/lib/python3.12/multiprocessing/util.py +494 -0
  606. package/python/lib/python3.12/netrc.py +192 -0
  607. package/python/lib/python3.12/nntplib.py +1093 -0
  608. package/python/lib/python3.12/ntpath.py +869 -0
  609. package/python/lib/python3.12/nturl2path.py +69 -0
  610. package/python/lib/python3.12/numbers.py +418 -0
  611. package/python/lib/python3.12/opcode.py +493 -0
  612. package/python/lib/python3.12/operator.py +467 -0
  613. package/python/lib/python3.12/optparse.py +1681 -0
  614. package/python/lib/python3.12/os.py +1159 -0
  615. package/python/lib/python3.12/pathlib.py +1435 -0
  616. package/python/lib/python3.12/pdb.py +1987 -0
  617. package/python/lib/python3.12/pickle.py +1866 -0
  618. package/python/lib/python3.12/pickletools.py +2904 -0
  619. package/python/lib/python3.12/pipes.py +250 -0
  620. package/python/lib/python3.12/pkgutil.py +529 -0
  621. package/python/lib/python3.12/platform.py +1359 -0
  622. package/python/lib/python3.12/plistlib.py +920 -0
  623. package/python/lib/python3.12/poplib.py +478 -0
  624. package/python/lib/python3.12/posixpath.py +577 -0
  625. package/python/lib/python3.12/pprint.py +658 -0
  626. package/python/lib/python3.12/profile.py +615 -0
  627. package/python/lib/python3.12/pstats.py +778 -0
  628. package/python/lib/python3.12/pty.py +211 -0
  629. package/python/lib/python3.12/py_compile.py +212 -0
  630. package/python/lib/python3.12/pyclbr.py +314 -0
  631. package/python/lib/python3.12/pydoc.py +2950 -0
  632. package/python/lib/python3.12/pydoc_data/__init__.py +0 -0
  633. package/python/lib/python3.12/pydoc_data/_pydoc.css +112 -0
  634. package/python/lib/python3.12/pydoc_data/topics.py +12500 -0
  635. package/python/lib/python3.12/queue.py +326 -0
  636. package/python/lib/python3.12/quopri.py +237 -0
  637. package/python/lib/python3.12/random.py +996 -0
  638. package/python/lib/python3.12/re/__init__.py +385 -0
  639. package/python/lib/python3.12/re/_casefix.py +106 -0
  640. package/python/lib/python3.12/re/_compiler.py +770 -0
  641. package/python/lib/python3.12/re/_constants.py +220 -0
  642. package/python/lib/python3.12/re/_parser.py +1080 -0
  643. package/python/lib/python3.12/reprlib.py +214 -0
  644. package/python/lib/python3.12/rlcompleter.py +219 -0
  645. package/python/lib/python3.12/runpy.py +319 -0
  646. package/python/lib/python3.12/sched.py +167 -0
  647. package/python/lib/python3.12/secrets.py +71 -0
  648. package/python/lib/python3.12/selectors.py +623 -0
  649. package/python/lib/python3.12/shelve.py +243 -0
  650. package/python/lib/python3.12/shlex.py +345 -0
  651. package/python/lib/python3.12/shutil.py +1566 -0
  652. package/python/lib/python3.12/signal.py +94 -0
  653. package/python/lib/python3.12/site-packages/README.txt +2 -0
  654. package/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
  655. package/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
  656. package/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
  657. package/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
  658. package/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
  659. package/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
  660. package/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
  661. package/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
  662. package/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +264 -0
  663. package/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1298 -0
  664. package/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
  665. package/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +212 -0
  666. package/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
  667. package/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
  668. package/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
  669. package/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
  670. package/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +472 -0
  671. package/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
  672. package/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
  673. package/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
  674. package/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
  675. package/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
  676. package/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
  677. package/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
  678. package/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +196 -0
  679. package/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
  680. package/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
  681. package/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
  682. package/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
  683. package/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
  684. package/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
  685. package/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +904 -0
  686. package/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +403 -0
  687. package/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
  688. package/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
  689. package/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
  690. package/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
  691. package/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
  692. package/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
  693. package/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
  694. package/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
  695. package/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
  696. package/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
  697. package/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
  698. package/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
  699. package/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
  700. package/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
  701. package/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1113 -0
  702. package/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
  703. package/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +438 -0
  704. package/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
  705. package/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
  706. package/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
  707. package/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
  708. package/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
  709. package/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
  710. package/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
  711. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  712. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  713. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +235 -0
  714. package/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
  715. package/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  716. package/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
  717. package/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +23 -0
  718. package/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +42 -0
  719. package/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
  720. package/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
  721. package/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
  722. package/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
  723. package/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +91 -0
  724. package/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +23 -0
  725. package/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +124 -0
  726. package/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +36 -0
  727. package/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
  728. package/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
  729. package/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
  730. package/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +570 -0
  731. package/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
  732. package/python/lib/python3.12/site-packages/pip/_internal/network/download.py +340 -0
  733. package/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
  734. package/python/lib/python3.12/site-packages/pip/_internal/network/session.py +537 -0
  735. package/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
  736. package/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  737. package/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  738. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  739. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  740. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  741. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  742. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  743. package/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  744. package/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
  745. package/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
  746. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  747. package/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +759 -0
  748. package/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +751 -0
  749. package/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
  750. package/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
  751. package/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +677 -0
  752. package/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
  753. package/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +86 -0
  754. package/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +622 -0
  755. package/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +838 -0
  756. package/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
  757. package/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
  758. package/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  759. package/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
  760. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  761. package/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  762. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  763. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +164 -0
  764. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +599 -0
  765. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +914 -0
  766. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  767. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +306 -0
  768. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  769. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
  770. package/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  771. package/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +246 -0
  772. package/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  773. package/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  774. package/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
  775. package/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
  776. package/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
  777. package/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  778. package/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
  779. package/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +139 -0
  780. package/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +92 -0
  781. package/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
  782. package/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  783. package/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +201 -0
  784. package/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
  785. package/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
  786. package/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
  787. package/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
  788. package/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
  789. package/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
  790. package/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +283 -0
  791. package/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
  792. package/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
  793. package/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
  794. package/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +381 -0
  795. package/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
  796. package/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
  797. package/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
  798. package/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
  799. package/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  800. package/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
  801. package/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  802. package/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
  803. package/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
  804. package/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
  805. package/python/lib/python3.12/site-packages/pip/_vendor/README.rst +178 -0
  806. package/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
  807. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  808. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
  809. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  810. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
  811. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  812. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  813. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  814. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  815. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  816. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
  817. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  818. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  819. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  820. package/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  821. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
  822. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  823. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  824. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4494 -0
  825. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
  826. package/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  827. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
  828. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  829. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  830. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
  831. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  832. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  833. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  834. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  835. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
  836. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  837. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  838. package/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  839. package/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
  840. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
  841. package/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
  842. package/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
  843. package/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  844. package/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
  845. package/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
  846. package/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
  847. package/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
  848. package/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
  849. package/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
  850. package/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
  851. package/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
  852. package/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  853. package/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
  854. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
  855. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  856. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  857. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  858. package/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  859. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
  860. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  861. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
  862. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  863. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
  864. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  865. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  866. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +393 -0
  867. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +33 -0
  868. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
  869. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/dependency_groups.py +302 -0
  870. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/direct_url.py +325 -0
  871. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/errors.py +94 -0
  872. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +186 -0
  873. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
  874. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +492 -0
  875. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +964 -0
  876. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  877. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +905 -0
  878. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +129 -0
  879. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1943 -0
  880. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +932 -0
  881. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +296 -0
  882. package/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +1231 -0
  883. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
  884. package/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  885. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
  886. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  887. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  888. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  889. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
  890. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
  891. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  892. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
  893. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
  894. package/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
  895. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
  896. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  897. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  898. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
  899. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
  900. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  901. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  902. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  903. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  904. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  905. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  906. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  907. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
  908. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  909. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  910. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  911. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  912. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  913. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
  914. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  915. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  916. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
  917. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  918. package/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
  919. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  920. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  921. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  922. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  923. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  924. package/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  925. package/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
  926. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +178 -0
  927. package/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
  928. package/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +51 -0
  929. package/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +697 -0
  930. package/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
  931. package/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
  932. package/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +18 -0
  933. package/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
  934. package/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
  935. package/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +152 -0
  936. package/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +124 -0
  937. package/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +34 -0
  938. package/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1041 -0
  939. package/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
  940. package/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +834 -0
  941. package/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  942. package/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
  943. package/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1083 -0
  944. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
  945. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  946. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  947. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  948. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  949. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  950. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  951. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  952. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  953. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  954. package/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  955. package/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
  956. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
  957. package/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
  958. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  959. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  960. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  961. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  962. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
  963. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  964. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  965. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  966. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
  967. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  968. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  969. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
  970. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  971. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  972. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
  973. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
  974. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  975. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
  976. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  977. package/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  978. package/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
  979. package/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
  980. package/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
  981. package/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
  982. package/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
  983. package/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
  984. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
  985. package/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  986. package/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
  987. package/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
  988. package/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
  989. package/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
  990. package/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
  991. package/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  992. package/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  993. package/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
  994. package/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
  995. package/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  996. package/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
  997. package/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  998. package/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
  999. package/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  1000. package/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
  1001. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
  1002. package/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
  1003. package/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
  1004. package/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
  1005. package/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
  1006. package/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
  1007. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
  1008. package/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
  1009. package/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
  1010. package/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  1011. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
  1012. package/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  1013. package/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
  1014. package/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
  1015. package/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  1016. package/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
  1017. package/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
  1018. package/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
  1019. package/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
  1020. package/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
  1021. package/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
  1022. package/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
  1023. package/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
  1024. package/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
  1025. package/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
  1026. package/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
  1027. package/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
  1028. package/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  1029. package/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
  1030. package/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
  1031. package/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
  1032. package/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
  1033. package/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
  1034. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
  1035. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  1036. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +788 -0
  1037. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
  1038. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
  1039. package/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
  1040. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
  1041. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  1042. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  1043. package/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  1044. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
  1045. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  1046. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
  1047. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  1048. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
  1049. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  1050. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  1051. package/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  1052. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1053. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +211 -0
  1054. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_base_connection.py +165 -0
  1055. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +487 -0
  1056. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_request_methods.py +278 -0
  1057. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +34 -0
  1058. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +1099 -0
  1059. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1178 -0
  1060. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1061. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/__init__.py +17 -0
  1062. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/connection.py +260 -0
  1063. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
  1064. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/fetch.py +726 -0
  1065. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/request.py +22 -0
  1066. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/emscripten/response.py +277 -0
  1067. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +564 -0
  1068. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +228 -0
  1069. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +335 -0
  1070. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +341 -0
  1071. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +89 -0
  1072. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/__init__.py +53 -0
  1073. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/connection.py +356 -0
  1074. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/http2/probe.py +87 -0
  1075. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +651 -0
  1076. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/py.typed +2 -0
  1077. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +1474 -0
  1078. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +42 -0
  1079. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +137 -0
  1080. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +43 -0
  1081. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +254 -0
  1082. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +101 -0
  1083. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +549 -0
  1084. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +527 -0
  1085. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  1086. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +271 -0
  1087. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +275 -0
  1088. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +469 -0
  1089. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/util.py +42 -0
  1090. package/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +124 -0
  1091. package/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +18 -0
  1092. package/python/lib/python3.12/site-packages/pip/py.typed +4 -0
  1093. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/INSTALLER +1 -0
  1094. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/METADATA +109 -0
  1095. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/RECORD +866 -0
  1096. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/REQUESTED +0 -0
  1097. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/WHEEL +4 -0
  1098. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/direct_url.json +1 -0
  1099. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/entry_points.txt +4 -0
  1100. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/AUTHORS.txt +868 -0
  1101. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/LICENSE.txt +20 -0
  1102. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  1103. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  1104. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
  1105. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  1106. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
  1107. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  1108. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  1109. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1110. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1111. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
  1112. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  1113. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  1114. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1115. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  1116. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  1117. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  1118. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  1119. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
  1120. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  1121. package/python/lib/python3.12/site-packages/pip-26.1.2.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1122. package/python/lib/python3.12/site.py +693 -0
  1123. package/python/lib/python3.12/smtplib.py +1109 -0
  1124. package/python/lib/python3.12/sndhdr.py +271 -0
  1125. package/python/lib/python3.12/socket.py +983 -0
  1126. package/python/lib/python3.12/socketserver.py +863 -0
  1127. package/python/lib/python3.12/sqlite3/__init__.py +70 -0
  1128. package/python/lib/python3.12/sqlite3/__main__.py +127 -0
  1129. package/python/lib/python3.12/sqlite3/dbapi2.py +108 -0
  1130. package/python/lib/python3.12/sqlite3/dump.py +89 -0
  1131. package/python/lib/python3.12/sre_compile.py +7 -0
  1132. package/python/lib/python3.12/sre_constants.py +7 -0
  1133. package/python/lib/python3.12/sre_parse.py +7 -0
  1134. package/python/lib/python3.12/ssl.py +1488 -0
  1135. package/python/lib/python3.12/stat.py +195 -0
  1136. package/python/lib/python3.12/statistics.py +1454 -0
  1137. package/python/lib/python3.12/string.py +309 -0
  1138. package/python/lib/python3.12/stringprep.py +272 -0
  1139. package/python/lib/python3.12/struct.py +15 -0
  1140. package/python/lib/python3.12/subprocess.py +2216 -0
  1141. package/python/lib/python3.12/sunau.py +533 -0
  1142. package/python/lib/python3.12/symtable.py +362 -0
  1143. package/python/lib/python3.12/sysconfig.py +894 -0
  1144. package/python/lib/python3.12/tabnanny.py +340 -0
  1145. package/python/lib/python3.12/tarfile.py +3031 -0
  1146. package/python/lib/python3.12/telnetlib.py +680 -0
  1147. package/python/lib/python3.12/tempfile.py +956 -0
  1148. package/python/lib/python3.12/textwrap.py +491 -0
  1149. package/python/lib/python3.12/this.py +28 -0
  1150. package/python/lib/python3.12/threading.py +1708 -0
  1151. package/python/lib/python3.12/timeit.py +381 -0
  1152. package/python/lib/python3.12/token.py +143 -0
  1153. package/python/lib/python3.12/tokenize.py +594 -0
  1154. package/python/lib/python3.12/tomllib/__init__.py +10 -0
  1155. package/python/lib/python3.12/tomllib/_parser.py +691 -0
  1156. package/python/lib/python3.12/tomllib/_re.py +107 -0
  1157. package/python/lib/python3.12/tomllib/_types.py +10 -0
  1158. package/python/lib/python3.12/trace.py +748 -0
  1159. package/python/lib/python3.12/traceback.py +1187 -0
  1160. package/python/lib/python3.12/tracemalloc.py +560 -0
  1161. package/python/lib/python3.12/tty.py +73 -0
  1162. package/python/lib/python3.12/turtle.py +4207 -0
  1163. package/python/lib/python3.12/types.py +333 -0
  1164. package/python/lib/python3.12/typing.py +3494 -0
  1165. package/python/lib/python3.12/unittest/__init__.py +85 -0
  1166. package/python/lib/python3.12/unittest/__main__.py +18 -0
  1167. package/python/lib/python3.12/unittest/_log.py +86 -0
  1168. package/python/lib/python3.12/unittest/async_case.py +143 -0
  1169. package/python/lib/python3.12/unittest/case.py +1456 -0
  1170. package/python/lib/python3.12/unittest/loader.py +497 -0
  1171. package/python/lib/python3.12/unittest/main.py +291 -0
  1172. package/python/lib/python3.12/unittest/mock.py +3054 -0
  1173. package/python/lib/python3.12/unittest/result.py +256 -0
  1174. package/python/lib/python3.12/unittest/runner.py +292 -0
  1175. package/python/lib/python3.12/unittest/signals.py +71 -0
  1176. package/python/lib/python3.12/unittest/suite.py +379 -0
  1177. package/python/lib/python3.12/unittest/util.py +170 -0
  1178. package/python/lib/python3.12/urllib/__init__.py +0 -0
  1179. package/python/lib/python3.12/urllib/error.py +74 -0
  1180. package/python/lib/python3.12/urllib/parse.py +1262 -0
  1181. package/python/lib/python3.12/urllib/request.py +2816 -0
  1182. package/python/lib/python3.12/urllib/response.py +84 -0
  1183. package/python/lib/python3.12/urllib/robotparser.py +275 -0
  1184. package/python/lib/python3.12/uu.py +216 -0
  1185. package/python/lib/python3.12/uuid.py +793 -0
  1186. package/python/lib/python3.12/venv/__init__.py +608 -0
  1187. package/python/lib/python3.12/venv/__main__.py +10 -0
  1188. package/python/lib/python3.12/venv/scripts/common/Activate.ps1 +247 -0
  1189. package/python/lib/python3.12/venv/scripts/common/activate +76 -0
  1190. package/python/lib/python3.12/venv/scripts/posix/activate.csh +27 -0
  1191. package/python/lib/python3.12/venv/scripts/posix/activate.fish +69 -0
  1192. package/python/lib/python3.12/warnings.py +598 -0
  1193. package/python/lib/python3.12/wave.py +653 -0
  1194. package/python/lib/python3.12/weakref.py +674 -0
  1195. package/python/lib/python3.12/webbrowser.py +689 -0
  1196. package/python/lib/python3.12/wsgiref/__init__.py +25 -0
  1197. package/python/lib/python3.12/wsgiref/handlers.py +573 -0
  1198. package/python/lib/python3.12/wsgiref/headers.py +192 -0
  1199. package/python/lib/python3.12/wsgiref/simple_server.py +165 -0
  1200. package/python/lib/python3.12/wsgiref/types.py +54 -0
  1201. package/python/lib/python3.12/wsgiref/util.py +159 -0
  1202. package/python/lib/python3.12/wsgiref/validate.py +438 -0
  1203. package/python/lib/python3.12/xdrlib.py +242 -0
  1204. package/python/lib/python3.12/xml/__init__.py +20 -0
  1205. package/python/lib/python3.12/xml/dom/NodeFilter.py +27 -0
  1206. package/python/lib/python3.12/xml/dom/__init__.py +140 -0
  1207. package/python/lib/python3.12/xml/dom/domreg.py +99 -0
  1208. package/python/lib/python3.12/xml/dom/expatbuilder.py +962 -0
  1209. package/python/lib/python3.12/xml/dom/minicompat.py +109 -0
  1210. package/python/lib/python3.12/xml/dom/minidom.py +2008 -0
  1211. package/python/lib/python3.12/xml/dom/pulldom.py +336 -0
  1212. package/python/lib/python3.12/xml/dom/xmlbuilder.py +389 -0
  1213. package/python/lib/python3.12/xml/etree/ElementInclude.py +186 -0
  1214. package/python/lib/python3.12/xml/etree/ElementPath.py +423 -0
  1215. package/python/lib/python3.12/xml/etree/ElementTree.py +2085 -0
  1216. package/python/lib/python3.12/xml/etree/__init__.py +33 -0
  1217. package/python/lib/python3.12/xml/etree/cElementTree.py +3 -0
  1218. package/python/lib/python3.12/xml/parsers/__init__.py +8 -0
  1219. package/python/lib/python3.12/xml/parsers/expat.py +8 -0
  1220. package/python/lib/python3.12/xml/sax/__init__.py +94 -0
  1221. package/python/lib/python3.12/xml/sax/_exceptions.py +127 -0
  1222. package/python/lib/python3.12/xml/sax/expatreader.py +454 -0
  1223. package/python/lib/python3.12/xml/sax/handler.py +387 -0
  1224. package/python/lib/python3.12/xml/sax/saxutils.py +369 -0
  1225. package/python/lib/python3.12/xml/sax/xmlreader.py +378 -0
  1226. package/python/lib/python3.12/xmlrpc/__init__.py +1 -0
  1227. package/python/lib/python3.12/xmlrpc/client.py +1529 -0
  1228. package/python/lib/python3.12/xmlrpc/server.py +1002 -0
  1229. package/python/lib/python3.12/zipapp.py +206 -0
  1230. package/python/lib/python3.12/zipfile/__init__.py +2340 -0
  1231. package/python/lib/python3.12/zipfile/__main__.py +4 -0
  1232. package/python/lib/python3.12/zipfile/_path/__init__.py +412 -0
  1233. package/python/lib/python3.12/zipfile/_path/glob.py +53 -0
  1234. package/python/lib/python3.12/zipimport.py +712 -0
  1235. package/python/lib/python3.12/zoneinfo/__init__.py +31 -0
  1236. package/python/lib/python3.12/zoneinfo/_common.py +164 -0
  1237. package/python/lib/python3.12/zoneinfo/_tzpath.py +181 -0
  1238. package/python/lib/python3.12/zoneinfo/_zoneinfo.py +772 -0
@@ -0,0 +1,2643 @@
1
+ """Concrete date/time and related types.
2
+
3
+ See http://www.iana.org/time-zones/repository/tz-link.html for
4
+ time zone and DST data sources.
5
+ """
6
+
7
+ __all__ = ("date", "datetime", "time", "timedelta", "timezone", "tzinfo",
8
+ "MINYEAR", "MAXYEAR", "UTC")
9
+
10
+
11
+ import time as _time
12
+ import math as _math
13
+ import sys
14
+ from operator import index as _index
15
+
16
+ def _cmp(x, y):
17
+ return 0 if x == y else 1 if x > y else -1
18
+
19
+ def _get_class_module(self):
20
+ module_name = self.__class__.__module__
21
+ if module_name == '_pydatetime':
22
+ return 'datetime'
23
+ else:
24
+ return module_name
25
+
26
+ MINYEAR = 1
27
+ MAXYEAR = 9999
28
+ _MAXORDINAL = 3652059 # date.max.toordinal()
29
+
30
+ # Utility functions, adapted from Python's Demo/classes/Dates.py, which
31
+ # also assumes the current Gregorian calendar indefinitely extended in
32
+ # both directions. Difference: Dates.py calls January 1 of year 0 day
33
+ # number 1. The code here calls January 1 of year 1 day number 1. This is
34
+ # to match the definition of the "proleptic Gregorian" calendar in Dershowitz
35
+ # and Reingold's "Calendrical Calculations", where it's the base calendar
36
+ # for all computations. See the book for algorithms for converting between
37
+ # proleptic Gregorian ordinals and many other calendar systems.
38
+
39
+ # -1 is a placeholder for indexing purposes.
40
+ _DAYS_IN_MONTH = [-1, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
41
+
42
+ _DAYS_BEFORE_MONTH = [-1] # -1 is a placeholder for indexing purposes.
43
+ dbm = 0
44
+ for dim in _DAYS_IN_MONTH[1:]:
45
+ _DAYS_BEFORE_MONTH.append(dbm)
46
+ dbm += dim
47
+ del dbm, dim
48
+
49
+ def _is_leap(year):
50
+ "year -> 1 if leap year, else 0."
51
+ return year % 4 == 0 and (year % 100 != 0 or year % 400 == 0)
52
+
53
+ def _days_before_year(year):
54
+ "year -> number of days before January 1st of year."
55
+ y = year - 1
56
+ return y*365 + y//4 - y//100 + y//400
57
+
58
+ def _days_in_month(year, month):
59
+ "year, month -> number of days in that month in that year."
60
+ assert 1 <= month <= 12, month
61
+ if month == 2 and _is_leap(year):
62
+ return 29
63
+ return _DAYS_IN_MONTH[month]
64
+
65
+ def _days_before_month(year, month):
66
+ "year, month -> number of days in year preceding first day of month."
67
+ assert 1 <= month <= 12, 'month must be in 1..12'
68
+ return _DAYS_BEFORE_MONTH[month] + (month > 2 and _is_leap(year))
69
+
70
+ def _ymd2ord(year, month, day):
71
+ "year, month, day -> ordinal, considering 01-Jan-0001 as day 1."
72
+ assert 1 <= month <= 12, 'month must be in 1..12'
73
+ dim = _days_in_month(year, month)
74
+ assert 1 <= day <= dim, ('day must be in 1..%d' % dim)
75
+ return (_days_before_year(year) +
76
+ _days_before_month(year, month) +
77
+ day)
78
+
79
+ _DI400Y = _days_before_year(401) # number of days in 400 years
80
+ _DI100Y = _days_before_year(101) # " " " " 100 "
81
+ _DI4Y = _days_before_year(5) # " " " " 4 "
82
+
83
+ # A 4-year cycle has an extra leap day over what we'd get from pasting
84
+ # together 4 single years.
85
+ assert _DI4Y == 4 * 365 + 1
86
+
87
+ # Similarly, a 400-year cycle has an extra leap day over what we'd get from
88
+ # pasting together 4 100-year cycles.
89
+ assert _DI400Y == 4 * _DI100Y + 1
90
+
91
+ # OTOH, a 100-year cycle has one fewer leap day than we'd get from
92
+ # pasting together 25 4-year cycles.
93
+ assert _DI100Y == 25 * _DI4Y - 1
94
+
95
+ def _ord2ymd(n):
96
+ "ordinal -> (year, month, day), considering 01-Jan-0001 as day 1."
97
+
98
+ # n is a 1-based index, starting at 1-Jan-1. The pattern of leap years
99
+ # repeats exactly every 400 years. The basic strategy is to find the
100
+ # closest 400-year boundary at or before n, then work with the offset
101
+ # from that boundary to n. Life is much clearer if we subtract 1 from
102
+ # n first -- then the values of n at 400-year boundaries are exactly
103
+ # those divisible by _DI400Y:
104
+ #
105
+ # D M Y n n-1
106
+ # -- --- ---- ---------- ----------------
107
+ # 31 Dec -400 -_DI400Y -_DI400Y -1
108
+ # 1 Jan -399 -_DI400Y +1 -_DI400Y 400-year boundary
109
+ # ...
110
+ # 30 Dec 000 -1 -2
111
+ # 31 Dec 000 0 -1
112
+ # 1 Jan 001 1 0 400-year boundary
113
+ # 2 Jan 001 2 1
114
+ # 3 Jan 001 3 2
115
+ # ...
116
+ # 31 Dec 400 _DI400Y _DI400Y -1
117
+ # 1 Jan 401 _DI400Y +1 _DI400Y 400-year boundary
118
+ n -= 1
119
+ n400, n = divmod(n, _DI400Y)
120
+ year = n400 * 400 + 1 # ..., -399, 1, 401, ...
121
+
122
+ # Now n is the (non-negative) offset, in days, from January 1 of year, to
123
+ # the desired date. Now compute how many 100-year cycles precede n.
124
+ # Note that it's possible for n100 to equal 4! In that case 4 full
125
+ # 100-year cycles precede the desired day, which implies the desired
126
+ # day is December 31 at the end of a 400-year cycle.
127
+ n100, n = divmod(n, _DI100Y)
128
+
129
+ # Now compute how many 4-year cycles precede it.
130
+ n4, n = divmod(n, _DI4Y)
131
+
132
+ # And now how many single years. Again n1 can be 4, and again meaning
133
+ # that the desired day is December 31 at the end of the 4-year cycle.
134
+ n1, n = divmod(n, 365)
135
+
136
+ year += n100 * 100 + n4 * 4 + n1
137
+ if n1 == 4 or n100 == 4:
138
+ assert n == 0
139
+ return year-1, 12, 31
140
+
141
+ # Now the year is correct, and n is the offset from January 1. We find
142
+ # the month via an estimate that's either exact or one too large.
143
+ leapyear = n1 == 3 and (n4 != 24 or n100 == 3)
144
+ assert leapyear == _is_leap(year)
145
+ month = (n + 50) >> 5
146
+ preceding = _DAYS_BEFORE_MONTH[month] + (month > 2 and leapyear)
147
+ if preceding > n: # estimate is too large
148
+ month -= 1
149
+ preceding -= _DAYS_IN_MONTH[month] + (month == 2 and leapyear)
150
+ n -= preceding
151
+ assert 0 <= n < _days_in_month(year, month)
152
+
153
+ # Now the year and month are correct, and n is the offset from the
154
+ # start of that month: we're done!
155
+ return year, month, n+1
156
+
157
+ # Month and day names. For localized versions, see the calendar module.
158
+ _MONTHNAMES = [None, "Jan", "Feb", "Mar", "Apr", "May", "Jun",
159
+ "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
160
+ _DAYNAMES = [None, "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"]
161
+
162
+
163
+ def _build_struct_time(y, m, d, hh, mm, ss, dstflag):
164
+ wday = (_ymd2ord(y, m, d) + 6) % 7
165
+ dnum = _days_before_month(y, m) + d
166
+ return _time.struct_time((y, m, d, hh, mm, ss, wday, dnum, dstflag))
167
+
168
+ def _format_time(hh, mm, ss, us, timespec='auto'):
169
+ specs = {
170
+ 'hours': '{:02d}',
171
+ 'minutes': '{:02d}:{:02d}',
172
+ 'seconds': '{:02d}:{:02d}:{:02d}',
173
+ 'milliseconds': '{:02d}:{:02d}:{:02d}.{:03d}',
174
+ 'microseconds': '{:02d}:{:02d}:{:02d}.{:06d}'
175
+ }
176
+
177
+ if timespec == 'auto':
178
+ # Skip trailing microseconds when us==0.
179
+ timespec = 'microseconds' if us else 'seconds'
180
+ elif timespec == 'milliseconds':
181
+ us //= 1000
182
+ try:
183
+ fmt = specs[timespec]
184
+ except KeyError:
185
+ raise ValueError('Unknown timespec value')
186
+ else:
187
+ return fmt.format(hh, mm, ss, us)
188
+
189
+ def _format_offset(off, sep=':'):
190
+ s = ''
191
+ if off is not None:
192
+ if off.days < 0:
193
+ sign = "-"
194
+ off = -off
195
+ else:
196
+ sign = "+"
197
+ hh, mm = divmod(off, timedelta(hours=1))
198
+ mm, ss = divmod(mm, timedelta(minutes=1))
199
+ s += "%s%02d%s%02d" % (sign, hh, sep, mm)
200
+ if ss or ss.microseconds:
201
+ s += "%s%02d" % (sep, ss.seconds)
202
+
203
+ if ss.microseconds:
204
+ s += '.%06d' % ss.microseconds
205
+ return s
206
+
207
+ # Correctly substitute for %z and %Z escapes in strftime formats.
208
+ def _wrap_strftime(object, format, timetuple):
209
+ # Don't call utcoffset() or tzname() unless actually needed.
210
+ freplace = None # the string to use for %f
211
+ zreplace = None # the string to use for %z
212
+ colonzreplace = None # the string to use for %:z
213
+ Zreplace = None # the string to use for %Z
214
+
215
+ # Scan format for %z, %:z and %Z escapes, replacing as needed.
216
+ newformat = []
217
+ push = newformat.append
218
+ i, n = 0, len(format)
219
+ while i < n:
220
+ ch = format[i]
221
+ i += 1
222
+ if ch == '%':
223
+ if i < n:
224
+ ch = format[i]
225
+ i += 1
226
+ if ch == 'f':
227
+ if freplace is None:
228
+ freplace = '%06d' % getattr(object,
229
+ 'microsecond', 0)
230
+ newformat.append(freplace)
231
+ elif ch == 'z':
232
+ if zreplace is None:
233
+ if hasattr(object, "utcoffset"):
234
+ zreplace = _format_offset(object.utcoffset(), sep="")
235
+ else:
236
+ zreplace = ""
237
+ assert '%' not in zreplace
238
+ newformat.append(zreplace)
239
+ elif ch == ':':
240
+ if i < n:
241
+ ch2 = format[i]
242
+ i += 1
243
+ if ch2 == 'z':
244
+ if colonzreplace is None:
245
+ if hasattr(object, "utcoffset"):
246
+ colonzreplace = _format_offset(object.utcoffset(), sep=":")
247
+ else:
248
+ colonzreplace = ""
249
+ assert '%' not in colonzreplace
250
+ newformat.append(colonzreplace)
251
+ else:
252
+ push('%')
253
+ push(ch)
254
+ push(ch2)
255
+ elif ch == 'Z':
256
+ if Zreplace is None:
257
+ Zreplace = ""
258
+ if hasattr(object, "tzname"):
259
+ s = object.tzname()
260
+ if s is not None:
261
+ # strftime is going to have at this: escape %
262
+ Zreplace = s.replace('%', '%%')
263
+ newformat.append(Zreplace)
264
+ else:
265
+ push('%')
266
+ push(ch)
267
+ else:
268
+ push('%')
269
+ else:
270
+ push(ch)
271
+ newformat = "".join(newformat)
272
+ return _time.strftime(newformat, timetuple)
273
+
274
+ # Helpers for parsing the result of isoformat()
275
+ def _is_ascii_digit(c):
276
+ return c in "0123456789"
277
+
278
+ def _find_isoformat_datetime_separator(dtstr):
279
+ # See the comment in _datetimemodule.c:_find_isoformat_datetime_separator
280
+ len_dtstr = len(dtstr)
281
+ if len_dtstr == 7:
282
+ return 7
283
+
284
+ assert len_dtstr > 7
285
+ date_separator = "-"
286
+ week_indicator = "W"
287
+
288
+ if dtstr[4] == date_separator:
289
+ if dtstr[5] == week_indicator:
290
+ if len_dtstr < 8:
291
+ raise ValueError("Invalid ISO string")
292
+ if len_dtstr > 8 and dtstr[8] == date_separator:
293
+ if len_dtstr == 9:
294
+ raise ValueError("Invalid ISO string")
295
+ if len_dtstr > 10 and _is_ascii_digit(dtstr[10]):
296
+ # This is as far as we need to resolve the ambiguity for
297
+ # the moment - if we have YYYY-Www-##, the separator is
298
+ # either a hyphen at 8 or a number at 10.
299
+ #
300
+ # We'll assume it's a hyphen at 8 because it's way more
301
+ # likely that someone will use a hyphen as a separator than
302
+ # a number, but at this point it's really best effort
303
+ # because this is an extension of the spec anyway.
304
+ # TODO(pganssle): Document this
305
+ return 8
306
+ return 10
307
+ else:
308
+ # YYYY-Www (8)
309
+ return 8
310
+ else:
311
+ # YYYY-MM-DD (10)
312
+ return 10
313
+ else:
314
+ if dtstr[4] == week_indicator:
315
+ # YYYYWww (7) or YYYYWwwd (8)
316
+ idx = 7
317
+ while idx < len_dtstr:
318
+ if not _is_ascii_digit(dtstr[idx]):
319
+ break
320
+ idx += 1
321
+
322
+ if idx < 9:
323
+ return idx
324
+
325
+ if idx % 2 == 0:
326
+ # If the index of the last number is even, it's YYYYWwwd
327
+ return 7
328
+ else:
329
+ return 8
330
+ else:
331
+ # YYYYMMDD (8)
332
+ return 8
333
+
334
+
335
+ def _parse_isoformat_date(dtstr):
336
+ # It is assumed that this is an ASCII-only string of lengths 7, 8 or 10,
337
+ # see the comment on Modules/_datetimemodule.c:_find_isoformat_datetime_separator
338
+ assert len(dtstr) in (7, 8, 10)
339
+ year = int(dtstr[0:4])
340
+ has_sep = dtstr[4] == '-'
341
+
342
+ pos = 4 + has_sep
343
+ if dtstr[pos:pos + 1] == "W":
344
+ # YYYY-?Www-?D?
345
+ pos += 1
346
+ weekno = int(dtstr[pos:pos + 2])
347
+ pos += 2
348
+
349
+ dayno = 1
350
+ if len(dtstr) > pos:
351
+ if (dtstr[pos:pos + 1] == '-') != has_sep:
352
+ raise ValueError("Inconsistent use of dash separator")
353
+
354
+ pos += has_sep
355
+
356
+ dayno = int(dtstr[pos:pos + 1])
357
+
358
+ return list(_isoweek_to_gregorian(year, weekno, dayno))
359
+ else:
360
+ month = int(dtstr[pos:pos + 2])
361
+ pos += 2
362
+ if (dtstr[pos:pos + 1] == "-") != has_sep:
363
+ raise ValueError("Inconsistent use of dash separator")
364
+
365
+ pos += has_sep
366
+ day = int(dtstr[pos:pos + 2])
367
+
368
+ return [year, month, day]
369
+
370
+
371
+ _FRACTION_CORRECTION = [100000, 10000, 1000, 100, 10]
372
+
373
+
374
+ def _parse_hh_mm_ss_ff(tstr):
375
+ # Parses things of the form HH[:?MM[:?SS[{.,}fff[fff]]]]
376
+ len_str = len(tstr)
377
+
378
+ time_comps = [0, 0, 0, 0]
379
+ pos = 0
380
+ for comp in range(0, 3):
381
+ if (len_str - pos) < 2:
382
+ raise ValueError("Incomplete time component")
383
+
384
+ time_comps[comp] = int(tstr[pos:pos+2])
385
+
386
+ pos += 2
387
+ next_char = tstr[pos:pos+1]
388
+
389
+ if comp == 0:
390
+ has_sep = next_char == ':'
391
+
392
+ if not next_char or comp >= 2:
393
+ break
394
+
395
+ if has_sep and next_char != ':':
396
+ raise ValueError("Invalid time separator: %c" % next_char)
397
+
398
+ pos += has_sep
399
+
400
+ if pos < len_str:
401
+ if tstr[pos] not in '.,':
402
+ raise ValueError("Invalid microsecond component")
403
+ else:
404
+ pos += 1
405
+ if not all(map(_is_ascii_digit, tstr[pos:])):
406
+ raise ValueError("Non-digit values in fraction")
407
+
408
+ len_remainder = len_str - pos
409
+
410
+ if len_remainder >= 6:
411
+ to_parse = 6
412
+ else:
413
+ to_parse = len_remainder
414
+
415
+ time_comps[3] = int(tstr[pos:(pos+to_parse)])
416
+ if to_parse < 6:
417
+ time_comps[3] *= _FRACTION_CORRECTION[to_parse-1]
418
+
419
+ return time_comps
420
+
421
+ def _parse_isoformat_time(tstr):
422
+ # Format supported is HH[:MM[:SS[.fff[fff]]]][+HH:MM[:SS[.ffffff]]]
423
+ len_str = len(tstr)
424
+ if len_str < 2:
425
+ raise ValueError("Isoformat time too short")
426
+
427
+ # This is equivalent to re.search('[+-Z]', tstr), but faster
428
+ tz_pos = (tstr.find('-') + 1 or tstr.find('+') + 1 or tstr.find('Z') + 1)
429
+ timestr = tstr[:tz_pos-1] if tz_pos > 0 else tstr
430
+
431
+ time_comps = _parse_hh_mm_ss_ff(timestr)
432
+
433
+ tzi = None
434
+ if tz_pos == len_str and tstr[-1] == 'Z':
435
+ tzi = timezone.utc
436
+ elif tz_pos > 0:
437
+ tzstr = tstr[tz_pos:]
438
+
439
+ # Valid time zone strings are:
440
+ # HH len: 2
441
+ # HHMM len: 4
442
+ # HH:MM len: 5
443
+ # HHMMSS len: 6
444
+ # HHMMSS.f+ len: 7+
445
+ # HH:MM:SS len: 8
446
+ # HH:MM:SS.f+ len: 10+
447
+
448
+ if len(tzstr) in (0, 1, 3):
449
+ raise ValueError("Malformed time zone string")
450
+
451
+ tz_comps = _parse_hh_mm_ss_ff(tzstr)
452
+
453
+ if all(x == 0 for x in tz_comps):
454
+ tzi = timezone.utc
455
+ else:
456
+ tzsign = -1 if tstr[tz_pos - 1] == '-' else 1
457
+
458
+ td = timedelta(hours=tz_comps[0], minutes=tz_comps[1],
459
+ seconds=tz_comps[2], microseconds=tz_comps[3])
460
+
461
+ tzi = timezone(tzsign * td)
462
+
463
+ time_comps.append(tzi)
464
+
465
+ return time_comps
466
+
467
+ # tuple[int, int, int] -> tuple[int, int, int] version of date.fromisocalendar
468
+ def _isoweek_to_gregorian(year, week, day):
469
+ # Year is bounded this way because 9999-12-31 is (9999, 52, 5)
470
+ if not MINYEAR <= year <= MAXYEAR:
471
+ raise ValueError(f"Year is out of range: {year}")
472
+
473
+ if not 0 < week < 53:
474
+ out_of_range = True
475
+
476
+ if week == 53:
477
+ # ISO years have 53 weeks in them on years starting with a
478
+ # Thursday and leap years starting on a Wednesday
479
+ first_weekday = _ymd2ord(year, 1, 1) % 7
480
+ if (first_weekday == 4 or (first_weekday == 3 and
481
+ _is_leap(year))):
482
+ out_of_range = False
483
+
484
+ if out_of_range:
485
+ raise ValueError(f"Invalid week: {week}")
486
+
487
+ if not 0 < day < 8:
488
+ raise ValueError(f"Invalid weekday: {day} (range is [1, 7])")
489
+
490
+ # Now compute the offset from (Y, 1, 1) in days:
491
+ day_offset = (week - 1) * 7 + (day - 1)
492
+
493
+ # Calculate the ordinal day for monday, week 1
494
+ day_1 = _isoweek1monday(year)
495
+ ord_day = day_1 + day_offset
496
+
497
+ return _ord2ymd(ord_day)
498
+
499
+
500
+ # Just raise TypeError if the arg isn't None or a string.
501
+ def _check_tzname(name):
502
+ if name is not None and not isinstance(name, str):
503
+ raise TypeError("tzinfo.tzname() must return None or string, "
504
+ "not '%s'" % type(name))
505
+
506
+ # name is the offset-producing method, "utcoffset" or "dst".
507
+ # offset is what it returned.
508
+ # If offset isn't None or timedelta, raises TypeError.
509
+ # If offset is None, returns None.
510
+ # Else offset is checked for being in range.
511
+ # If it is, its integer value is returned. Else ValueError is raised.
512
+ def _check_utc_offset(name, offset):
513
+ assert name in ("utcoffset", "dst")
514
+ if offset is None:
515
+ return
516
+ if not isinstance(offset, timedelta):
517
+ raise TypeError("tzinfo.%s() must return None "
518
+ "or timedelta, not '%s'" % (name, type(offset)))
519
+ if not -timedelta(1) < offset < timedelta(1):
520
+ raise ValueError("%s()=%s, must be strictly between "
521
+ "-timedelta(hours=24) and timedelta(hours=24)" %
522
+ (name, offset))
523
+
524
+ def _check_date_fields(year, month, day):
525
+ year = _index(year)
526
+ month = _index(month)
527
+ day = _index(day)
528
+ if not MINYEAR <= year <= MAXYEAR:
529
+ raise ValueError('year must be in %d..%d' % (MINYEAR, MAXYEAR), year)
530
+ if not 1 <= month <= 12:
531
+ raise ValueError('month must be in 1..12', month)
532
+ dim = _days_in_month(year, month)
533
+ if not 1 <= day <= dim:
534
+ raise ValueError('day must be in 1..%d' % dim, day)
535
+ return year, month, day
536
+
537
+ def _check_time_fields(hour, minute, second, microsecond, fold):
538
+ hour = _index(hour)
539
+ minute = _index(minute)
540
+ second = _index(second)
541
+ microsecond = _index(microsecond)
542
+ if not 0 <= hour <= 23:
543
+ raise ValueError('hour must be in 0..23', hour)
544
+ if not 0 <= minute <= 59:
545
+ raise ValueError('minute must be in 0..59', minute)
546
+ if not 0 <= second <= 59:
547
+ raise ValueError('second must be in 0..59', second)
548
+ if not 0 <= microsecond <= 999999:
549
+ raise ValueError('microsecond must be in 0..999999', microsecond)
550
+ if fold not in (0, 1):
551
+ raise ValueError('fold must be either 0 or 1', fold)
552
+ return hour, minute, second, microsecond, fold
553
+
554
+ def _check_tzinfo_arg(tz):
555
+ if tz is not None and not isinstance(tz, tzinfo):
556
+ raise TypeError("tzinfo argument must be None or of a tzinfo subclass")
557
+
558
+ def _cmperror(x, y):
559
+ raise TypeError("can't compare '%s' to '%s'" % (
560
+ type(x).__name__, type(y).__name__))
561
+
562
+ def _divide_and_round(a, b):
563
+ """divide a by b and round result to the nearest integer
564
+
565
+ When the ratio is exactly half-way between two integers,
566
+ the even integer is returned.
567
+ """
568
+ # Based on the reference implementation for divmod_near
569
+ # in Objects/longobject.c.
570
+ q, r = divmod(a, b)
571
+ # round up if either r / b > 0.5, or r / b == 0.5 and q is odd.
572
+ # The expression r / b > 0.5 is equivalent to 2 * r > b if b is
573
+ # positive, 2 * r < b if b negative.
574
+ r *= 2
575
+ greater_than_half = r > b if b > 0 else r < b
576
+ if greater_than_half or r == b and q % 2 == 1:
577
+ q += 1
578
+
579
+ return q
580
+
581
+
582
+ class timedelta:
583
+ """Represent the difference between two datetime objects.
584
+
585
+ Supported operators:
586
+
587
+ - add, subtract timedelta
588
+ - unary plus, minus, abs
589
+ - compare to timedelta
590
+ - multiply, divide by int
591
+
592
+ In addition, datetime supports subtraction of two datetime objects
593
+ returning a timedelta, and addition or subtraction of a datetime
594
+ and a timedelta giving a datetime.
595
+
596
+ Representation: (days, seconds, microseconds).
597
+ """
598
+ # The representation of (days, seconds, microseconds) was chosen
599
+ # arbitrarily; the exact rationale originally specified in the docstring
600
+ # was "Because I felt like it."
601
+
602
+ __slots__ = '_days', '_seconds', '_microseconds', '_hashcode'
603
+
604
+ def __new__(cls, days=0, seconds=0, microseconds=0,
605
+ milliseconds=0, minutes=0, hours=0, weeks=0):
606
+ # Doing this efficiently and accurately in C is going to be difficult
607
+ # and error-prone, due to ubiquitous overflow possibilities, and that
608
+ # C double doesn't have enough bits of precision to represent
609
+ # microseconds over 10K years faithfully. The code here tries to make
610
+ # explicit where go-fast assumptions can be relied on, in order to
611
+ # guide the C implementation; it's way more convoluted than speed-
612
+ # ignoring auto-overflow-to-long idiomatic Python could be.
613
+
614
+ # XXX Check that all inputs are ints or floats.
615
+
616
+ # Final values, all integer.
617
+ # s and us fit in 32-bit signed ints; d isn't bounded.
618
+ d = s = us = 0
619
+
620
+ # Normalize everything to days, seconds, microseconds.
621
+ days += weeks*7
622
+ seconds += minutes*60 + hours*3600
623
+ microseconds += milliseconds*1000
624
+
625
+ # Get rid of all fractions, and normalize s and us.
626
+ # Take a deep breath <wink>.
627
+ if isinstance(days, float):
628
+ dayfrac, days = _math.modf(days)
629
+ daysecondsfrac, daysecondswhole = _math.modf(dayfrac * (24.*3600.))
630
+ assert daysecondswhole == int(daysecondswhole) # can't overflow
631
+ s = int(daysecondswhole)
632
+ assert days == int(days)
633
+ d = int(days)
634
+ else:
635
+ daysecondsfrac = 0.0
636
+ d = days
637
+ assert isinstance(daysecondsfrac, float)
638
+ assert abs(daysecondsfrac) <= 1.0
639
+ assert isinstance(d, int)
640
+ assert abs(s) <= 24 * 3600
641
+ # days isn't referenced again before redefinition
642
+
643
+ if isinstance(seconds, float):
644
+ secondsfrac, seconds = _math.modf(seconds)
645
+ assert seconds == int(seconds)
646
+ seconds = int(seconds)
647
+ secondsfrac += daysecondsfrac
648
+ assert abs(secondsfrac) <= 2.0
649
+ else:
650
+ secondsfrac = daysecondsfrac
651
+ # daysecondsfrac isn't referenced again
652
+ assert isinstance(secondsfrac, float)
653
+ assert abs(secondsfrac) <= 2.0
654
+
655
+ assert isinstance(seconds, int)
656
+ days, seconds = divmod(seconds, 24*3600)
657
+ d += days
658
+ s += int(seconds) # can't overflow
659
+ assert isinstance(s, int)
660
+ assert abs(s) <= 2 * 24 * 3600
661
+ # seconds isn't referenced again before redefinition
662
+
663
+ usdouble = secondsfrac * 1e6
664
+ assert abs(usdouble) < 2.1e6 # exact value not critical
665
+ # secondsfrac isn't referenced again
666
+
667
+ if isinstance(microseconds, float):
668
+ microseconds = round(microseconds + usdouble)
669
+ seconds, microseconds = divmod(microseconds, 1000000)
670
+ days, seconds = divmod(seconds, 24*3600)
671
+ d += days
672
+ s += seconds
673
+ else:
674
+ microseconds = int(microseconds)
675
+ seconds, microseconds = divmod(microseconds, 1000000)
676
+ days, seconds = divmod(seconds, 24*3600)
677
+ d += days
678
+ s += seconds
679
+ microseconds = round(microseconds + usdouble)
680
+ assert isinstance(s, int)
681
+ assert isinstance(microseconds, int)
682
+ assert abs(s) <= 3 * 24 * 3600
683
+ assert abs(microseconds) < 3.1e6
684
+
685
+ # Just a little bit of carrying possible for microseconds and seconds.
686
+ seconds, us = divmod(microseconds, 1000000)
687
+ s += seconds
688
+ days, s = divmod(s, 24*3600)
689
+ d += days
690
+
691
+ assert isinstance(d, int)
692
+ assert isinstance(s, int) and 0 <= s < 24*3600
693
+ assert isinstance(us, int) and 0 <= us < 1000000
694
+
695
+ if abs(d) > 999999999:
696
+ raise OverflowError("timedelta # of days is too large: %d" % d)
697
+
698
+ self = object.__new__(cls)
699
+ self._days = d
700
+ self._seconds = s
701
+ self._microseconds = us
702
+ self._hashcode = -1
703
+ return self
704
+
705
+ def __repr__(self):
706
+ args = []
707
+ if self._days:
708
+ args.append("days=%d" % self._days)
709
+ if self._seconds:
710
+ args.append("seconds=%d" % self._seconds)
711
+ if self._microseconds:
712
+ args.append("microseconds=%d" % self._microseconds)
713
+ if not args:
714
+ args.append('0')
715
+ return "%s.%s(%s)" % (_get_class_module(self),
716
+ self.__class__.__qualname__,
717
+ ', '.join(args))
718
+
719
+ def __str__(self):
720
+ mm, ss = divmod(self._seconds, 60)
721
+ hh, mm = divmod(mm, 60)
722
+ s = "%d:%02d:%02d" % (hh, mm, ss)
723
+ if self._days:
724
+ def plural(n):
725
+ return n, abs(n) != 1 and "s" or ""
726
+ s = ("%d day%s, " % plural(self._days)) + s
727
+ if self._microseconds:
728
+ s = s + ".%06d" % self._microseconds
729
+ return s
730
+
731
+ def total_seconds(self):
732
+ """Total seconds in the duration."""
733
+ return ((self.days * 86400 + self.seconds) * 10**6 +
734
+ self.microseconds) / 10**6
735
+
736
+ # Read-only field accessors
737
+ @property
738
+ def days(self):
739
+ """days"""
740
+ return self._days
741
+
742
+ @property
743
+ def seconds(self):
744
+ """seconds"""
745
+ return self._seconds
746
+
747
+ @property
748
+ def microseconds(self):
749
+ """microseconds"""
750
+ return self._microseconds
751
+
752
+ def __add__(self, other):
753
+ if isinstance(other, timedelta):
754
+ # for CPython compatibility, we cannot use
755
+ # our __class__ here, but need a real timedelta
756
+ return timedelta(self._days + other._days,
757
+ self._seconds + other._seconds,
758
+ self._microseconds + other._microseconds)
759
+ return NotImplemented
760
+
761
+ __radd__ = __add__
762
+
763
+ def __sub__(self, other):
764
+ if isinstance(other, timedelta):
765
+ # for CPython compatibility, we cannot use
766
+ # our __class__ here, but need a real timedelta
767
+ return timedelta(self._days - other._days,
768
+ self._seconds - other._seconds,
769
+ self._microseconds - other._microseconds)
770
+ return NotImplemented
771
+
772
+ def __rsub__(self, other):
773
+ if isinstance(other, timedelta):
774
+ return -self + other
775
+ return NotImplemented
776
+
777
+ def __neg__(self):
778
+ # for CPython compatibility, we cannot use
779
+ # our __class__ here, but need a real timedelta
780
+ return timedelta(-self._days,
781
+ -self._seconds,
782
+ -self._microseconds)
783
+
784
+ def __pos__(self):
785
+ return self
786
+
787
+ def __abs__(self):
788
+ if self._days < 0:
789
+ return -self
790
+ else:
791
+ return self
792
+
793
+ def __mul__(self, other):
794
+ if isinstance(other, int):
795
+ # for CPython compatibility, we cannot use
796
+ # our __class__ here, but need a real timedelta
797
+ return timedelta(self._days * other,
798
+ self._seconds * other,
799
+ self._microseconds * other)
800
+ if isinstance(other, float):
801
+ usec = self._to_microseconds()
802
+ a, b = other.as_integer_ratio()
803
+ return timedelta(0, 0, _divide_and_round(usec * a, b))
804
+ return NotImplemented
805
+
806
+ __rmul__ = __mul__
807
+
808
+ def _to_microseconds(self):
809
+ return ((self._days * (24*3600) + self._seconds) * 1000000 +
810
+ self._microseconds)
811
+
812
+ def __floordiv__(self, other):
813
+ if not isinstance(other, (int, timedelta)):
814
+ return NotImplemented
815
+ usec = self._to_microseconds()
816
+ if isinstance(other, timedelta):
817
+ return usec // other._to_microseconds()
818
+ if isinstance(other, int):
819
+ return timedelta(0, 0, usec // other)
820
+
821
+ def __truediv__(self, other):
822
+ if not isinstance(other, (int, float, timedelta)):
823
+ return NotImplemented
824
+ usec = self._to_microseconds()
825
+ if isinstance(other, timedelta):
826
+ return usec / other._to_microseconds()
827
+ if isinstance(other, int):
828
+ return timedelta(0, 0, _divide_and_round(usec, other))
829
+ if isinstance(other, float):
830
+ a, b = other.as_integer_ratio()
831
+ return timedelta(0, 0, _divide_and_round(b * usec, a))
832
+
833
+ def __mod__(self, other):
834
+ if isinstance(other, timedelta):
835
+ r = self._to_microseconds() % other._to_microseconds()
836
+ return timedelta(0, 0, r)
837
+ return NotImplemented
838
+
839
+ def __divmod__(self, other):
840
+ if isinstance(other, timedelta):
841
+ q, r = divmod(self._to_microseconds(),
842
+ other._to_microseconds())
843
+ return q, timedelta(0, 0, r)
844
+ return NotImplemented
845
+
846
+ # Comparisons of timedelta objects with other.
847
+
848
+ def __eq__(self, other):
849
+ if isinstance(other, timedelta):
850
+ return self._cmp(other) == 0
851
+ else:
852
+ return NotImplemented
853
+
854
+ def __le__(self, other):
855
+ if isinstance(other, timedelta):
856
+ return self._cmp(other) <= 0
857
+ else:
858
+ return NotImplemented
859
+
860
+ def __lt__(self, other):
861
+ if isinstance(other, timedelta):
862
+ return self._cmp(other) < 0
863
+ else:
864
+ return NotImplemented
865
+
866
+ def __ge__(self, other):
867
+ if isinstance(other, timedelta):
868
+ return self._cmp(other) >= 0
869
+ else:
870
+ return NotImplemented
871
+
872
+ def __gt__(self, other):
873
+ if isinstance(other, timedelta):
874
+ return self._cmp(other) > 0
875
+ else:
876
+ return NotImplemented
877
+
878
+ def _cmp(self, other):
879
+ assert isinstance(other, timedelta)
880
+ return _cmp(self._getstate(), other._getstate())
881
+
882
+ def __hash__(self):
883
+ if self._hashcode == -1:
884
+ self._hashcode = hash(self._getstate())
885
+ return self._hashcode
886
+
887
+ def __bool__(self):
888
+ return (self._days != 0 or
889
+ self._seconds != 0 or
890
+ self._microseconds != 0)
891
+
892
+ # Pickle support.
893
+
894
+ def _getstate(self):
895
+ return (self._days, self._seconds, self._microseconds)
896
+
897
+ def __reduce__(self):
898
+ return (self.__class__, self._getstate())
899
+
900
+ timedelta.min = timedelta(-999999999)
901
+ timedelta.max = timedelta(days=999999999, hours=23, minutes=59, seconds=59,
902
+ microseconds=999999)
903
+ timedelta.resolution = timedelta(microseconds=1)
904
+
905
+ class date:
906
+ """Concrete date type.
907
+
908
+ Constructors:
909
+
910
+ __new__()
911
+ fromtimestamp()
912
+ today()
913
+ fromordinal()
914
+
915
+ Operators:
916
+
917
+ __repr__, __str__
918
+ __eq__, __le__, __lt__, __ge__, __gt__, __hash__
919
+ __add__, __radd__, __sub__ (add/radd only with timedelta arg)
920
+
921
+ Methods:
922
+
923
+ timetuple()
924
+ toordinal()
925
+ weekday()
926
+ isoweekday(), isocalendar(), isoformat()
927
+ ctime()
928
+ strftime()
929
+
930
+ Properties (readonly):
931
+ year, month, day
932
+ """
933
+ __slots__ = '_year', '_month', '_day', '_hashcode'
934
+
935
+ def __new__(cls, year, month=None, day=None):
936
+ """Constructor.
937
+
938
+ Arguments:
939
+
940
+ year, month, day (required, base 1)
941
+ """
942
+ if (month is None and
943
+ isinstance(year, (bytes, str)) and len(year) == 4 and
944
+ 1 <= ord(year[2:3]) <= 12):
945
+ # Pickle support
946
+ if isinstance(year, str):
947
+ try:
948
+ year = year.encode('latin1')
949
+ except UnicodeEncodeError:
950
+ # More informative error message.
951
+ raise ValueError(
952
+ "Failed to encode latin1 string when unpickling "
953
+ "a date object. "
954
+ "pickle.load(data, encoding='latin1') is assumed.")
955
+ self = object.__new__(cls)
956
+ self.__setstate(year)
957
+ self._hashcode = -1
958
+ return self
959
+ year, month, day = _check_date_fields(year, month, day)
960
+ self = object.__new__(cls)
961
+ self._year = year
962
+ self._month = month
963
+ self._day = day
964
+ self._hashcode = -1
965
+ return self
966
+
967
+ # Additional constructors
968
+
969
+ @classmethod
970
+ def fromtimestamp(cls, t):
971
+ "Construct a date from a POSIX timestamp (like time.time())."
972
+ if t is None:
973
+ raise TypeError("'NoneType' object cannot be interpreted as an integer")
974
+ y, m, d, hh, mm, ss, weekday, jday, dst = _time.localtime(t)
975
+ return cls(y, m, d)
976
+
977
+ @classmethod
978
+ def today(cls):
979
+ "Construct a date from time.time()."
980
+ t = _time.time()
981
+ return cls.fromtimestamp(t)
982
+
983
+ @classmethod
984
+ def fromordinal(cls, n):
985
+ """Construct a date from a proleptic Gregorian ordinal.
986
+
987
+ January 1 of year 1 is day 1. Only the year, month and day are
988
+ non-zero in the result.
989
+ """
990
+ y, m, d = _ord2ymd(n)
991
+ return cls(y, m, d)
992
+
993
+ @classmethod
994
+ def fromisoformat(cls, date_string):
995
+ """Construct a date from a string in ISO 8601 format."""
996
+ if not isinstance(date_string, str):
997
+ raise TypeError('fromisoformat: argument must be str')
998
+
999
+ if len(date_string) not in (7, 8, 10):
1000
+ raise ValueError(f'Invalid isoformat string: {date_string!r}')
1001
+
1002
+ try:
1003
+ return cls(*_parse_isoformat_date(date_string))
1004
+ except Exception:
1005
+ raise ValueError(f'Invalid isoformat string: {date_string!r}')
1006
+
1007
+ @classmethod
1008
+ def fromisocalendar(cls, year, week, day):
1009
+ """Construct a date from the ISO year, week number and weekday.
1010
+
1011
+ This is the inverse of the date.isocalendar() function"""
1012
+ return cls(*_isoweek_to_gregorian(year, week, day))
1013
+
1014
+ # Conversions to string
1015
+
1016
+ def __repr__(self):
1017
+ """Convert to formal string, for repr().
1018
+
1019
+ >>> d = date(2010, 1, 1)
1020
+ >>> repr(d)
1021
+ 'datetime.date(2010, 1, 1)'
1022
+ """
1023
+ return "%s.%s(%d, %d, %d)" % (_get_class_module(self),
1024
+ self.__class__.__qualname__,
1025
+ self._year,
1026
+ self._month,
1027
+ self._day)
1028
+ # XXX These shouldn't depend on time.localtime(), because that
1029
+ # clips the usable dates to [1970 .. 2038). At least ctime() is
1030
+ # easily done without using strftime() -- that's better too because
1031
+ # strftime("%c", ...) is locale specific.
1032
+
1033
+
1034
+ def ctime(self):
1035
+ "Return ctime() style string."
1036
+ weekday = self.toordinal() % 7 or 7
1037
+ return "%s %s %2d 00:00:00 %04d" % (
1038
+ _DAYNAMES[weekday],
1039
+ _MONTHNAMES[self._month],
1040
+ self._day, self._year)
1041
+
1042
+ def strftime(self, format):
1043
+ """
1044
+ Format using strftime().
1045
+
1046
+ Example: "%d/%m/%Y, %H:%M:%S"
1047
+ """
1048
+ return _wrap_strftime(self, format, self.timetuple())
1049
+
1050
+ def __format__(self, fmt):
1051
+ if not isinstance(fmt, str):
1052
+ raise TypeError("must be str, not %s" % type(fmt).__name__)
1053
+ if len(fmt) != 0:
1054
+ return self.strftime(fmt)
1055
+ return str(self)
1056
+
1057
+ def isoformat(self):
1058
+ """Return the date formatted according to ISO.
1059
+
1060
+ This is 'YYYY-MM-DD'.
1061
+
1062
+ References:
1063
+ - http://www.w3.org/TR/NOTE-datetime
1064
+ - http://www.cl.cam.ac.uk/~mgk25/iso-time.html
1065
+ """
1066
+ return "%04d-%02d-%02d" % (self._year, self._month, self._day)
1067
+
1068
+ __str__ = isoformat
1069
+
1070
+ # Read-only field accessors
1071
+ @property
1072
+ def year(self):
1073
+ """year (1-9999)"""
1074
+ return self._year
1075
+
1076
+ @property
1077
+ def month(self):
1078
+ """month (1-12)"""
1079
+ return self._month
1080
+
1081
+ @property
1082
+ def day(self):
1083
+ """day (1-31)"""
1084
+ return self._day
1085
+
1086
+ # Standard conversions, __eq__, __le__, __lt__, __ge__, __gt__,
1087
+ # __hash__ (and helpers)
1088
+
1089
+ def timetuple(self):
1090
+ "Return local time tuple compatible with time.localtime()."
1091
+ return _build_struct_time(self._year, self._month, self._day,
1092
+ 0, 0, 0, -1)
1093
+
1094
+ def toordinal(self):
1095
+ """Return proleptic Gregorian ordinal for the year, month and day.
1096
+
1097
+ January 1 of year 1 is day 1. Only the year, month and day values
1098
+ contribute to the result.
1099
+ """
1100
+ return _ymd2ord(self._year, self._month, self._day)
1101
+
1102
+ def replace(self, year=None, month=None, day=None):
1103
+ """Return a new date with new values for the specified fields."""
1104
+ if year is None:
1105
+ year = self._year
1106
+ if month is None:
1107
+ month = self._month
1108
+ if day is None:
1109
+ day = self._day
1110
+ return type(self)(year, month, day)
1111
+
1112
+ # Comparisons of date objects with other.
1113
+
1114
+ def __eq__(self, other):
1115
+ if isinstance(other, date):
1116
+ return self._cmp(other) == 0
1117
+ return NotImplemented
1118
+
1119
+ def __le__(self, other):
1120
+ if isinstance(other, date):
1121
+ return self._cmp(other) <= 0
1122
+ return NotImplemented
1123
+
1124
+ def __lt__(self, other):
1125
+ if isinstance(other, date):
1126
+ return self._cmp(other) < 0
1127
+ return NotImplemented
1128
+
1129
+ def __ge__(self, other):
1130
+ if isinstance(other, date):
1131
+ return self._cmp(other) >= 0
1132
+ return NotImplemented
1133
+
1134
+ def __gt__(self, other):
1135
+ if isinstance(other, date):
1136
+ return self._cmp(other) > 0
1137
+ return NotImplemented
1138
+
1139
+ def _cmp(self, other):
1140
+ assert isinstance(other, date)
1141
+ y, m, d = self._year, self._month, self._day
1142
+ y2, m2, d2 = other._year, other._month, other._day
1143
+ return _cmp((y, m, d), (y2, m2, d2))
1144
+
1145
+ def __hash__(self):
1146
+ "Hash."
1147
+ if self._hashcode == -1:
1148
+ self._hashcode = hash(self._getstate())
1149
+ return self._hashcode
1150
+
1151
+ # Computations
1152
+
1153
+ def __add__(self, other):
1154
+ "Add a date to a timedelta."
1155
+ if isinstance(other, timedelta):
1156
+ o = self.toordinal() + other.days
1157
+ if 0 < o <= _MAXORDINAL:
1158
+ return type(self).fromordinal(o)
1159
+ raise OverflowError("result out of range")
1160
+ return NotImplemented
1161
+
1162
+ __radd__ = __add__
1163
+
1164
+ def __sub__(self, other):
1165
+ """Subtract two dates, or a date and a timedelta."""
1166
+ if isinstance(other, timedelta):
1167
+ return self + timedelta(-other.days)
1168
+ if isinstance(other, date):
1169
+ days1 = self.toordinal()
1170
+ days2 = other.toordinal()
1171
+ return timedelta(days1 - days2)
1172
+ return NotImplemented
1173
+
1174
+ def weekday(self):
1175
+ "Return day of the week, where Monday == 0 ... Sunday == 6."
1176
+ return (self.toordinal() + 6) % 7
1177
+
1178
+ # Day-of-the-week and week-of-the-year, according to ISO
1179
+
1180
+ def isoweekday(self):
1181
+ "Return day of the week, where Monday == 1 ... Sunday == 7."
1182
+ # 1-Jan-0001 is a Monday
1183
+ return self.toordinal() % 7 or 7
1184
+
1185
+ def isocalendar(self):
1186
+ """Return a named tuple containing ISO year, week number, and weekday.
1187
+
1188
+ The first ISO week of the year is the (Mon-Sun) week
1189
+ containing the year's first Thursday; everything else derives
1190
+ from that.
1191
+
1192
+ The first week is 1; Monday is 1 ... Sunday is 7.
1193
+
1194
+ ISO calendar algorithm taken from
1195
+ http://www.phys.uu.nl/~vgent/calendar/isocalendar.htm
1196
+ (used with permission)
1197
+ """
1198
+ year = self._year
1199
+ week1monday = _isoweek1monday(year)
1200
+ today = _ymd2ord(self._year, self._month, self._day)
1201
+ # Internally, week and day have origin 0
1202
+ week, day = divmod(today - week1monday, 7)
1203
+ if week < 0:
1204
+ year -= 1
1205
+ week1monday = _isoweek1monday(year)
1206
+ week, day = divmod(today - week1monday, 7)
1207
+ elif week >= 52:
1208
+ if today >= _isoweek1monday(year+1):
1209
+ year += 1
1210
+ week = 0
1211
+ return _IsoCalendarDate(year, week+1, day+1)
1212
+
1213
+ # Pickle support.
1214
+
1215
+ def _getstate(self):
1216
+ yhi, ylo = divmod(self._year, 256)
1217
+ return bytes([yhi, ylo, self._month, self._day]),
1218
+
1219
+ def __setstate(self, string):
1220
+ yhi, ylo, self._month, self._day = string
1221
+ self._year = yhi * 256 + ylo
1222
+
1223
+ def __reduce__(self):
1224
+ return (self.__class__, self._getstate())
1225
+
1226
+ _date_class = date # so functions w/ args named "date" can get at the class
1227
+
1228
+ date.min = date(1, 1, 1)
1229
+ date.max = date(9999, 12, 31)
1230
+ date.resolution = timedelta(days=1)
1231
+
1232
+
1233
+ class tzinfo:
1234
+ """Abstract base class for time zone info classes.
1235
+
1236
+ Subclasses must override the tzname(), utcoffset() and dst() methods.
1237
+ """
1238
+ __slots__ = ()
1239
+
1240
+ def tzname(self, dt):
1241
+ "datetime -> string name of time zone."
1242
+ raise NotImplementedError("tzinfo subclass must override tzname()")
1243
+
1244
+ def utcoffset(self, dt):
1245
+ "datetime -> timedelta, positive for east of UTC, negative for west of UTC"
1246
+ raise NotImplementedError("tzinfo subclass must override utcoffset()")
1247
+
1248
+ def dst(self, dt):
1249
+ """datetime -> DST offset as timedelta, positive for east of UTC.
1250
+
1251
+ Return 0 if DST not in effect. utcoffset() must include the DST
1252
+ offset.
1253
+ """
1254
+ raise NotImplementedError("tzinfo subclass must override dst()")
1255
+
1256
+ def fromutc(self, dt):
1257
+ "datetime in UTC -> datetime in local time."
1258
+
1259
+ if not isinstance(dt, datetime):
1260
+ raise TypeError("fromutc() requires a datetime argument")
1261
+ if dt.tzinfo is not self:
1262
+ raise ValueError("dt.tzinfo is not self")
1263
+
1264
+ dtoff = dt.utcoffset()
1265
+ if dtoff is None:
1266
+ raise ValueError("fromutc() requires a non-None utcoffset() "
1267
+ "result")
1268
+
1269
+ # See the long comment block at the end of this file for an
1270
+ # explanation of this algorithm.
1271
+ dtdst = dt.dst()
1272
+ if dtdst is None:
1273
+ raise ValueError("fromutc() requires a non-None dst() result")
1274
+ delta = dtoff - dtdst
1275
+ if delta:
1276
+ dt += delta
1277
+ dtdst = dt.dst()
1278
+ if dtdst is None:
1279
+ raise ValueError("fromutc(): dt.dst gave inconsistent "
1280
+ "results; cannot convert")
1281
+ return dt + dtdst
1282
+
1283
+ # Pickle support.
1284
+
1285
+ def __reduce__(self):
1286
+ getinitargs = getattr(self, "__getinitargs__", None)
1287
+ if getinitargs:
1288
+ args = getinitargs()
1289
+ else:
1290
+ args = ()
1291
+ return (self.__class__, args, self.__getstate__())
1292
+
1293
+
1294
+ class IsoCalendarDate(tuple):
1295
+
1296
+ def __new__(cls, year, week, weekday, /):
1297
+ return super().__new__(cls, (year, week, weekday))
1298
+
1299
+ @property
1300
+ def year(self):
1301
+ return self[0]
1302
+
1303
+ @property
1304
+ def week(self):
1305
+ return self[1]
1306
+
1307
+ @property
1308
+ def weekday(self):
1309
+ return self[2]
1310
+
1311
+ def __reduce__(self):
1312
+ # This code is intended to pickle the object without making the
1313
+ # class public. See https://bugs.python.org/msg352381
1314
+ return (tuple, (tuple(self),))
1315
+
1316
+ def __repr__(self):
1317
+ return (f'{self.__class__.__name__}'
1318
+ f'(year={self[0]}, week={self[1]}, weekday={self[2]})')
1319
+
1320
+
1321
+ _IsoCalendarDate = IsoCalendarDate
1322
+ del IsoCalendarDate
1323
+ _tzinfo_class = tzinfo
1324
+
1325
+ class time:
1326
+ """Time with time zone.
1327
+
1328
+ Constructors:
1329
+
1330
+ __new__()
1331
+
1332
+ Operators:
1333
+
1334
+ __repr__, __str__
1335
+ __eq__, __le__, __lt__, __ge__, __gt__, __hash__
1336
+
1337
+ Methods:
1338
+
1339
+ strftime()
1340
+ isoformat()
1341
+ utcoffset()
1342
+ tzname()
1343
+ dst()
1344
+
1345
+ Properties (readonly):
1346
+ hour, minute, second, microsecond, tzinfo, fold
1347
+ """
1348
+ __slots__ = '_hour', '_minute', '_second', '_microsecond', '_tzinfo', '_hashcode', '_fold'
1349
+
1350
+ def __new__(cls, hour=0, minute=0, second=0, microsecond=0, tzinfo=None, *, fold=0):
1351
+ """Constructor.
1352
+
1353
+ Arguments:
1354
+
1355
+ hour, minute (required)
1356
+ second, microsecond (default to zero)
1357
+ tzinfo (default to None)
1358
+ fold (keyword only, default to zero)
1359
+ """
1360
+ if (isinstance(hour, (bytes, str)) and len(hour) == 6 and
1361
+ ord(hour[0:1])&0x7F < 24):
1362
+ # Pickle support
1363
+ if isinstance(hour, str):
1364
+ try:
1365
+ hour = hour.encode('latin1')
1366
+ except UnicodeEncodeError:
1367
+ # More informative error message.
1368
+ raise ValueError(
1369
+ "Failed to encode latin1 string when unpickling "
1370
+ "a time object. "
1371
+ "pickle.load(data, encoding='latin1') is assumed.")
1372
+ self = object.__new__(cls)
1373
+ self.__setstate(hour, minute or None)
1374
+ self._hashcode = -1
1375
+ return self
1376
+ hour, minute, second, microsecond, fold = _check_time_fields(
1377
+ hour, minute, second, microsecond, fold)
1378
+ _check_tzinfo_arg(tzinfo)
1379
+ self = object.__new__(cls)
1380
+ self._hour = hour
1381
+ self._minute = minute
1382
+ self._second = second
1383
+ self._microsecond = microsecond
1384
+ self._tzinfo = tzinfo
1385
+ self._hashcode = -1
1386
+ self._fold = fold
1387
+ return self
1388
+
1389
+ # Read-only field accessors
1390
+ @property
1391
+ def hour(self):
1392
+ """hour (0-23)"""
1393
+ return self._hour
1394
+
1395
+ @property
1396
+ def minute(self):
1397
+ """minute (0-59)"""
1398
+ return self._minute
1399
+
1400
+ @property
1401
+ def second(self):
1402
+ """second (0-59)"""
1403
+ return self._second
1404
+
1405
+ @property
1406
+ def microsecond(self):
1407
+ """microsecond (0-999999)"""
1408
+ return self._microsecond
1409
+
1410
+ @property
1411
+ def tzinfo(self):
1412
+ """timezone info object"""
1413
+ return self._tzinfo
1414
+
1415
+ @property
1416
+ def fold(self):
1417
+ return self._fold
1418
+
1419
+ # Standard conversions, __hash__ (and helpers)
1420
+
1421
+ # Comparisons of time objects with other.
1422
+
1423
+ def __eq__(self, other):
1424
+ if isinstance(other, time):
1425
+ return self._cmp(other, allow_mixed=True) == 0
1426
+ else:
1427
+ return NotImplemented
1428
+
1429
+ def __le__(self, other):
1430
+ if isinstance(other, time):
1431
+ return self._cmp(other) <= 0
1432
+ else:
1433
+ return NotImplemented
1434
+
1435
+ def __lt__(self, other):
1436
+ if isinstance(other, time):
1437
+ return self._cmp(other) < 0
1438
+ else:
1439
+ return NotImplemented
1440
+
1441
+ def __ge__(self, other):
1442
+ if isinstance(other, time):
1443
+ return self._cmp(other) >= 0
1444
+ else:
1445
+ return NotImplemented
1446
+
1447
+ def __gt__(self, other):
1448
+ if isinstance(other, time):
1449
+ return self._cmp(other) > 0
1450
+ else:
1451
+ return NotImplemented
1452
+
1453
+ def _cmp(self, other, allow_mixed=False):
1454
+ assert isinstance(other, time)
1455
+ mytz = self._tzinfo
1456
+ ottz = other._tzinfo
1457
+ myoff = otoff = None
1458
+
1459
+ if mytz is ottz:
1460
+ base_compare = True
1461
+ else:
1462
+ myoff = self.utcoffset()
1463
+ otoff = other.utcoffset()
1464
+ base_compare = myoff == otoff
1465
+
1466
+ if base_compare:
1467
+ return _cmp((self._hour, self._minute, self._second,
1468
+ self._microsecond),
1469
+ (other._hour, other._minute, other._second,
1470
+ other._microsecond))
1471
+ if myoff is None or otoff is None:
1472
+ if allow_mixed:
1473
+ return 2 # arbitrary non-zero value
1474
+ else:
1475
+ raise TypeError("cannot compare naive and aware times")
1476
+ myhhmm = self._hour * 60 + self._minute - myoff//timedelta(minutes=1)
1477
+ othhmm = other._hour * 60 + other._minute - otoff//timedelta(minutes=1)
1478
+ return _cmp((myhhmm, self._second, self._microsecond),
1479
+ (othhmm, other._second, other._microsecond))
1480
+
1481
+ def __hash__(self):
1482
+ """Hash."""
1483
+ if self._hashcode == -1:
1484
+ if self.fold:
1485
+ t = self.replace(fold=0)
1486
+ else:
1487
+ t = self
1488
+ tzoff = t.utcoffset()
1489
+ if not tzoff: # zero or None
1490
+ self._hashcode = hash(t._getstate()[0])
1491
+ else:
1492
+ h, m = divmod(timedelta(hours=self.hour, minutes=self.minute) - tzoff,
1493
+ timedelta(hours=1))
1494
+ assert not m % timedelta(minutes=1), "whole minute"
1495
+ m //= timedelta(minutes=1)
1496
+ if 0 <= h < 24:
1497
+ self._hashcode = hash(time(h, m, self.second, self.microsecond))
1498
+ else:
1499
+ self._hashcode = hash((h, m, self.second, self.microsecond))
1500
+ return self._hashcode
1501
+
1502
+ # Conversion to string
1503
+
1504
+ def _tzstr(self):
1505
+ """Return formatted timezone offset (+xx:xx) or an empty string."""
1506
+ off = self.utcoffset()
1507
+ return _format_offset(off)
1508
+
1509
+ def __repr__(self):
1510
+ """Convert to formal string, for repr()."""
1511
+ if self._microsecond != 0:
1512
+ s = ", %d, %d" % (self._second, self._microsecond)
1513
+ elif self._second != 0:
1514
+ s = ", %d" % self._second
1515
+ else:
1516
+ s = ""
1517
+ s= "%s.%s(%d, %d%s)" % (_get_class_module(self),
1518
+ self.__class__.__qualname__,
1519
+ self._hour, self._minute, s)
1520
+ if self._tzinfo is not None:
1521
+ assert s[-1:] == ")"
1522
+ s = s[:-1] + ", tzinfo=%r" % self._tzinfo + ")"
1523
+ if self._fold:
1524
+ assert s[-1:] == ")"
1525
+ s = s[:-1] + ", fold=1)"
1526
+ return s
1527
+
1528
+ def isoformat(self, timespec='auto'):
1529
+ """Return the time formatted according to ISO.
1530
+
1531
+ The full format is 'HH:MM:SS.mmmmmm+zz:zz'. By default, the fractional
1532
+ part is omitted if self.microsecond == 0.
1533
+
1534
+ The optional argument timespec specifies the number of additional
1535
+ terms of the time to include. Valid options are 'auto', 'hours',
1536
+ 'minutes', 'seconds', 'milliseconds' and 'microseconds'.
1537
+ """
1538
+ s = _format_time(self._hour, self._minute, self._second,
1539
+ self._microsecond, timespec)
1540
+ tz = self._tzstr()
1541
+ if tz:
1542
+ s += tz
1543
+ return s
1544
+
1545
+ __str__ = isoformat
1546
+
1547
+ @classmethod
1548
+ def fromisoformat(cls, time_string):
1549
+ """Construct a time from a string in one of the ISO 8601 formats."""
1550
+ if not isinstance(time_string, str):
1551
+ raise TypeError('fromisoformat: argument must be str')
1552
+
1553
+ # The spec actually requires that time-only ISO 8601 strings start with
1554
+ # T, but the extended format allows this to be omitted as long as there
1555
+ # is no ambiguity with date strings.
1556
+ time_string = time_string.removeprefix('T')
1557
+
1558
+ try:
1559
+ return cls(*_parse_isoformat_time(time_string))
1560
+ except Exception:
1561
+ raise ValueError(f'Invalid isoformat string: {time_string!r}')
1562
+
1563
+ def strftime(self, format):
1564
+ """Format using strftime(). The date part of the timestamp passed
1565
+ to underlying strftime should not be used.
1566
+ """
1567
+ # The year must be >= 1000 else Python's strftime implementation
1568
+ # can raise a bogus exception.
1569
+ timetuple = (1900, 1, 1,
1570
+ self._hour, self._minute, self._second,
1571
+ 0, 1, -1)
1572
+ return _wrap_strftime(self, format, timetuple)
1573
+
1574
+ def __format__(self, fmt):
1575
+ if not isinstance(fmt, str):
1576
+ raise TypeError("must be str, not %s" % type(fmt).__name__)
1577
+ if len(fmt) != 0:
1578
+ return self.strftime(fmt)
1579
+ return str(self)
1580
+
1581
+ # Timezone functions
1582
+
1583
+ def utcoffset(self):
1584
+ """Return the timezone offset as timedelta, positive east of UTC
1585
+ (negative west of UTC)."""
1586
+ if self._tzinfo is None:
1587
+ return None
1588
+ offset = self._tzinfo.utcoffset(None)
1589
+ _check_utc_offset("utcoffset", offset)
1590
+ return offset
1591
+
1592
+ def tzname(self):
1593
+ """Return the timezone name.
1594
+
1595
+ Note that the name is 100% informational -- there's no requirement that
1596
+ it mean anything in particular. For example, "GMT", "UTC", "-500",
1597
+ "-5:00", "EDT", "US/Eastern", "America/New York" are all valid replies.
1598
+ """
1599
+ if self._tzinfo is None:
1600
+ return None
1601
+ name = self._tzinfo.tzname(None)
1602
+ _check_tzname(name)
1603
+ return name
1604
+
1605
+ def dst(self):
1606
+ """Return 0 if DST is not in effect, or the DST offset (as timedelta
1607
+ positive eastward) if DST is in effect.
1608
+
1609
+ This is purely informational; the DST offset has already been added to
1610
+ the UTC offset returned by utcoffset() if applicable, so there's no
1611
+ need to consult dst() unless you're interested in displaying the DST
1612
+ info.
1613
+ """
1614
+ if self._tzinfo is None:
1615
+ return None
1616
+ offset = self._tzinfo.dst(None)
1617
+ _check_utc_offset("dst", offset)
1618
+ return offset
1619
+
1620
+ def replace(self, hour=None, minute=None, second=None, microsecond=None,
1621
+ tzinfo=True, *, fold=None):
1622
+ """Return a new time with new values for the specified fields."""
1623
+ if hour is None:
1624
+ hour = self.hour
1625
+ if minute is None:
1626
+ minute = self.minute
1627
+ if second is None:
1628
+ second = self.second
1629
+ if microsecond is None:
1630
+ microsecond = self.microsecond
1631
+ if tzinfo is True:
1632
+ tzinfo = self.tzinfo
1633
+ if fold is None:
1634
+ fold = self._fold
1635
+ return type(self)(hour, minute, second, microsecond, tzinfo, fold=fold)
1636
+
1637
+ # Pickle support.
1638
+
1639
+ def _getstate(self, protocol=3):
1640
+ us2, us3 = divmod(self._microsecond, 256)
1641
+ us1, us2 = divmod(us2, 256)
1642
+ h = self._hour
1643
+ if self._fold and protocol > 3:
1644
+ h += 128
1645
+ basestate = bytes([h, self._minute, self._second,
1646
+ us1, us2, us3])
1647
+ if self._tzinfo is None:
1648
+ return (basestate,)
1649
+ else:
1650
+ return (basestate, self._tzinfo)
1651
+
1652
+ def __setstate(self, string, tzinfo):
1653
+ if tzinfo is not None and not isinstance(tzinfo, _tzinfo_class):
1654
+ raise TypeError("bad tzinfo state arg")
1655
+ h, self._minute, self._second, us1, us2, us3 = string
1656
+ if h > 127:
1657
+ self._fold = 1
1658
+ self._hour = h - 128
1659
+ else:
1660
+ self._fold = 0
1661
+ self._hour = h
1662
+ self._microsecond = (((us1 << 8) | us2) << 8) | us3
1663
+ self._tzinfo = tzinfo
1664
+
1665
+ def __reduce_ex__(self, protocol):
1666
+ return (self.__class__, self._getstate(protocol))
1667
+
1668
+ def __reduce__(self):
1669
+ return self.__reduce_ex__(2)
1670
+
1671
+ _time_class = time # so functions w/ args named "time" can get at the class
1672
+
1673
+ time.min = time(0, 0, 0)
1674
+ time.max = time(23, 59, 59, 999999)
1675
+ time.resolution = timedelta(microseconds=1)
1676
+
1677
+
1678
+ class datetime(date):
1679
+ """datetime(year, month, day[, hour[, minute[, second[, microsecond[,tzinfo]]]]])
1680
+
1681
+ The year, month and day arguments are required. tzinfo may be None, or an
1682
+ instance of a tzinfo subclass. The remaining arguments may be ints.
1683
+ """
1684
+ __slots__ = date.__slots__ + time.__slots__
1685
+
1686
+ def __new__(cls, year, month=None, day=None, hour=0, minute=0, second=0,
1687
+ microsecond=0, tzinfo=None, *, fold=0):
1688
+ if (isinstance(year, (bytes, str)) and len(year) == 10 and
1689
+ 1 <= ord(year[2:3])&0x7F <= 12):
1690
+ # Pickle support
1691
+ if isinstance(year, str):
1692
+ try:
1693
+ year = bytes(year, 'latin1')
1694
+ except UnicodeEncodeError:
1695
+ # More informative error message.
1696
+ raise ValueError(
1697
+ "Failed to encode latin1 string when unpickling "
1698
+ "a datetime object. "
1699
+ "pickle.load(data, encoding='latin1') is assumed.")
1700
+ self = object.__new__(cls)
1701
+ self.__setstate(year, month)
1702
+ self._hashcode = -1
1703
+ return self
1704
+ year, month, day = _check_date_fields(year, month, day)
1705
+ hour, minute, second, microsecond, fold = _check_time_fields(
1706
+ hour, minute, second, microsecond, fold)
1707
+ _check_tzinfo_arg(tzinfo)
1708
+ self = object.__new__(cls)
1709
+ self._year = year
1710
+ self._month = month
1711
+ self._day = day
1712
+ self._hour = hour
1713
+ self._minute = minute
1714
+ self._second = second
1715
+ self._microsecond = microsecond
1716
+ self._tzinfo = tzinfo
1717
+ self._hashcode = -1
1718
+ self._fold = fold
1719
+ return self
1720
+
1721
+ # Read-only field accessors
1722
+ @property
1723
+ def hour(self):
1724
+ """hour (0-23)"""
1725
+ return self._hour
1726
+
1727
+ @property
1728
+ def minute(self):
1729
+ """minute (0-59)"""
1730
+ return self._minute
1731
+
1732
+ @property
1733
+ def second(self):
1734
+ """second (0-59)"""
1735
+ return self._second
1736
+
1737
+ @property
1738
+ def microsecond(self):
1739
+ """microsecond (0-999999)"""
1740
+ return self._microsecond
1741
+
1742
+ @property
1743
+ def tzinfo(self):
1744
+ """timezone info object"""
1745
+ return self._tzinfo
1746
+
1747
+ @property
1748
+ def fold(self):
1749
+ return self._fold
1750
+
1751
+ @classmethod
1752
+ def _fromtimestamp(cls, t, utc, tz):
1753
+ """Construct a datetime from a POSIX timestamp (like time.time()).
1754
+
1755
+ A timezone info object may be passed in as well.
1756
+ """
1757
+ frac, t = _math.modf(t)
1758
+ us = round(frac * 1e6)
1759
+ if us >= 1000000:
1760
+ t += 1
1761
+ us -= 1000000
1762
+ elif us < 0:
1763
+ t -= 1
1764
+ us += 1000000
1765
+
1766
+ converter = _time.gmtime if utc else _time.localtime
1767
+ y, m, d, hh, mm, ss, weekday, jday, dst = converter(t)
1768
+ ss = min(ss, 59) # clamp out leap seconds if the platform has them
1769
+ result = cls(y, m, d, hh, mm, ss, us, tz)
1770
+ if tz is None and not utc:
1771
+ # As of version 2015f max fold in IANA database is
1772
+ # 23 hours at 1969-09-30 13:00:00 in Kwajalein.
1773
+ # Let's probe 24 hours in the past to detect a transition:
1774
+ max_fold_seconds = 24 * 3600
1775
+
1776
+ # On Windows localtime_s throws an OSError for negative values,
1777
+ # thus we can't perform fold detection for values of time less
1778
+ # than the max time fold. See comments in _datetimemodule's
1779
+ # version of this method for more details.
1780
+ if t < max_fold_seconds and sys.platform.startswith("win"):
1781
+ return result
1782
+
1783
+ y, m, d, hh, mm, ss = converter(t - max_fold_seconds)[:6]
1784
+ probe1 = cls(y, m, d, hh, mm, ss, us, tz)
1785
+ trans = result - probe1 - timedelta(0, max_fold_seconds)
1786
+ if trans.days < 0:
1787
+ y, m, d, hh, mm, ss = converter(t + trans // timedelta(0, 1))[:6]
1788
+ probe2 = cls(y, m, d, hh, mm, ss, us, tz)
1789
+ if probe2 == result:
1790
+ result._fold = 1
1791
+ elif tz is not None:
1792
+ result = tz.fromutc(result)
1793
+ return result
1794
+
1795
+ @classmethod
1796
+ def fromtimestamp(cls, timestamp, tz=None):
1797
+ """Construct a datetime from a POSIX timestamp (like time.time()).
1798
+
1799
+ A timezone info object may be passed in as well.
1800
+ """
1801
+ _check_tzinfo_arg(tz)
1802
+
1803
+ return cls._fromtimestamp(timestamp, tz is not None, tz)
1804
+
1805
+ @classmethod
1806
+ def utcfromtimestamp(cls, t):
1807
+ """Construct a naive UTC datetime from a POSIX timestamp."""
1808
+ import warnings
1809
+ warnings.warn("datetime.datetime.utcfromtimestamp() is deprecated and scheduled "
1810
+ "for removal in a future version. Use timezone-aware "
1811
+ "objects to represent datetimes in UTC: "
1812
+ "datetime.datetime.fromtimestamp(t, datetime.UTC).",
1813
+ DeprecationWarning,
1814
+ stacklevel=2)
1815
+ return cls._fromtimestamp(t, True, None)
1816
+
1817
+ @classmethod
1818
+ def now(cls, tz=None):
1819
+ "Construct a datetime from time.time() and optional time zone info."
1820
+ t = _time.time()
1821
+ return cls.fromtimestamp(t, tz)
1822
+
1823
+ @classmethod
1824
+ def utcnow(cls):
1825
+ "Construct a UTC datetime from time.time()."
1826
+ import warnings
1827
+ warnings.warn("datetime.datetime.utcnow() is deprecated and scheduled for "
1828
+ "removal in a future version. Use timezone-aware "
1829
+ "objects to represent datetimes in UTC: "
1830
+ "datetime.datetime.now(datetime.UTC).",
1831
+ DeprecationWarning,
1832
+ stacklevel=2)
1833
+ t = _time.time()
1834
+ return cls._fromtimestamp(t, True, None)
1835
+
1836
+ @classmethod
1837
+ def combine(cls, date, time, tzinfo=True):
1838
+ "Construct a datetime from a given date and a given time."
1839
+ if not isinstance(date, _date_class):
1840
+ raise TypeError("date argument must be a date instance")
1841
+ if not isinstance(time, _time_class):
1842
+ raise TypeError("time argument must be a time instance")
1843
+ if tzinfo is True:
1844
+ tzinfo = time.tzinfo
1845
+ return cls(date.year, date.month, date.day,
1846
+ time.hour, time.minute, time.second, time.microsecond,
1847
+ tzinfo, fold=time.fold)
1848
+
1849
+ @classmethod
1850
+ def fromisoformat(cls, date_string):
1851
+ """Construct a datetime from a string in one of the ISO 8601 formats."""
1852
+ if not isinstance(date_string, str):
1853
+ raise TypeError('fromisoformat: argument must be str')
1854
+
1855
+ if len(date_string) < 7:
1856
+ raise ValueError(f'Invalid isoformat string: {date_string!r}')
1857
+
1858
+ # Split this at the separator
1859
+ try:
1860
+ separator_location = _find_isoformat_datetime_separator(date_string)
1861
+ dstr = date_string[0:separator_location]
1862
+ tstr = date_string[(separator_location+1):]
1863
+
1864
+ date_components = _parse_isoformat_date(dstr)
1865
+ except ValueError:
1866
+ raise ValueError(
1867
+ f'Invalid isoformat string: {date_string!r}') from None
1868
+
1869
+ if tstr:
1870
+ try:
1871
+ time_components = _parse_isoformat_time(tstr)
1872
+ except ValueError:
1873
+ raise ValueError(
1874
+ f'Invalid isoformat string: {date_string!r}') from None
1875
+ else:
1876
+ time_components = [0, 0, 0, 0, None]
1877
+
1878
+ return cls(*(date_components + time_components))
1879
+
1880
+ def timetuple(self):
1881
+ "Return local time tuple compatible with time.localtime()."
1882
+ dst = self.dst()
1883
+ if dst is None:
1884
+ dst = -1
1885
+ elif dst:
1886
+ dst = 1
1887
+ else:
1888
+ dst = 0
1889
+ return _build_struct_time(self.year, self.month, self.day,
1890
+ self.hour, self.minute, self.second,
1891
+ dst)
1892
+
1893
+ def _mktime(self):
1894
+ """Return integer POSIX timestamp."""
1895
+ epoch = datetime(1970, 1, 1)
1896
+ max_fold_seconds = 24 * 3600
1897
+ t = (self - epoch) // timedelta(0, 1)
1898
+ def local(u):
1899
+ y, m, d, hh, mm, ss = _time.localtime(u)[:6]
1900
+ return (datetime(y, m, d, hh, mm, ss) - epoch) // timedelta(0, 1)
1901
+
1902
+ # Our goal is to solve t = local(u) for u.
1903
+ a = local(t) - t
1904
+ u1 = t - a
1905
+ t1 = local(u1)
1906
+ if t1 == t:
1907
+ # We found one solution, but it may not be the one we need.
1908
+ # Look for an earlier solution (if `fold` is 0), or a
1909
+ # later one (if `fold` is 1).
1910
+ u2 = u1 + (-max_fold_seconds, max_fold_seconds)[self.fold]
1911
+ b = local(u2) - u2
1912
+ if a == b:
1913
+ return u1
1914
+ else:
1915
+ b = t1 - u1
1916
+ assert a != b
1917
+ u2 = t - b
1918
+ t2 = local(u2)
1919
+ if t2 == t:
1920
+ return u2
1921
+ if t1 == t:
1922
+ return u1
1923
+ # We have found both offsets a and b, but neither t - a nor t - b is
1924
+ # a solution. This means t is in the gap.
1925
+ return (max, min)[self.fold](u1, u2)
1926
+
1927
+
1928
+ def timestamp(self):
1929
+ "Return POSIX timestamp as float"
1930
+ if self._tzinfo is None:
1931
+ s = self._mktime()
1932
+ return s + self.microsecond / 1e6
1933
+ else:
1934
+ return (self - _EPOCH).total_seconds()
1935
+
1936
+ def utctimetuple(self):
1937
+ "Return UTC time tuple compatible with time.gmtime()."
1938
+ offset = self.utcoffset()
1939
+ if offset:
1940
+ self -= offset
1941
+ y, m, d = self.year, self.month, self.day
1942
+ hh, mm, ss = self.hour, self.minute, self.second
1943
+ return _build_struct_time(y, m, d, hh, mm, ss, 0)
1944
+
1945
+ def date(self):
1946
+ "Return the date part."
1947
+ return date(self._year, self._month, self._day)
1948
+
1949
+ def time(self):
1950
+ "Return the time part, with tzinfo None."
1951
+ return time(self.hour, self.minute, self.second, self.microsecond, fold=self.fold)
1952
+
1953
+ def timetz(self):
1954
+ "Return the time part, with same tzinfo."
1955
+ return time(self.hour, self.minute, self.second, self.microsecond,
1956
+ self._tzinfo, fold=self.fold)
1957
+
1958
+ def replace(self, year=None, month=None, day=None, hour=None,
1959
+ minute=None, second=None, microsecond=None, tzinfo=True,
1960
+ *, fold=None):
1961
+ """Return a new datetime with new values for the specified fields."""
1962
+ if year is None:
1963
+ year = self.year
1964
+ if month is None:
1965
+ month = self.month
1966
+ if day is None:
1967
+ day = self.day
1968
+ if hour is None:
1969
+ hour = self.hour
1970
+ if minute is None:
1971
+ minute = self.minute
1972
+ if second is None:
1973
+ second = self.second
1974
+ if microsecond is None:
1975
+ microsecond = self.microsecond
1976
+ if tzinfo is True:
1977
+ tzinfo = self.tzinfo
1978
+ if fold is None:
1979
+ fold = self.fold
1980
+ return type(self)(year, month, day, hour, minute, second,
1981
+ microsecond, tzinfo, fold=fold)
1982
+
1983
+ def _local_timezone(self):
1984
+ if self.tzinfo is None:
1985
+ ts = self._mktime()
1986
+ # Detect gap
1987
+ ts2 = self.replace(fold=1-self.fold)._mktime()
1988
+ if ts2 != ts: # This happens in a gap or a fold
1989
+ if (ts2 > ts) == self.fold:
1990
+ ts = ts2
1991
+ else:
1992
+ ts = (self - _EPOCH) // timedelta(seconds=1)
1993
+ localtm = _time.localtime(ts)
1994
+ local = datetime(*localtm[:6])
1995
+ # Extract TZ data
1996
+ gmtoff = localtm.tm_gmtoff
1997
+ zone = localtm.tm_zone
1998
+ return timezone(timedelta(seconds=gmtoff), zone)
1999
+
2000
+ def astimezone(self, tz=None):
2001
+ if tz is None:
2002
+ tz = self._local_timezone()
2003
+ elif not isinstance(tz, tzinfo):
2004
+ raise TypeError("tz argument must be an instance of tzinfo")
2005
+
2006
+ mytz = self.tzinfo
2007
+ if mytz is None:
2008
+ mytz = self._local_timezone()
2009
+ myoffset = mytz.utcoffset(self)
2010
+ else:
2011
+ myoffset = mytz.utcoffset(self)
2012
+ if myoffset is None:
2013
+ mytz = self.replace(tzinfo=None)._local_timezone()
2014
+ myoffset = mytz.utcoffset(self)
2015
+
2016
+ if tz is mytz:
2017
+ return self
2018
+
2019
+ # Convert self to UTC, and attach the new time zone object.
2020
+ utc = (self - myoffset).replace(tzinfo=tz)
2021
+
2022
+ # Convert from UTC to tz's local time.
2023
+ return tz.fromutc(utc)
2024
+
2025
+ # Ways to produce a string.
2026
+
2027
+ def ctime(self):
2028
+ "Return ctime() style string."
2029
+ weekday = self.toordinal() % 7 or 7
2030
+ return "%s %s %2d %02d:%02d:%02d %04d" % (
2031
+ _DAYNAMES[weekday],
2032
+ _MONTHNAMES[self._month],
2033
+ self._day,
2034
+ self._hour, self._minute, self._second,
2035
+ self._year)
2036
+
2037
+ def isoformat(self, sep='T', timespec='auto'):
2038
+ """Return the time formatted according to ISO.
2039
+
2040
+ The full format looks like 'YYYY-MM-DD HH:MM:SS.mmmmmm'.
2041
+ By default, the fractional part is omitted if self.microsecond == 0.
2042
+
2043
+ If self.tzinfo is not None, the UTC offset is also attached, giving
2044
+ giving a full format of 'YYYY-MM-DD HH:MM:SS.mmmmmm+HH:MM'.
2045
+
2046
+ Optional argument sep specifies the separator between date and
2047
+ time, default 'T'.
2048
+
2049
+ The optional argument timespec specifies the number of additional
2050
+ terms of the time to include. Valid options are 'auto', 'hours',
2051
+ 'minutes', 'seconds', 'milliseconds' and 'microseconds'.
2052
+ """
2053
+ s = ("%04d-%02d-%02d%c" % (self._year, self._month, self._day, sep) +
2054
+ _format_time(self._hour, self._minute, self._second,
2055
+ self._microsecond, timespec))
2056
+
2057
+ off = self.utcoffset()
2058
+ tz = _format_offset(off)
2059
+ if tz:
2060
+ s += tz
2061
+
2062
+ return s
2063
+
2064
+ def __repr__(self):
2065
+ """Convert to formal string, for repr()."""
2066
+ L = [self._year, self._month, self._day, # These are never zero
2067
+ self._hour, self._minute, self._second, self._microsecond]
2068
+ if L[-1] == 0:
2069
+ del L[-1]
2070
+ if L[-1] == 0:
2071
+ del L[-1]
2072
+ s = "%s.%s(%s)" % (_get_class_module(self),
2073
+ self.__class__.__qualname__,
2074
+ ", ".join(map(str, L)))
2075
+ if self._tzinfo is not None:
2076
+ assert s[-1:] == ")"
2077
+ s = s[:-1] + ", tzinfo=%r" % self._tzinfo + ")"
2078
+ if self._fold:
2079
+ assert s[-1:] == ")"
2080
+ s = s[:-1] + ", fold=1)"
2081
+ return s
2082
+
2083
+ def __str__(self):
2084
+ "Convert to string, for str()."
2085
+ return self.isoformat(sep=' ')
2086
+
2087
+ @classmethod
2088
+ def strptime(cls, date_string, format):
2089
+ 'string, format -> new datetime parsed from a string (like time.strptime()).'
2090
+ import _strptime
2091
+ return _strptime._strptime_datetime(cls, date_string, format)
2092
+
2093
+ def utcoffset(self):
2094
+ """Return the timezone offset as timedelta positive east of UTC (negative west of
2095
+ UTC)."""
2096
+ if self._tzinfo is None:
2097
+ return None
2098
+ offset = self._tzinfo.utcoffset(self)
2099
+ _check_utc_offset("utcoffset", offset)
2100
+ return offset
2101
+
2102
+ def tzname(self):
2103
+ """Return the timezone name.
2104
+
2105
+ Note that the name is 100% informational -- there's no requirement that
2106
+ it mean anything in particular. For example, "GMT", "UTC", "-500",
2107
+ "-5:00", "EDT", "US/Eastern", "America/New York" are all valid replies.
2108
+ """
2109
+ if self._tzinfo is None:
2110
+ return None
2111
+ name = self._tzinfo.tzname(self)
2112
+ _check_tzname(name)
2113
+ return name
2114
+
2115
+ def dst(self):
2116
+ """Return 0 if DST is not in effect, or the DST offset (as timedelta
2117
+ positive eastward) if DST is in effect.
2118
+
2119
+ This is purely informational; the DST offset has already been added to
2120
+ the UTC offset returned by utcoffset() if applicable, so there's no
2121
+ need to consult dst() unless you're interested in displaying the DST
2122
+ info.
2123
+ """
2124
+ if self._tzinfo is None:
2125
+ return None
2126
+ offset = self._tzinfo.dst(self)
2127
+ _check_utc_offset("dst", offset)
2128
+ return offset
2129
+
2130
+ # Comparisons of datetime objects with other.
2131
+
2132
+ def __eq__(self, other):
2133
+ if isinstance(other, datetime):
2134
+ return self._cmp(other, allow_mixed=True) == 0
2135
+ elif not isinstance(other, date):
2136
+ return NotImplemented
2137
+ else:
2138
+ return False
2139
+
2140
+ def __le__(self, other):
2141
+ if isinstance(other, datetime):
2142
+ return self._cmp(other) <= 0
2143
+ elif not isinstance(other, date):
2144
+ return NotImplemented
2145
+ else:
2146
+ _cmperror(self, other)
2147
+
2148
+ def __lt__(self, other):
2149
+ if isinstance(other, datetime):
2150
+ return self._cmp(other) < 0
2151
+ elif not isinstance(other, date):
2152
+ return NotImplemented
2153
+ else:
2154
+ _cmperror(self, other)
2155
+
2156
+ def __ge__(self, other):
2157
+ if isinstance(other, datetime):
2158
+ return self._cmp(other) >= 0
2159
+ elif not isinstance(other, date):
2160
+ return NotImplemented
2161
+ else:
2162
+ _cmperror(self, other)
2163
+
2164
+ def __gt__(self, other):
2165
+ if isinstance(other, datetime):
2166
+ return self._cmp(other) > 0
2167
+ elif not isinstance(other, date):
2168
+ return NotImplemented
2169
+ else:
2170
+ _cmperror(self, other)
2171
+
2172
+ def _cmp(self, other, allow_mixed=False):
2173
+ assert isinstance(other, datetime)
2174
+ mytz = self._tzinfo
2175
+ ottz = other._tzinfo
2176
+ myoff = otoff = None
2177
+
2178
+ if mytz is ottz:
2179
+ base_compare = True
2180
+ else:
2181
+ myoff = self.utcoffset()
2182
+ otoff = other.utcoffset()
2183
+ # Assume that allow_mixed means that we are called from __eq__
2184
+ if allow_mixed:
2185
+ if myoff != self.replace(fold=not self.fold).utcoffset():
2186
+ return 2
2187
+ if otoff != other.replace(fold=not other.fold).utcoffset():
2188
+ return 2
2189
+ base_compare = myoff == otoff
2190
+
2191
+ if base_compare:
2192
+ return _cmp((self._year, self._month, self._day,
2193
+ self._hour, self._minute, self._second,
2194
+ self._microsecond),
2195
+ (other._year, other._month, other._day,
2196
+ other._hour, other._minute, other._second,
2197
+ other._microsecond))
2198
+ if myoff is None or otoff is None:
2199
+ if allow_mixed:
2200
+ return 2 # arbitrary non-zero value
2201
+ else:
2202
+ raise TypeError("cannot compare naive and aware datetimes")
2203
+ # XXX What follows could be done more efficiently...
2204
+ diff = self - other # this will take offsets into account
2205
+ if diff.days < 0:
2206
+ return -1
2207
+ return diff and 1 or 0
2208
+
2209
+ def __add__(self, other):
2210
+ "Add a datetime and a timedelta."
2211
+ if not isinstance(other, timedelta):
2212
+ return NotImplemented
2213
+ delta = timedelta(self.toordinal(),
2214
+ hours=self._hour,
2215
+ minutes=self._minute,
2216
+ seconds=self._second,
2217
+ microseconds=self._microsecond)
2218
+ delta += other
2219
+ hour, rem = divmod(delta.seconds, 3600)
2220
+ minute, second = divmod(rem, 60)
2221
+ if 0 < delta.days <= _MAXORDINAL:
2222
+ return type(self).combine(date.fromordinal(delta.days),
2223
+ time(hour, minute, second,
2224
+ delta.microseconds,
2225
+ tzinfo=self._tzinfo))
2226
+ raise OverflowError("result out of range")
2227
+
2228
+ __radd__ = __add__
2229
+
2230
+ def __sub__(self, other):
2231
+ "Subtract two datetimes, or a datetime and a timedelta."
2232
+ if not isinstance(other, datetime):
2233
+ if isinstance(other, timedelta):
2234
+ return self + -other
2235
+ return NotImplemented
2236
+
2237
+ days1 = self.toordinal()
2238
+ days2 = other.toordinal()
2239
+ secs1 = self._second + self._minute * 60 + self._hour * 3600
2240
+ secs2 = other._second + other._minute * 60 + other._hour * 3600
2241
+ base = timedelta(days1 - days2,
2242
+ secs1 - secs2,
2243
+ self._microsecond - other._microsecond)
2244
+ if self._tzinfo is other._tzinfo:
2245
+ return base
2246
+ myoff = self.utcoffset()
2247
+ otoff = other.utcoffset()
2248
+ if myoff == otoff:
2249
+ return base
2250
+ if myoff is None or otoff is None:
2251
+ raise TypeError("cannot mix naive and timezone-aware time")
2252
+ return base + otoff - myoff
2253
+
2254
+ def __hash__(self):
2255
+ if self._hashcode == -1:
2256
+ if self.fold:
2257
+ t = self.replace(fold=0)
2258
+ else:
2259
+ t = self
2260
+ tzoff = t.utcoffset()
2261
+ if tzoff is None:
2262
+ self._hashcode = hash(t._getstate()[0])
2263
+ else:
2264
+ days = _ymd2ord(self.year, self.month, self.day)
2265
+ seconds = self.hour * 3600 + self.minute * 60 + self.second
2266
+ self._hashcode = hash(timedelta(days, seconds, self.microsecond) - tzoff)
2267
+ return self._hashcode
2268
+
2269
+ # Pickle support.
2270
+
2271
+ def _getstate(self, protocol=3):
2272
+ yhi, ylo = divmod(self._year, 256)
2273
+ us2, us3 = divmod(self._microsecond, 256)
2274
+ us1, us2 = divmod(us2, 256)
2275
+ m = self._month
2276
+ if self._fold and protocol > 3:
2277
+ m += 128
2278
+ basestate = bytes([yhi, ylo, m, self._day,
2279
+ self._hour, self._minute, self._second,
2280
+ us1, us2, us3])
2281
+ if self._tzinfo is None:
2282
+ return (basestate,)
2283
+ else:
2284
+ return (basestate, self._tzinfo)
2285
+
2286
+ def __setstate(self, string, tzinfo):
2287
+ if tzinfo is not None and not isinstance(tzinfo, _tzinfo_class):
2288
+ raise TypeError("bad tzinfo state arg")
2289
+ (yhi, ylo, m, self._day, self._hour,
2290
+ self._minute, self._second, us1, us2, us3) = string
2291
+ if m > 127:
2292
+ self._fold = 1
2293
+ self._month = m - 128
2294
+ else:
2295
+ self._fold = 0
2296
+ self._month = m
2297
+ self._year = yhi * 256 + ylo
2298
+ self._microsecond = (((us1 << 8) | us2) << 8) | us3
2299
+ self._tzinfo = tzinfo
2300
+
2301
+ def __reduce_ex__(self, protocol):
2302
+ return (self.__class__, self._getstate(protocol))
2303
+
2304
+ def __reduce__(self):
2305
+ return self.__reduce_ex__(2)
2306
+
2307
+
2308
+ datetime.min = datetime(1, 1, 1)
2309
+ datetime.max = datetime(9999, 12, 31, 23, 59, 59, 999999)
2310
+ datetime.resolution = timedelta(microseconds=1)
2311
+
2312
+
2313
+ def _isoweek1monday(year):
2314
+ # Helper to calculate the day number of the Monday starting week 1
2315
+ THURSDAY = 3
2316
+ firstday = _ymd2ord(year, 1, 1)
2317
+ firstweekday = (firstday + 6) % 7 # See weekday() above
2318
+ week1monday = firstday - firstweekday
2319
+ if firstweekday > THURSDAY:
2320
+ week1monday += 7
2321
+ return week1monday
2322
+
2323
+
2324
+ class timezone(tzinfo):
2325
+ __slots__ = '_offset', '_name'
2326
+
2327
+ # Sentinel value to disallow None
2328
+ _Omitted = object()
2329
+ def __new__(cls, offset, name=_Omitted):
2330
+ if not isinstance(offset, timedelta):
2331
+ raise TypeError("offset must be a timedelta")
2332
+ if name is cls._Omitted:
2333
+ if not offset:
2334
+ return cls.utc
2335
+ name = None
2336
+ elif not isinstance(name, str):
2337
+ raise TypeError("name must be a string")
2338
+ if not cls._minoffset <= offset <= cls._maxoffset:
2339
+ raise ValueError("offset must be a timedelta "
2340
+ "strictly between -timedelta(hours=24) and "
2341
+ "timedelta(hours=24).")
2342
+ return cls._create(offset, name)
2343
+
2344
+ @classmethod
2345
+ def _create(cls, offset, name=None):
2346
+ self = tzinfo.__new__(cls)
2347
+ self._offset = offset
2348
+ self._name = name
2349
+ return self
2350
+
2351
+ def __getinitargs__(self):
2352
+ """pickle support"""
2353
+ if self._name is None:
2354
+ return (self._offset,)
2355
+ return (self._offset, self._name)
2356
+
2357
+ def __eq__(self, other):
2358
+ if isinstance(other, timezone):
2359
+ return self._offset == other._offset
2360
+ return NotImplemented
2361
+
2362
+ def __hash__(self):
2363
+ return hash(self._offset)
2364
+
2365
+ def __repr__(self):
2366
+ """Convert to formal string, for repr().
2367
+
2368
+ >>> tz = timezone.utc
2369
+ >>> repr(tz)
2370
+ 'datetime.timezone.utc'
2371
+ >>> tz = timezone(timedelta(hours=-5), 'EST')
2372
+ >>> repr(tz)
2373
+ "datetime.timezone(datetime.timedelta(-1, 68400), 'EST')"
2374
+ """
2375
+ if self is self.utc:
2376
+ return 'datetime.timezone.utc'
2377
+ if self._name is None:
2378
+ return "%s.%s(%r)" % (_get_class_module(self),
2379
+ self.__class__.__qualname__,
2380
+ self._offset)
2381
+ return "%s.%s(%r, %r)" % (_get_class_module(self),
2382
+ self.__class__.__qualname__,
2383
+ self._offset, self._name)
2384
+
2385
+ def __str__(self):
2386
+ return self.tzname(None)
2387
+
2388
+ def utcoffset(self, dt):
2389
+ if isinstance(dt, datetime) or dt is None:
2390
+ return self._offset
2391
+ raise TypeError("utcoffset() argument must be a datetime instance"
2392
+ " or None")
2393
+
2394
+ def tzname(self, dt):
2395
+ if isinstance(dt, datetime) or dt is None:
2396
+ if self._name is None:
2397
+ return self._name_from_offset(self._offset)
2398
+ return self._name
2399
+ raise TypeError("tzname() argument must be a datetime instance"
2400
+ " or None")
2401
+
2402
+ def dst(self, dt):
2403
+ if isinstance(dt, datetime) or dt is None:
2404
+ return None
2405
+ raise TypeError("dst() argument must be a datetime instance"
2406
+ " or None")
2407
+
2408
+ def fromutc(self, dt):
2409
+ if isinstance(dt, datetime):
2410
+ if dt.tzinfo is not self:
2411
+ raise ValueError("fromutc: dt.tzinfo "
2412
+ "is not self")
2413
+ return dt + self._offset
2414
+ raise TypeError("fromutc() argument must be a datetime instance"
2415
+ " or None")
2416
+
2417
+ _maxoffset = timedelta(hours=24, microseconds=-1)
2418
+ _minoffset = -_maxoffset
2419
+
2420
+ @staticmethod
2421
+ def _name_from_offset(delta):
2422
+ if not delta:
2423
+ return 'UTC'
2424
+ if delta < timedelta(0):
2425
+ sign = '-'
2426
+ delta = -delta
2427
+ else:
2428
+ sign = '+'
2429
+ hours, rest = divmod(delta, timedelta(hours=1))
2430
+ minutes, rest = divmod(rest, timedelta(minutes=1))
2431
+ seconds = rest.seconds
2432
+ microseconds = rest.microseconds
2433
+ if microseconds:
2434
+ return (f'UTC{sign}{hours:02d}:{minutes:02d}:{seconds:02d}'
2435
+ f'.{microseconds:06d}')
2436
+ if seconds:
2437
+ return f'UTC{sign}{hours:02d}:{minutes:02d}:{seconds:02d}'
2438
+ return f'UTC{sign}{hours:02d}:{minutes:02d}'
2439
+
2440
+ UTC = timezone.utc = timezone._create(timedelta(0))
2441
+
2442
+ # bpo-37642: These attributes are rounded to the nearest minute for backwards
2443
+ # compatibility, even though the constructor will accept a wider range of
2444
+ # values. This may change in the future.
2445
+ timezone.min = timezone._create(-timedelta(hours=23, minutes=59))
2446
+ timezone.max = timezone._create(timedelta(hours=23, minutes=59))
2447
+ _EPOCH = datetime(1970, 1, 1, tzinfo=timezone.utc)
2448
+
2449
+ # Some time zone algebra. For a datetime x, let
2450
+ # x.n = x stripped of its timezone -- its naive time.
2451
+ # x.o = x.utcoffset(), and assuming that doesn't raise an exception or
2452
+ # return None
2453
+ # x.d = x.dst(), and assuming that doesn't raise an exception or
2454
+ # return None
2455
+ # x.s = x's standard offset, x.o - x.d
2456
+ #
2457
+ # Now some derived rules, where k is a duration (timedelta).
2458
+ #
2459
+ # 1. x.o = x.s + x.d
2460
+ # This follows from the definition of x.s.
2461
+ #
2462
+ # 2. If x and y have the same tzinfo member, x.s = y.s.
2463
+ # This is actually a requirement, an assumption we need to make about
2464
+ # sane tzinfo classes.
2465
+ #
2466
+ # 3. The naive UTC time corresponding to x is x.n - x.o.
2467
+ # This is again a requirement for a sane tzinfo class.
2468
+ #
2469
+ # 4. (x+k).s = x.s
2470
+ # This follows from #2, and that datetime.timetz+timedelta preserves tzinfo.
2471
+ #
2472
+ # 5. (x+k).n = x.n + k
2473
+ # Again follows from how arithmetic is defined.
2474
+ #
2475
+ # Now we can explain tz.fromutc(x). Let's assume it's an interesting case
2476
+ # (meaning that the various tzinfo methods exist, and don't blow up or return
2477
+ # None when called).
2478
+ #
2479
+ # The function wants to return a datetime y with timezone tz, equivalent to x.
2480
+ # x is already in UTC.
2481
+ #
2482
+ # By #3, we want
2483
+ #
2484
+ # y.n - y.o = x.n [1]
2485
+ #
2486
+ # The algorithm starts by attaching tz to x.n, and calling that y. So
2487
+ # x.n = y.n at the start. Then it wants to add a duration k to y, so that [1]
2488
+ # becomes true; in effect, we want to solve [2] for k:
2489
+ #
2490
+ # (y+k).n - (y+k).o = x.n [2]
2491
+ #
2492
+ # By #1, this is the same as
2493
+ #
2494
+ # (y+k).n - ((y+k).s + (y+k).d) = x.n [3]
2495
+ #
2496
+ # By #5, (y+k).n = y.n + k, which equals x.n + k because x.n=y.n at the start.
2497
+ # Substituting that into [3],
2498
+ #
2499
+ # x.n + k - (y+k).s - (y+k).d = x.n; the x.n terms cancel, leaving
2500
+ # k - (y+k).s - (y+k).d = 0; rearranging,
2501
+ # k = (y+k).s - (y+k).d; by #4, (y+k).s == y.s, so
2502
+ # k = y.s - (y+k).d
2503
+ #
2504
+ # On the RHS, (y+k).d can't be computed directly, but y.s can be, and we
2505
+ # approximate k by ignoring the (y+k).d term at first. Note that k can't be
2506
+ # very large, since all offset-returning methods return a duration of magnitude
2507
+ # less than 24 hours. For that reason, if y is firmly in std time, (y+k).d must
2508
+ # be 0, so ignoring it has no consequence then.
2509
+ #
2510
+ # In any case, the new value is
2511
+ #
2512
+ # z = y + y.s [4]
2513
+ #
2514
+ # It's helpful to step back at look at [4] from a higher level: it's simply
2515
+ # mapping from UTC to tz's standard time.
2516
+ #
2517
+ # At this point, if
2518
+ #
2519
+ # z.n - z.o = x.n [5]
2520
+ #
2521
+ # we have an equivalent time, and are almost done. The insecurity here is
2522
+ # at the start of daylight time. Picture US Eastern for concreteness. The wall
2523
+ # time jumps from 1:59 to 3:00, and wall hours of the form 2:MM don't make good
2524
+ # sense then. The docs ask that an Eastern tzinfo class consider such a time to
2525
+ # be EDT (because it's "after 2"), which is a redundant spelling of 1:MM EST
2526
+ # on the day DST starts. We want to return the 1:MM EST spelling because that's
2527
+ # the only spelling that makes sense on the local wall clock.
2528
+ #
2529
+ # In fact, if [5] holds at this point, we do have the standard-time spelling,
2530
+ # but that takes a bit of proof. We first prove a stronger result. What's the
2531
+ # difference between the LHS and RHS of [5]? Let
2532
+ #
2533
+ # diff = x.n - (z.n - z.o) [6]
2534
+ #
2535
+ # Now
2536
+ # z.n = by [4]
2537
+ # (y + y.s).n = by #5
2538
+ # y.n + y.s = since y.n = x.n
2539
+ # x.n + y.s = since z and y are have the same tzinfo member,
2540
+ # y.s = z.s by #2
2541
+ # x.n + z.s
2542
+ #
2543
+ # Plugging that back into [6] gives
2544
+ #
2545
+ # diff =
2546
+ # x.n - ((x.n + z.s) - z.o) = expanding
2547
+ # x.n - x.n - z.s + z.o = cancelling
2548
+ # - z.s + z.o = by #2
2549
+ # z.d
2550
+ #
2551
+ # So diff = z.d.
2552
+ #
2553
+ # If [5] is true now, diff = 0, so z.d = 0 too, and we have the standard-time
2554
+ # spelling we wanted in the endcase described above. We're done. Contrarily,
2555
+ # if z.d = 0, then we have a UTC equivalent, and are also done.
2556
+ #
2557
+ # If [5] is not true now, diff = z.d != 0, and z.d is the offset we need to
2558
+ # add to z (in effect, z is in tz's standard time, and we need to shift the
2559
+ # local clock into tz's daylight time).
2560
+ #
2561
+ # Let
2562
+ #
2563
+ # z' = z + z.d = z + diff [7]
2564
+ #
2565
+ # and we can again ask whether
2566
+ #
2567
+ # z'.n - z'.o = x.n [8]
2568
+ #
2569
+ # If so, we're done. If not, the tzinfo class is insane, according to the
2570
+ # assumptions we've made. This also requires a bit of proof. As before, let's
2571
+ # compute the difference between the LHS and RHS of [8] (and skipping some of
2572
+ # the justifications for the kinds of substitutions we've done several times
2573
+ # already):
2574
+ #
2575
+ # diff' = x.n - (z'.n - z'.o) = replacing z'.n via [7]
2576
+ # x.n - (z.n + diff - z'.o) = replacing diff via [6]
2577
+ # x.n - (z.n + x.n - (z.n - z.o) - z'.o) =
2578
+ # x.n - z.n - x.n + z.n - z.o + z'.o = cancel x.n
2579
+ # - z.n + z.n - z.o + z'.o = cancel z.n
2580
+ # - z.o + z'.o = #1 twice
2581
+ # -z.s - z.d + z'.s + z'.d = z and z' have same tzinfo
2582
+ # z'.d - z.d
2583
+ #
2584
+ # So z' is UTC-equivalent to x iff z'.d = z.d at this point. If they are equal,
2585
+ # we've found the UTC-equivalent so are done. In fact, we stop with [7] and
2586
+ # return z', not bothering to compute z'.d.
2587
+ #
2588
+ # How could z.d and z'd differ? z' = z + z.d [7], so merely moving z' by
2589
+ # a dst() offset, and starting *from* a time already in DST (we know z.d != 0),
2590
+ # would have to change the result dst() returns: we start in DST, and moving
2591
+ # a little further into it takes us out of DST.
2592
+ #
2593
+ # There isn't a sane case where this can happen. The closest it gets is at
2594
+ # the end of DST, where there's an hour in UTC with no spelling in a hybrid
2595
+ # tzinfo class. In US Eastern, that's 5:MM UTC = 0:MM EST = 1:MM EDT. During
2596
+ # that hour, on an Eastern clock 1:MM is taken as being in standard time (6:MM
2597
+ # UTC) because the docs insist on that, but 0:MM is taken as being in daylight
2598
+ # time (4:MM UTC). There is no local time mapping to 5:MM UTC. The local
2599
+ # clock jumps from 1:59 back to 1:00 again, and repeats the 1:MM hour in
2600
+ # standard time. Since that's what the local clock *does*, we want to map both
2601
+ # UTC hours 5:MM and 6:MM to 1:MM Eastern. The result is ambiguous
2602
+ # in local time, but so it goes -- it's the way the local clock works.
2603
+ #
2604
+ # When x = 5:MM UTC is the input to this algorithm, x.o=0, y.o=-5 and y.d=0,
2605
+ # so z=0:MM. z.d=60 (minutes) then, so [5] doesn't hold and we keep going.
2606
+ # z' = z + z.d = 1:MM then, and z'.d=0, and z'.d - z.d = -60 != 0 so [8]
2607
+ # (correctly) concludes that z' is not UTC-equivalent to x.
2608
+ #
2609
+ # Because we know z.d said z was in daylight time (else [5] would have held and
2610
+ # we would have stopped then), and we know z.d != z'.d (else [8] would have held
2611
+ # and we have stopped then), and there are only 2 possible values dst() can
2612
+ # return in Eastern, it follows that z'.d must be 0 (which it is in the example,
2613
+ # but the reasoning doesn't depend on the example -- it depends on there being
2614
+ # two possible dst() outcomes, one zero and the other non-zero). Therefore
2615
+ # z' must be in standard time, and is the spelling we want in this case.
2616
+ #
2617
+ # Note again that z' is not UTC-equivalent as far as the hybrid tzinfo class is
2618
+ # concerned (because it takes z' as being in standard time rather than the
2619
+ # daylight time we intend here), but returning it gives the real-life "local
2620
+ # clock repeats an hour" behavior when mapping the "unspellable" UTC hour into
2621
+ # tz.
2622
+ #
2623
+ # When the input is 6:MM, z=1:MM and z.d=0, and we stop at once, again with
2624
+ # the 1:MM standard time spelling we want.
2625
+ #
2626
+ # So how can this break? One of the assumptions must be violated. Two
2627
+ # possibilities:
2628
+ #
2629
+ # 1) [2] effectively says that y.s is invariant across all y belong to a given
2630
+ # time zone. This isn't true if, for political reasons or continental drift,
2631
+ # a region decides to change its base offset from UTC.
2632
+ #
2633
+ # 2) There may be versions of "double daylight" time where the tail end of
2634
+ # the analysis gives up a step too early. I haven't thought about that
2635
+ # enough to say.
2636
+ #
2637
+ # In any case, it's clear that the default fromutc() is strong enough to handle
2638
+ # "almost all" time zones: so long as the standard offset is invariant, it
2639
+ # doesn't matter if daylight time transition points change from year to year, or
2640
+ # if daylight time is skipped in some years; it doesn't matter how large or
2641
+ # small dst() may get within its bounds; and it doesn't even matter if some
2642
+ # perverse time zone returns a negative dst()). So a breaking case must be
2643
+ # pretty bizarre, and a tzinfo subclass can override fromutc() if it is.