pytron-kit 0.3.12__py3-none-macosx_11_0_universal2.whl

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 (419) hide show
  1. pytron/__init__.py +112 -0
  2. pytron/application.py +562 -0
  3. pytron/apputils/__init__.py +0 -0
  4. pytron/apputils/chrome_ipc.py +203 -0
  5. pytron/apputils/codegen.py +261 -0
  6. pytron/apputils/config.py +303 -0
  7. pytron/apputils/deadmansswitch.py +47 -0
  8. pytron/apputils/extras.py +76 -0
  9. pytron/apputils/native.py +148 -0
  10. pytron/apputils/shell.py +73 -0
  11. pytron/apputils/windows.py +286 -0
  12. pytron/cli.py +384 -0
  13. pytron/commands/__init__.py +0 -0
  14. pytron/commands/android.py +28 -0
  15. pytron/commands/build.py +26 -0
  16. pytron/commands/doctor.py +221 -0
  17. pytron/commands/engine.py +23 -0
  18. pytron/commands/frontend.py +60 -0
  19. pytron/commands/harvest.py +112 -0
  20. pytron/commands/helpers.py +239 -0
  21. pytron/commands/info.py +50 -0
  22. pytron/commands/init.py +521 -0
  23. pytron/commands/install.py +294 -0
  24. pytron/commands/login.py +130 -0
  25. pytron/commands/package.py +228 -0
  26. pytron/commands/plugin.py +442 -0
  27. pytron/commands/run.py +312 -0
  28. pytron/commands/scan.py +210 -0
  29. pytron/commands/show.py +23 -0
  30. pytron/commands/uninstall.py +150 -0
  31. pytron/commands/utils.py +42 -0
  32. pytron/commands/workflow.py +95 -0
  33. pytron/console.py +133 -0
  34. pytron/core.py +18 -0
  35. pytron/dependencies/WebView2Loader.dll +0 -0
  36. pytron/dependencies/__init__.py +1 -0
  37. pytron/dependencies/pytron_native.so +0 -0
  38. pytron/engines/chrome/adapter.py +445 -0
  39. pytron/engines/chrome/engine.py +576 -0
  40. pytron/engines/chrome/forge.py +147 -0
  41. pytron/engines/chrome/shell/package.json +8 -0
  42. pytron/engines/chrome/shell/preload.js +12 -0
  43. pytron/engines/chrome/shell/shell.js +534 -0
  44. pytron/exceptions.py +36 -0
  45. pytron/inspector.py +201 -0
  46. pytron/inspector_ui.py +512 -0
  47. pytron/installer/Installation.nsi +236 -0
  48. pytron/installer/header.bmp +0 -0
  49. pytron/installer/pytron.ico +0 -0
  50. pytron/installer/sidebar.bmp +0 -0
  51. pytron/llms.md +98 -0
  52. pytron/manifests/README.md +29 -0
  53. pytron/manifests/windows-utf8.manifest +44 -0
  54. pytron/menu.py +128 -0
  55. pytron/nsis-setup.exe +0 -0
  56. pytron/pack/__init__.py +0 -0
  57. pytron/pack/assets.py +131 -0
  58. pytron/pack/compilers.py +289 -0
  59. pytron/pack/crystal.py +297 -0
  60. pytron/pack/graph.py +377 -0
  61. pytron/pack/inference.py +157 -0
  62. pytron/pack/installers.py +402 -0
  63. pytron/pack/introspect.py +357 -0
  64. pytron/pack/metadata.py +213 -0
  65. pytron/pack/modules.py +618 -0
  66. pytron/pack/nuitka.py +108 -0
  67. pytron/pack/pipeline.py +107 -0
  68. pytron/pack/pyinstaller.py +176 -0
  69. pytron/pack/rust_engine.py +273 -0
  70. pytron/pack/secure.py +309 -0
  71. pytron/pack/secure_loader/bin/pytron_rust_bootloader +0 -0
  72. pytron/pack/secure_loader/icon.ico +0 -0
  73. pytron/pack/utils.py +110 -0
  74. pytron/pack/virtual_root.py +124 -0
  75. pytron/platforms/__init__.py +0 -0
  76. pytron/platforms/android/__init__.py +3 -0
  77. pytron/platforms/android/android.py +103 -0
  78. pytron/platforms/android/builder.py +736 -0
  79. pytron/platforms/android/ops/build.py +79 -0
  80. pytron/platforms/android/ops/init.py +63 -0
  81. pytron/platforms/android/ops/run.py +79 -0
  82. pytron/platforms/android/ops/sync.py +770 -0
  83. pytron/platforms/android/ops/utils.py +8 -0
  84. pytron/platforms/android/shell/README.md +30 -0
  85. pytron/platforms/android/shell/app/build.gradle +64 -0
  86. pytron/platforms/android/shell/app/src/main/AndroidManifest.xml +29 -0
  87. pytron/platforms/android/shell/app/src/main/assets/python/main.py +86 -0
  88. pytron/platforms/android/shell/app/src/main/assets/python/python314.zip +0 -0
  89. pytron/platforms/android/shell/app/src/main/cpp/CMakeLists.txt +25 -0
  90. pytron/platforms/android/shell/app/src/main/cpp/include/Python.h +155 -0
  91. pytron/platforms/android/shell/app/src/main/cpp/include/abstract.h +915 -0
  92. pytron/platforms/android/shell/app/src/main/cpp/include/audit.h +30 -0
  93. pytron/platforms/android/shell/app/src/main/cpp/include/bltinmodule.h +14 -0
  94. pytron/platforms/android/shell/app/src/main/cpp/include/boolobject.h +54 -0
  95. pytron/platforms/android/shell/app/src/main/cpp/include/bytearrayobject.h +44 -0
  96. pytron/platforms/android/shell/app/src/main/cpp/include/bytesobject.h +66 -0
  97. pytron/platforms/android/shell/app/src/main/cpp/include/ceval.h +145 -0
  98. pytron/platforms/android/shell/app/src/main/cpp/include/codecs.h +176 -0
  99. pytron/platforms/android/shell/app/src/main/cpp/include/compile.h +22 -0
  100. pytron/platforms/android/shell/app/src/main/cpp/include/complexobject.h +30 -0
  101. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/abstract.h +104 -0
  102. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/audit.h +8 -0
  103. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytearrayobject.h +38 -0
  104. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytesobject.h +42 -0
  105. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/cellobject.h +50 -0
  106. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/ceval.h +43 -0
  107. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/classobject.h +71 -0
  108. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/code.h +340 -0
  109. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/compile.h +50 -0
  110. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/complexobject.h +33 -0
  111. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/context.h +107 -0
  112. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/critical_section.h +154 -0
  113. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/descrobject.h +62 -0
  114. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/dictobject.h +105 -0
  115. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileobject.h +16 -0
  116. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileutils.h +16 -0
  117. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/floatobject.h +27 -0
  118. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/frameobject.h +35 -0
  119. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/funcobject.h +185 -0
  120. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/genobject.h +56 -0
  121. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/import.h +30 -0
  122. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/initconfig.h +334 -0
  123. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/listobject.h +53 -0
  124. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/lock.h +74 -0
  125. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longintrepr.h +184 -0
  126. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longobject.h +89 -0
  127. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/memoryobject.h +50 -0
  128. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/methodobject.h +66 -0
  129. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/modsupport.h +26 -0
  130. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/monitoring.h +269 -0
  131. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/object.h +493 -0
  132. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/objimpl.h +104 -0
  133. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/odictobject.h +43 -0
  134. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/picklebufobject.h +31 -0
  135. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pthread_stubs.h +105 -0
  136. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic.h +614 -0
  137. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_gcc.h +615 -0
  138. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_msc.h +1197 -0
  139. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_std.h +1112 -0
  140. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyctype.h +39 -0
  141. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pydebug.h +38 -0
  142. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyerrors.h +132 -0
  143. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyfpe.h +15 -0
  144. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyframe.h +45 -0
  145. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyhash.h +54 -0
  146. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pylifecycle.h +89 -0
  147. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pymem.h +84 -0
  148. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystate.h +275 -0
  149. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystats.h +194 -0
  150. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythonrun.h +96 -0
  151. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythread.h +43 -0
  152. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pytime.h +27 -0
  153. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/setobject.h +71 -0
  154. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/traceback.h +13 -0
  155. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tracemalloc.h +32 -0
  156. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tupleobject.h +40 -0
  157. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/unicodeobject.h +773 -0
  158. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/warnings.h +20 -0
  159. pytron/platforms/android/shell/app/src/main/cpp/include/cpython/weakrefobject.h +66 -0
  160. pytron/platforms/android/shell/app/src/main/cpp/include/critical_section.h +16 -0
  161. pytron/platforms/android/shell/app/src/main/cpp/include/datetime.h +267 -0
  162. pytron/platforms/android/shell/app/src/main/cpp/include/descrobject.h +100 -0
  163. pytron/platforms/android/shell/app/src/main/cpp/include/dictobject.h +108 -0
  164. pytron/platforms/android/shell/app/src/main/cpp/include/dynamic_annotations.h +499 -0
  165. pytron/platforms/android/shell/app/src/main/cpp/include/enumobject.h +17 -0
  166. pytron/platforms/android/shell/app/src/main/cpp/include/errcode.h +45 -0
  167. pytron/platforms/android/shell/app/src/main/cpp/include/exports.h +105 -0
  168. pytron/platforms/android/shell/app/src/main/cpp/include/fileobject.h +41 -0
  169. pytron/platforms/android/shell/app/src/main/cpp/include/fileutils.h +62 -0
  170. pytron/platforms/android/shell/app/src/main/cpp/include/floatobject.h +54 -0
  171. pytron/platforms/android/shell/app/src/main/cpp/include/frameobject.h +20 -0
  172. pytron/platforms/android/shell/app/src/main/cpp/include/genericaliasobject.h +14 -0
  173. pytron/platforms/android/shell/app/src/main/cpp/include/import.h +103 -0
  174. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/atomic.h +392 -0
  175. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/internal.h +969 -0
  176. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/prim.h +329 -0
  177. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/track.h +147 -0
  178. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/types.h +721 -0
  179. pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc.h +565 -0
  180. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_abstract.h +61 -0
  181. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_asdl.h +112 -0
  182. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast.h +945 -0
  183. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast_state.h +271 -0
  184. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_atexit.h +31 -0
  185. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_audit.h +35 -0
  186. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_backoff.h +133 -0
  187. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bitutils.h +186 -0
  188. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_blocks_output_buffer.h +321 -0
  189. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_brc.h +73 -0
  190. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytes_methods.h +82 -0
  191. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytesobject.h +149 -0
  192. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_c_array.h +39 -0
  193. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_call.h +206 -0
  194. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_capsule.h +17 -0
  195. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_cell.h +75 -0
  196. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval.h +390 -0
  197. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval_state.h +48 -0
  198. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_code.h +671 -0
  199. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_codecs.h +76 -0
  200. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_compile.h +230 -0
  201. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_complexobject.h +34 -0
  202. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_condvar.h +93 -0
  203. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_context.h +59 -0
  204. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_critical_section.h +237 -0
  205. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp.h +406 -0
  206. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp_data_registry.h +41 -0
  207. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_debug_offsets.h +379 -0
  208. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_descrobject.h +28 -0
  209. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict.h +410 -0
  210. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict_state.h +28 -0
  211. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dtoa.h +40 -0
  212. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_signal.h +30 -0
  213. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_trampoline.h +70 -0
  214. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_exceptions.h +40 -0
  215. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_faulthandler.h +100 -0
  216. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils.h +320 -0
  217. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils_windows.h +98 -0
  218. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_floatobject.h +49 -0
  219. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_flowgraph.h +47 -0
  220. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_format.h +27 -0
  221. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_frame.h +61 -0
  222. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist.h +111 -0
  223. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist_state.h +70 -0
  224. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_function.h +53 -0
  225. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gc.h +378 -0
  226. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_genobject.h +43 -0
  227. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_getopt.h +22 -0
  228. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gil.h +66 -0
  229. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects.h +34 -0
  230. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects_fini_generated.h +1592 -0
  231. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_strings.h +854 -0
  232. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hamt.h +113 -0
  233. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hashtable.h +150 -0
  234. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_import.h +141 -0
  235. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_importdl.h +139 -0
  236. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_index_pool.h +36 -0
  237. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_initconfig.h +197 -0
  238. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruction_sequence.h +83 -0
  239. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruments.h +127 -0
  240. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp.h +109 -0
  241. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp_structs.h +977 -0
  242. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe.h +401 -0
  243. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe_structs.h +95 -0
  244. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpolation.h +26 -0
  245. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_intrinsics.h +51 -0
  246. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_jit.h +29 -0
  247. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_list.h +81 -0
  248. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_llist.h +106 -0
  249. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_lock.h +236 -0
  250. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_long.h +319 -0
  251. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_magic_number.h +305 -0
  252. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_memoryobject.h +20 -0
  253. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_mimalloc.h +69 -0
  254. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_modsupport.h +99 -0
  255. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_moduleobject.h +62 -0
  256. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_namespace.h +21 -0
  257. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object.h +1029 -0
  258. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_alloc.h +71 -0
  259. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_deferred.h +32 -0
  260. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_stack.h +95 -0
  261. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_state.h +49 -0
  262. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc.h +702 -0
  263. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc_init.h +66 -0
  264. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_metadata.h +2117 -0
  265. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_utils.h +90 -0
  266. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_optimizer.h +318 -0
  267. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parking_lot.h +97 -0
  268. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parser.h +78 -0
  269. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pathconfig.h +26 -0
  270. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyarena.h +68 -0
  271. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyatomic_ft_wrappers.h +174 -0
  272. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pybuffer.h +21 -0
  273. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyerrors.h +213 -0
  274. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyhash.h +91 -0
  275. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pylifecycle.h +136 -0
  276. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymath.h +205 -0
  277. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem.h +145 -0
  278. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem_init.h +103 -0
  279. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystate.h +339 -0
  280. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystats.h +21 -0
  281. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythonrun.h +68 -0
  282. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythread.h +172 -0
  283. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_qsbr.h +172 -0
  284. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_range.h +21 -0
  285. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime.h +63 -0
  286. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init.h +239 -0
  287. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init_generated.h +1589 -0
  288. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_structs.h +310 -0
  289. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_semaphore.h +67 -0
  290. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_setobject.h +41 -0
  291. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_signal.h +108 -0
  292. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sliceobject.h +20 -0
  293. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stackref.h +791 -0
  294. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stats.h +97 -0
  295. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_strhex.h +39 -0
  296. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structs.h +88 -0
  297. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structseq.h +40 -0
  298. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_symtable.h +201 -0
  299. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sysmodule.h +32 -0
  300. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_template.h +26 -0
  301. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_time.h +334 -0
  302. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_token.h +110 -0
  303. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_traceback.h +111 -0
  304. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tracemalloc.h +164 -0
  305. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tstate.h +88 -0
  306. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tuple.h +75 -0
  307. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typedefs.h +18 -0
  308. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typeobject.h +155 -0
  309. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typevarobject.h +28 -0
  310. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ucnhash.h +36 -0
  311. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject.h +308 -0
  312. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject_generated.h +3132 -0
  313. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unionobject.h +26 -0
  314. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uniqueid.h +57 -0
  315. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_ids.h +335 -0
  316. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_metadata.h +1204 -0
  317. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_warnings.h +21 -0
  318. pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_weakref.h +133 -0
  319. pytron/platforms/android/shell/app/src/main/cpp/include/intrcheck.h +23 -0
  320. pytron/platforms/android/shell/app/src/main/cpp/include/iterobject.h +24 -0
  321. pytron/platforms/android/shell/app/src/main/cpp/include/listobject.h +55 -0
  322. pytron/platforms/android/shell/app/src/main/cpp/include/lock.h +16 -0
  323. pytron/platforms/android/shell/app/src/main/cpp/include/longobject.h +178 -0
  324. pytron/platforms/android/shell/app/src/main/cpp/include/marshal.h +31 -0
  325. pytron/platforms/android/shell/app/src/main/cpp/include/memoryobject.h +34 -0
  326. pytron/platforms/android/shell/app/src/main/cpp/include/methodobject.h +146 -0
  327. pytron/platforms/android/shell/app/src/main/cpp/include/modsupport.h +146 -0
  328. pytron/platforms/android/shell/app/src/main/cpp/include/moduleobject.h +122 -0
  329. pytron/platforms/android/shell/app/src/main/cpp/include/monitoring.h +18 -0
  330. pytron/platforms/android/shell/app/src/main/cpp/include/object.h +828 -0
  331. pytron/platforms/android/shell/app/src/main/cpp/include/objimpl.h +211 -0
  332. pytron/platforms/android/shell/app/src/main/cpp/include/opcode.h +43 -0
  333. pytron/platforms/android/shell/app/src/main/cpp/include/opcode_ids.h +259 -0
  334. pytron/platforms/android/shell/app/src/main/cpp/include/osdefs.h +57 -0
  335. pytron/platforms/android/shell/app/src/main/cpp/include/osmodule.h +17 -0
  336. pytron/platforms/android/shell/app/src/main/cpp/include/patchlevel.h +49 -0
  337. pytron/platforms/android/shell/app/src/main/cpp/include/py_curses.h +117 -0
  338. pytron/platforms/android/shell/app/src/main/cpp/include/pyatomic.h +16 -0
  339. pytron/platforms/android/shell/app/src/main/cpp/include/pybuffer.h +145 -0
  340. pytron/platforms/android/shell/app/src/main/cpp/include/pycapsule.h +58 -0
  341. pytron/platforms/android/shell/app/src/main/cpp/include/pyconfig.h +2088 -0
  342. pytron/platforms/android/shell/app/src/main/cpp/include/pydtrace.h +59 -0
  343. pytron/platforms/android/shell/app/src/main/cpp/include/pyerrors.h +335 -0
  344. pytron/platforms/android/shell/app/src/main/cpp/include/pyexpat.h +62 -0
  345. pytron/platforms/android/shell/app/src/main/cpp/include/pyframe.h +26 -0
  346. pytron/platforms/android/shell/app/src/main/cpp/include/pyhash.h +59 -0
  347. pytron/platforms/android/shell/app/src/main/cpp/include/pylifecycle.h +80 -0
  348. pytron/platforms/android/shell/app/src/main/cpp/include/pymacconfig.h +91 -0
  349. pytron/platforms/android/shell/app/src/main/cpp/include/pymacro.h +243 -0
  350. pytron/platforms/android/shell/app/src/main/cpp/include/pymath.h +65 -0
  351. pytron/platforms/android/shell/app/src/main/cpp/include/pymem.h +110 -0
  352. pytron/platforms/android/shell/app/src/main/cpp/include/pyport.h +710 -0
  353. pytron/platforms/android/shell/app/src/main/cpp/include/pystate.h +132 -0
  354. pytron/platforms/android/shell/app/src/main/cpp/include/pystats.h +28 -0
  355. pytron/platforms/android/shell/app/src/main/cpp/include/pystrcmp.h +23 -0
  356. pytron/platforms/android/shell/app/src/main/cpp/include/pystrtod.h +37 -0
  357. pytron/platforms/android/shell/app/src/main/cpp/include/pythonrun.h +42 -0
  358. pytron/platforms/android/shell/app/src/main/cpp/include/pythread.h +131 -0
  359. pytron/platforms/android/shell/app/src/main/cpp/include/pytypedefs.h +30 -0
  360. pytron/platforms/android/shell/app/src/main/cpp/include/rangeobject.h +27 -0
  361. pytron/platforms/android/shell/app/src/main/cpp/include/refcount.h +555 -0
  362. pytron/platforms/android/shell/app/src/main/cpp/include/setobject.h +49 -0
  363. pytron/platforms/android/shell/app/src/main/cpp/include/sliceobject.h +69 -0
  364. pytron/platforms/android/shell/app/src/main/cpp/include/structmember.h +56 -0
  365. pytron/platforms/android/shell/app/src/main/cpp/include/structseq.h +46 -0
  366. pytron/platforms/android/shell/app/src/main/cpp/include/sysmodule.h +27 -0
  367. pytron/platforms/android/shell/app/src/main/cpp/include/traceback.h +26 -0
  368. pytron/platforms/android/shell/app/src/main/cpp/include/tupleobject.h +46 -0
  369. pytron/platforms/android/shell/app/src/main/cpp/include/typeslots.h +96 -0
  370. pytron/platforms/android/shell/app/src/main/cpp/include/unicodeobject.h +1029 -0
  371. pytron/platforms/android/shell/app/src/main/cpp/include/warnings.h +45 -0
  372. pytron/platforms/android/shell/app/src/main/cpp/include/weakrefobject.h +46 -0
  373. pytron/platforms/android/shell/app/src/main/cpp/pytron_bridge.cpp +224 -0
  374. pytron/platforms/android/shell/app/src/main/java/com/pytron/shell/MainActivity.kt +208 -0
  375. pytron/platforms/android/shell/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  376. pytron/platforms/android/shell/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  377. pytron/platforms/android/shell/build.gradle +11 -0
  378. pytron/platforms/android/shell/gradle/wrapper/gradle-wrapper.jar +0 -0
  379. pytron/platforms/android/shell/gradle/wrapper/gradle-wrapper.properties +5 -0
  380. pytron/platforms/android/shell/gradle.properties +2 -0
  381. pytron/platforms/android/shell/gradlew.bat +85 -0
  382. pytron/platforms/android/shell/settings.gradle +16 -0
  383. pytron/platforms/darwin.py +82 -0
  384. pytron/platforms/darwin_ops/libs.py +31 -0
  385. pytron/platforms/darwin_ops/system.py +182 -0
  386. pytron/platforms/darwin_ops/utils.py +85 -0
  387. pytron/platforms/darwin_ops/webview.py +5 -0
  388. pytron/platforms/darwin_ops/window.py +102 -0
  389. pytron/platforms/interface.py +152 -0
  390. pytron/platforms/linux.py +82 -0
  391. pytron/platforms/linux_ops/libs.py +49 -0
  392. pytron/platforms/linux_ops/system.py +316 -0
  393. pytron/platforms/linux_ops/utils.py +19 -0
  394. pytron/platforms/linux_ops/webview.py +5 -0
  395. pytron/platforms/linux_ops/window.py +115 -0
  396. pytron/platforms/windows.py +136 -0
  397. pytron/platforms/windows_ops/__init__.py +0 -0
  398. pytron/platforms/windows_ops/constants.py +126 -0
  399. pytron/platforms/windows_ops/system.py +518 -0
  400. pytron/platforms/windows_ops/utils.py +3 -0
  401. pytron/platforms/windows_ops/webview.py +5 -0
  402. pytron/platforms/windows_ops/window.py +361 -0
  403. pytron/plugin.py +467 -0
  404. pytron/rcedit-x64.exe +0 -0
  405. pytron/router.py +146 -0
  406. pytron/serializer.py +240 -0
  407. pytron/shortcuts.py +279 -0
  408. pytron/state.py +76 -0
  409. pytron/tray.py +399 -0
  410. pytron/updater.py +181 -0
  411. pytron/utf8_hook.py +112 -0
  412. pytron/utils.py +44 -0
  413. pytron/webview.py +722 -0
  414. pytron_kit-0.3.12.dist-info/METADATA +131 -0
  415. pytron_kit-0.3.12.dist-info/RECORD +419 -0
  416. pytron_kit-0.3.12.dist-info/WHEEL +5 -0
  417. pytron_kit-0.3.12.dist-info/entry_points.txt +2 -0
  418. pytron_kit-0.3.12.dist-info/licenses/LICENSE +201 -0
  419. pytron_kit-0.3.12.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1589 @@
1
+ #ifndef Py_INTERNAL_RUNTIME_INIT_GENERATED_H
2
+ #define Py_INTERNAL_RUNTIME_INIT_GENERATED_H
3
+ #ifdef __cplusplus
4
+ extern "C" {
5
+ #endif
6
+
7
+ #ifndef Py_BUILD_CORE
8
+ # error "this header requires Py_BUILD_CORE define"
9
+ #endif
10
+
11
+ #include "pycore_long.h" // _PyLong_DIGIT_INIT()
12
+
13
+
14
+ /* The following is auto-generated by Tools/build/generate_global_objects.py. */
15
+ #define _Py_small_ints_INIT { \
16
+ _PyLong_DIGIT_INIT(-5), \
17
+ _PyLong_DIGIT_INIT(-4), \
18
+ _PyLong_DIGIT_INIT(-3), \
19
+ _PyLong_DIGIT_INIT(-2), \
20
+ _PyLong_DIGIT_INIT(-1), \
21
+ _PyLong_DIGIT_INIT(0), \
22
+ _PyLong_DIGIT_INIT(1), \
23
+ _PyLong_DIGIT_INIT(2), \
24
+ _PyLong_DIGIT_INIT(3), \
25
+ _PyLong_DIGIT_INIT(4), \
26
+ _PyLong_DIGIT_INIT(5), \
27
+ _PyLong_DIGIT_INIT(6), \
28
+ _PyLong_DIGIT_INIT(7), \
29
+ _PyLong_DIGIT_INIT(8), \
30
+ _PyLong_DIGIT_INIT(9), \
31
+ _PyLong_DIGIT_INIT(10), \
32
+ _PyLong_DIGIT_INIT(11), \
33
+ _PyLong_DIGIT_INIT(12), \
34
+ _PyLong_DIGIT_INIT(13), \
35
+ _PyLong_DIGIT_INIT(14), \
36
+ _PyLong_DIGIT_INIT(15), \
37
+ _PyLong_DIGIT_INIT(16), \
38
+ _PyLong_DIGIT_INIT(17), \
39
+ _PyLong_DIGIT_INIT(18), \
40
+ _PyLong_DIGIT_INIT(19), \
41
+ _PyLong_DIGIT_INIT(20), \
42
+ _PyLong_DIGIT_INIT(21), \
43
+ _PyLong_DIGIT_INIT(22), \
44
+ _PyLong_DIGIT_INIT(23), \
45
+ _PyLong_DIGIT_INIT(24), \
46
+ _PyLong_DIGIT_INIT(25), \
47
+ _PyLong_DIGIT_INIT(26), \
48
+ _PyLong_DIGIT_INIT(27), \
49
+ _PyLong_DIGIT_INIT(28), \
50
+ _PyLong_DIGIT_INIT(29), \
51
+ _PyLong_DIGIT_INIT(30), \
52
+ _PyLong_DIGIT_INIT(31), \
53
+ _PyLong_DIGIT_INIT(32), \
54
+ _PyLong_DIGIT_INIT(33), \
55
+ _PyLong_DIGIT_INIT(34), \
56
+ _PyLong_DIGIT_INIT(35), \
57
+ _PyLong_DIGIT_INIT(36), \
58
+ _PyLong_DIGIT_INIT(37), \
59
+ _PyLong_DIGIT_INIT(38), \
60
+ _PyLong_DIGIT_INIT(39), \
61
+ _PyLong_DIGIT_INIT(40), \
62
+ _PyLong_DIGIT_INIT(41), \
63
+ _PyLong_DIGIT_INIT(42), \
64
+ _PyLong_DIGIT_INIT(43), \
65
+ _PyLong_DIGIT_INIT(44), \
66
+ _PyLong_DIGIT_INIT(45), \
67
+ _PyLong_DIGIT_INIT(46), \
68
+ _PyLong_DIGIT_INIT(47), \
69
+ _PyLong_DIGIT_INIT(48), \
70
+ _PyLong_DIGIT_INIT(49), \
71
+ _PyLong_DIGIT_INIT(50), \
72
+ _PyLong_DIGIT_INIT(51), \
73
+ _PyLong_DIGIT_INIT(52), \
74
+ _PyLong_DIGIT_INIT(53), \
75
+ _PyLong_DIGIT_INIT(54), \
76
+ _PyLong_DIGIT_INIT(55), \
77
+ _PyLong_DIGIT_INIT(56), \
78
+ _PyLong_DIGIT_INIT(57), \
79
+ _PyLong_DIGIT_INIT(58), \
80
+ _PyLong_DIGIT_INIT(59), \
81
+ _PyLong_DIGIT_INIT(60), \
82
+ _PyLong_DIGIT_INIT(61), \
83
+ _PyLong_DIGIT_INIT(62), \
84
+ _PyLong_DIGIT_INIT(63), \
85
+ _PyLong_DIGIT_INIT(64), \
86
+ _PyLong_DIGIT_INIT(65), \
87
+ _PyLong_DIGIT_INIT(66), \
88
+ _PyLong_DIGIT_INIT(67), \
89
+ _PyLong_DIGIT_INIT(68), \
90
+ _PyLong_DIGIT_INIT(69), \
91
+ _PyLong_DIGIT_INIT(70), \
92
+ _PyLong_DIGIT_INIT(71), \
93
+ _PyLong_DIGIT_INIT(72), \
94
+ _PyLong_DIGIT_INIT(73), \
95
+ _PyLong_DIGIT_INIT(74), \
96
+ _PyLong_DIGIT_INIT(75), \
97
+ _PyLong_DIGIT_INIT(76), \
98
+ _PyLong_DIGIT_INIT(77), \
99
+ _PyLong_DIGIT_INIT(78), \
100
+ _PyLong_DIGIT_INIT(79), \
101
+ _PyLong_DIGIT_INIT(80), \
102
+ _PyLong_DIGIT_INIT(81), \
103
+ _PyLong_DIGIT_INIT(82), \
104
+ _PyLong_DIGIT_INIT(83), \
105
+ _PyLong_DIGIT_INIT(84), \
106
+ _PyLong_DIGIT_INIT(85), \
107
+ _PyLong_DIGIT_INIT(86), \
108
+ _PyLong_DIGIT_INIT(87), \
109
+ _PyLong_DIGIT_INIT(88), \
110
+ _PyLong_DIGIT_INIT(89), \
111
+ _PyLong_DIGIT_INIT(90), \
112
+ _PyLong_DIGIT_INIT(91), \
113
+ _PyLong_DIGIT_INIT(92), \
114
+ _PyLong_DIGIT_INIT(93), \
115
+ _PyLong_DIGIT_INIT(94), \
116
+ _PyLong_DIGIT_INIT(95), \
117
+ _PyLong_DIGIT_INIT(96), \
118
+ _PyLong_DIGIT_INIT(97), \
119
+ _PyLong_DIGIT_INIT(98), \
120
+ _PyLong_DIGIT_INIT(99), \
121
+ _PyLong_DIGIT_INIT(100), \
122
+ _PyLong_DIGIT_INIT(101), \
123
+ _PyLong_DIGIT_INIT(102), \
124
+ _PyLong_DIGIT_INIT(103), \
125
+ _PyLong_DIGIT_INIT(104), \
126
+ _PyLong_DIGIT_INIT(105), \
127
+ _PyLong_DIGIT_INIT(106), \
128
+ _PyLong_DIGIT_INIT(107), \
129
+ _PyLong_DIGIT_INIT(108), \
130
+ _PyLong_DIGIT_INIT(109), \
131
+ _PyLong_DIGIT_INIT(110), \
132
+ _PyLong_DIGIT_INIT(111), \
133
+ _PyLong_DIGIT_INIT(112), \
134
+ _PyLong_DIGIT_INIT(113), \
135
+ _PyLong_DIGIT_INIT(114), \
136
+ _PyLong_DIGIT_INIT(115), \
137
+ _PyLong_DIGIT_INIT(116), \
138
+ _PyLong_DIGIT_INIT(117), \
139
+ _PyLong_DIGIT_INIT(118), \
140
+ _PyLong_DIGIT_INIT(119), \
141
+ _PyLong_DIGIT_INIT(120), \
142
+ _PyLong_DIGIT_INIT(121), \
143
+ _PyLong_DIGIT_INIT(122), \
144
+ _PyLong_DIGIT_INIT(123), \
145
+ _PyLong_DIGIT_INIT(124), \
146
+ _PyLong_DIGIT_INIT(125), \
147
+ _PyLong_DIGIT_INIT(126), \
148
+ _PyLong_DIGIT_INIT(127), \
149
+ _PyLong_DIGIT_INIT(128), \
150
+ _PyLong_DIGIT_INIT(129), \
151
+ _PyLong_DIGIT_INIT(130), \
152
+ _PyLong_DIGIT_INIT(131), \
153
+ _PyLong_DIGIT_INIT(132), \
154
+ _PyLong_DIGIT_INIT(133), \
155
+ _PyLong_DIGIT_INIT(134), \
156
+ _PyLong_DIGIT_INIT(135), \
157
+ _PyLong_DIGIT_INIT(136), \
158
+ _PyLong_DIGIT_INIT(137), \
159
+ _PyLong_DIGIT_INIT(138), \
160
+ _PyLong_DIGIT_INIT(139), \
161
+ _PyLong_DIGIT_INIT(140), \
162
+ _PyLong_DIGIT_INIT(141), \
163
+ _PyLong_DIGIT_INIT(142), \
164
+ _PyLong_DIGIT_INIT(143), \
165
+ _PyLong_DIGIT_INIT(144), \
166
+ _PyLong_DIGIT_INIT(145), \
167
+ _PyLong_DIGIT_INIT(146), \
168
+ _PyLong_DIGIT_INIT(147), \
169
+ _PyLong_DIGIT_INIT(148), \
170
+ _PyLong_DIGIT_INIT(149), \
171
+ _PyLong_DIGIT_INIT(150), \
172
+ _PyLong_DIGIT_INIT(151), \
173
+ _PyLong_DIGIT_INIT(152), \
174
+ _PyLong_DIGIT_INIT(153), \
175
+ _PyLong_DIGIT_INIT(154), \
176
+ _PyLong_DIGIT_INIT(155), \
177
+ _PyLong_DIGIT_INIT(156), \
178
+ _PyLong_DIGIT_INIT(157), \
179
+ _PyLong_DIGIT_INIT(158), \
180
+ _PyLong_DIGIT_INIT(159), \
181
+ _PyLong_DIGIT_INIT(160), \
182
+ _PyLong_DIGIT_INIT(161), \
183
+ _PyLong_DIGIT_INIT(162), \
184
+ _PyLong_DIGIT_INIT(163), \
185
+ _PyLong_DIGIT_INIT(164), \
186
+ _PyLong_DIGIT_INIT(165), \
187
+ _PyLong_DIGIT_INIT(166), \
188
+ _PyLong_DIGIT_INIT(167), \
189
+ _PyLong_DIGIT_INIT(168), \
190
+ _PyLong_DIGIT_INIT(169), \
191
+ _PyLong_DIGIT_INIT(170), \
192
+ _PyLong_DIGIT_INIT(171), \
193
+ _PyLong_DIGIT_INIT(172), \
194
+ _PyLong_DIGIT_INIT(173), \
195
+ _PyLong_DIGIT_INIT(174), \
196
+ _PyLong_DIGIT_INIT(175), \
197
+ _PyLong_DIGIT_INIT(176), \
198
+ _PyLong_DIGIT_INIT(177), \
199
+ _PyLong_DIGIT_INIT(178), \
200
+ _PyLong_DIGIT_INIT(179), \
201
+ _PyLong_DIGIT_INIT(180), \
202
+ _PyLong_DIGIT_INIT(181), \
203
+ _PyLong_DIGIT_INIT(182), \
204
+ _PyLong_DIGIT_INIT(183), \
205
+ _PyLong_DIGIT_INIT(184), \
206
+ _PyLong_DIGIT_INIT(185), \
207
+ _PyLong_DIGIT_INIT(186), \
208
+ _PyLong_DIGIT_INIT(187), \
209
+ _PyLong_DIGIT_INIT(188), \
210
+ _PyLong_DIGIT_INIT(189), \
211
+ _PyLong_DIGIT_INIT(190), \
212
+ _PyLong_DIGIT_INIT(191), \
213
+ _PyLong_DIGIT_INIT(192), \
214
+ _PyLong_DIGIT_INIT(193), \
215
+ _PyLong_DIGIT_INIT(194), \
216
+ _PyLong_DIGIT_INIT(195), \
217
+ _PyLong_DIGIT_INIT(196), \
218
+ _PyLong_DIGIT_INIT(197), \
219
+ _PyLong_DIGIT_INIT(198), \
220
+ _PyLong_DIGIT_INIT(199), \
221
+ _PyLong_DIGIT_INIT(200), \
222
+ _PyLong_DIGIT_INIT(201), \
223
+ _PyLong_DIGIT_INIT(202), \
224
+ _PyLong_DIGIT_INIT(203), \
225
+ _PyLong_DIGIT_INIT(204), \
226
+ _PyLong_DIGIT_INIT(205), \
227
+ _PyLong_DIGIT_INIT(206), \
228
+ _PyLong_DIGIT_INIT(207), \
229
+ _PyLong_DIGIT_INIT(208), \
230
+ _PyLong_DIGIT_INIT(209), \
231
+ _PyLong_DIGIT_INIT(210), \
232
+ _PyLong_DIGIT_INIT(211), \
233
+ _PyLong_DIGIT_INIT(212), \
234
+ _PyLong_DIGIT_INIT(213), \
235
+ _PyLong_DIGIT_INIT(214), \
236
+ _PyLong_DIGIT_INIT(215), \
237
+ _PyLong_DIGIT_INIT(216), \
238
+ _PyLong_DIGIT_INIT(217), \
239
+ _PyLong_DIGIT_INIT(218), \
240
+ _PyLong_DIGIT_INIT(219), \
241
+ _PyLong_DIGIT_INIT(220), \
242
+ _PyLong_DIGIT_INIT(221), \
243
+ _PyLong_DIGIT_INIT(222), \
244
+ _PyLong_DIGIT_INIT(223), \
245
+ _PyLong_DIGIT_INIT(224), \
246
+ _PyLong_DIGIT_INIT(225), \
247
+ _PyLong_DIGIT_INIT(226), \
248
+ _PyLong_DIGIT_INIT(227), \
249
+ _PyLong_DIGIT_INIT(228), \
250
+ _PyLong_DIGIT_INIT(229), \
251
+ _PyLong_DIGIT_INIT(230), \
252
+ _PyLong_DIGIT_INIT(231), \
253
+ _PyLong_DIGIT_INIT(232), \
254
+ _PyLong_DIGIT_INIT(233), \
255
+ _PyLong_DIGIT_INIT(234), \
256
+ _PyLong_DIGIT_INIT(235), \
257
+ _PyLong_DIGIT_INIT(236), \
258
+ _PyLong_DIGIT_INIT(237), \
259
+ _PyLong_DIGIT_INIT(238), \
260
+ _PyLong_DIGIT_INIT(239), \
261
+ _PyLong_DIGIT_INIT(240), \
262
+ _PyLong_DIGIT_INIT(241), \
263
+ _PyLong_DIGIT_INIT(242), \
264
+ _PyLong_DIGIT_INIT(243), \
265
+ _PyLong_DIGIT_INIT(244), \
266
+ _PyLong_DIGIT_INIT(245), \
267
+ _PyLong_DIGIT_INIT(246), \
268
+ _PyLong_DIGIT_INIT(247), \
269
+ _PyLong_DIGIT_INIT(248), \
270
+ _PyLong_DIGIT_INIT(249), \
271
+ _PyLong_DIGIT_INIT(250), \
272
+ _PyLong_DIGIT_INIT(251), \
273
+ _PyLong_DIGIT_INIT(252), \
274
+ _PyLong_DIGIT_INIT(253), \
275
+ _PyLong_DIGIT_INIT(254), \
276
+ _PyLong_DIGIT_INIT(255), \
277
+ _PyLong_DIGIT_INIT(256), \
278
+ }
279
+
280
+ #define _Py_bytes_characters_INIT { \
281
+ _PyBytes_CHAR_INIT(0), \
282
+ _PyBytes_CHAR_INIT(1), \
283
+ _PyBytes_CHAR_INIT(2), \
284
+ _PyBytes_CHAR_INIT(3), \
285
+ _PyBytes_CHAR_INIT(4), \
286
+ _PyBytes_CHAR_INIT(5), \
287
+ _PyBytes_CHAR_INIT(6), \
288
+ _PyBytes_CHAR_INIT(7), \
289
+ _PyBytes_CHAR_INIT(8), \
290
+ _PyBytes_CHAR_INIT(9), \
291
+ _PyBytes_CHAR_INIT(10), \
292
+ _PyBytes_CHAR_INIT(11), \
293
+ _PyBytes_CHAR_INIT(12), \
294
+ _PyBytes_CHAR_INIT(13), \
295
+ _PyBytes_CHAR_INIT(14), \
296
+ _PyBytes_CHAR_INIT(15), \
297
+ _PyBytes_CHAR_INIT(16), \
298
+ _PyBytes_CHAR_INIT(17), \
299
+ _PyBytes_CHAR_INIT(18), \
300
+ _PyBytes_CHAR_INIT(19), \
301
+ _PyBytes_CHAR_INIT(20), \
302
+ _PyBytes_CHAR_INIT(21), \
303
+ _PyBytes_CHAR_INIT(22), \
304
+ _PyBytes_CHAR_INIT(23), \
305
+ _PyBytes_CHAR_INIT(24), \
306
+ _PyBytes_CHAR_INIT(25), \
307
+ _PyBytes_CHAR_INIT(26), \
308
+ _PyBytes_CHAR_INIT(27), \
309
+ _PyBytes_CHAR_INIT(28), \
310
+ _PyBytes_CHAR_INIT(29), \
311
+ _PyBytes_CHAR_INIT(30), \
312
+ _PyBytes_CHAR_INIT(31), \
313
+ _PyBytes_CHAR_INIT(32), \
314
+ _PyBytes_CHAR_INIT(33), \
315
+ _PyBytes_CHAR_INIT(34), \
316
+ _PyBytes_CHAR_INIT(35), \
317
+ _PyBytes_CHAR_INIT(36), \
318
+ _PyBytes_CHAR_INIT(37), \
319
+ _PyBytes_CHAR_INIT(38), \
320
+ _PyBytes_CHAR_INIT(39), \
321
+ _PyBytes_CHAR_INIT(40), \
322
+ _PyBytes_CHAR_INIT(41), \
323
+ _PyBytes_CHAR_INIT(42), \
324
+ _PyBytes_CHAR_INIT(43), \
325
+ _PyBytes_CHAR_INIT(44), \
326
+ _PyBytes_CHAR_INIT(45), \
327
+ _PyBytes_CHAR_INIT(46), \
328
+ _PyBytes_CHAR_INIT(47), \
329
+ _PyBytes_CHAR_INIT(48), \
330
+ _PyBytes_CHAR_INIT(49), \
331
+ _PyBytes_CHAR_INIT(50), \
332
+ _PyBytes_CHAR_INIT(51), \
333
+ _PyBytes_CHAR_INIT(52), \
334
+ _PyBytes_CHAR_INIT(53), \
335
+ _PyBytes_CHAR_INIT(54), \
336
+ _PyBytes_CHAR_INIT(55), \
337
+ _PyBytes_CHAR_INIT(56), \
338
+ _PyBytes_CHAR_INIT(57), \
339
+ _PyBytes_CHAR_INIT(58), \
340
+ _PyBytes_CHAR_INIT(59), \
341
+ _PyBytes_CHAR_INIT(60), \
342
+ _PyBytes_CHAR_INIT(61), \
343
+ _PyBytes_CHAR_INIT(62), \
344
+ _PyBytes_CHAR_INIT(63), \
345
+ _PyBytes_CHAR_INIT(64), \
346
+ _PyBytes_CHAR_INIT(65), \
347
+ _PyBytes_CHAR_INIT(66), \
348
+ _PyBytes_CHAR_INIT(67), \
349
+ _PyBytes_CHAR_INIT(68), \
350
+ _PyBytes_CHAR_INIT(69), \
351
+ _PyBytes_CHAR_INIT(70), \
352
+ _PyBytes_CHAR_INIT(71), \
353
+ _PyBytes_CHAR_INIT(72), \
354
+ _PyBytes_CHAR_INIT(73), \
355
+ _PyBytes_CHAR_INIT(74), \
356
+ _PyBytes_CHAR_INIT(75), \
357
+ _PyBytes_CHAR_INIT(76), \
358
+ _PyBytes_CHAR_INIT(77), \
359
+ _PyBytes_CHAR_INIT(78), \
360
+ _PyBytes_CHAR_INIT(79), \
361
+ _PyBytes_CHAR_INIT(80), \
362
+ _PyBytes_CHAR_INIT(81), \
363
+ _PyBytes_CHAR_INIT(82), \
364
+ _PyBytes_CHAR_INIT(83), \
365
+ _PyBytes_CHAR_INIT(84), \
366
+ _PyBytes_CHAR_INIT(85), \
367
+ _PyBytes_CHAR_INIT(86), \
368
+ _PyBytes_CHAR_INIT(87), \
369
+ _PyBytes_CHAR_INIT(88), \
370
+ _PyBytes_CHAR_INIT(89), \
371
+ _PyBytes_CHAR_INIT(90), \
372
+ _PyBytes_CHAR_INIT(91), \
373
+ _PyBytes_CHAR_INIT(92), \
374
+ _PyBytes_CHAR_INIT(93), \
375
+ _PyBytes_CHAR_INIT(94), \
376
+ _PyBytes_CHAR_INIT(95), \
377
+ _PyBytes_CHAR_INIT(96), \
378
+ _PyBytes_CHAR_INIT(97), \
379
+ _PyBytes_CHAR_INIT(98), \
380
+ _PyBytes_CHAR_INIT(99), \
381
+ _PyBytes_CHAR_INIT(100), \
382
+ _PyBytes_CHAR_INIT(101), \
383
+ _PyBytes_CHAR_INIT(102), \
384
+ _PyBytes_CHAR_INIT(103), \
385
+ _PyBytes_CHAR_INIT(104), \
386
+ _PyBytes_CHAR_INIT(105), \
387
+ _PyBytes_CHAR_INIT(106), \
388
+ _PyBytes_CHAR_INIT(107), \
389
+ _PyBytes_CHAR_INIT(108), \
390
+ _PyBytes_CHAR_INIT(109), \
391
+ _PyBytes_CHAR_INIT(110), \
392
+ _PyBytes_CHAR_INIT(111), \
393
+ _PyBytes_CHAR_INIT(112), \
394
+ _PyBytes_CHAR_INIT(113), \
395
+ _PyBytes_CHAR_INIT(114), \
396
+ _PyBytes_CHAR_INIT(115), \
397
+ _PyBytes_CHAR_INIT(116), \
398
+ _PyBytes_CHAR_INIT(117), \
399
+ _PyBytes_CHAR_INIT(118), \
400
+ _PyBytes_CHAR_INIT(119), \
401
+ _PyBytes_CHAR_INIT(120), \
402
+ _PyBytes_CHAR_INIT(121), \
403
+ _PyBytes_CHAR_INIT(122), \
404
+ _PyBytes_CHAR_INIT(123), \
405
+ _PyBytes_CHAR_INIT(124), \
406
+ _PyBytes_CHAR_INIT(125), \
407
+ _PyBytes_CHAR_INIT(126), \
408
+ _PyBytes_CHAR_INIT(127), \
409
+ _PyBytes_CHAR_INIT(128), \
410
+ _PyBytes_CHAR_INIT(129), \
411
+ _PyBytes_CHAR_INIT(130), \
412
+ _PyBytes_CHAR_INIT(131), \
413
+ _PyBytes_CHAR_INIT(132), \
414
+ _PyBytes_CHAR_INIT(133), \
415
+ _PyBytes_CHAR_INIT(134), \
416
+ _PyBytes_CHAR_INIT(135), \
417
+ _PyBytes_CHAR_INIT(136), \
418
+ _PyBytes_CHAR_INIT(137), \
419
+ _PyBytes_CHAR_INIT(138), \
420
+ _PyBytes_CHAR_INIT(139), \
421
+ _PyBytes_CHAR_INIT(140), \
422
+ _PyBytes_CHAR_INIT(141), \
423
+ _PyBytes_CHAR_INIT(142), \
424
+ _PyBytes_CHAR_INIT(143), \
425
+ _PyBytes_CHAR_INIT(144), \
426
+ _PyBytes_CHAR_INIT(145), \
427
+ _PyBytes_CHAR_INIT(146), \
428
+ _PyBytes_CHAR_INIT(147), \
429
+ _PyBytes_CHAR_INIT(148), \
430
+ _PyBytes_CHAR_INIT(149), \
431
+ _PyBytes_CHAR_INIT(150), \
432
+ _PyBytes_CHAR_INIT(151), \
433
+ _PyBytes_CHAR_INIT(152), \
434
+ _PyBytes_CHAR_INIT(153), \
435
+ _PyBytes_CHAR_INIT(154), \
436
+ _PyBytes_CHAR_INIT(155), \
437
+ _PyBytes_CHAR_INIT(156), \
438
+ _PyBytes_CHAR_INIT(157), \
439
+ _PyBytes_CHAR_INIT(158), \
440
+ _PyBytes_CHAR_INIT(159), \
441
+ _PyBytes_CHAR_INIT(160), \
442
+ _PyBytes_CHAR_INIT(161), \
443
+ _PyBytes_CHAR_INIT(162), \
444
+ _PyBytes_CHAR_INIT(163), \
445
+ _PyBytes_CHAR_INIT(164), \
446
+ _PyBytes_CHAR_INIT(165), \
447
+ _PyBytes_CHAR_INIT(166), \
448
+ _PyBytes_CHAR_INIT(167), \
449
+ _PyBytes_CHAR_INIT(168), \
450
+ _PyBytes_CHAR_INIT(169), \
451
+ _PyBytes_CHAR_INIT(170), \
452
+ _PyBytes_CHAR_INIT(171), \
453
+ _PyBytes_CHAR_INIT(172), \
454
+ _PyBytes_CHAR_INIT(173), \
455
+ _PyBytes_CHAR_INIT(174), \
456
+ _PyBytes_CHAR_INIT(175), \
457
+ _PyBytes_CHAR_INIT(176), \
458
+ _PyBytes_CHAR_INIT(177), \
459
+ _PyBytes_CHAR_INIT(178), \
460
+ _PyBytes_CHAR_INIT(179), \
461
+ _PyBytes_CHAR_INIT(180), \
462
+ _PyBytes_CHAR_INIT(181), \
463
+ _PyBytes_CHAR_INIT(182), \
464
+ _PyBytes_CHAR_INIT(183), \
465
+ _PyBytes_CHAR_INIT(184), \
466
+ _PyBytes_CHAR_INIT(185), \
467
+ _PyBytes_CHAR_INIT(186), \
468
+ _PyBytes_CHAR_INIT(187), \
469
+ _PyBytes_CHAR_INIT(188), \
470
+ _PyBytes_CHAR_INIT(189), \
471
+ _PyBytes_CHAR_INIT(190), \
472
+ _PyBytes_CHAR_INIT(191), \
473
+ _PyBytes_CHAR_INIT(192), \
474
+ _PyBytes_CHAR_INIT(193), \
475
+ _PyBytes_CHAR_INIT(194), \
476
+ _PyBytes_CHAR_INIT(195), \
477
+ _PyBytes_CHAR_INIT(196), \
478
+ _PyBytes_CHAR_INIT(197), \
479
+ _PyBytes_CHAR_INIT(198), \
480
+ _PyBytes_CHAR_INIT(199), \
481
+ _PyBytes_CHAR_INIT(200), \
482
+ _PyBytes_CHAR_INIT(201), \
483
+ _PyBytes_CHAR_INIT(202), \
484
+ _PyBytes_CHAR_INIT(203), \
485
+ _PyBytes_CHAR_INIT(204), \
486
+ _PyBytes_CHAR_INIT(205), \
487
+ _PyBytes_CHAR_INIT(206), \
488
+ _PyBytes_CHAR_INIT(207), \
489
+ _PyBytes_CHAR_INIT(208), \
490
+ _PyBytes_CHAR_INIT(209), \
491
+ _PyBytes_CHAR_INIT(210), \
492
+ _PyBytes_CHAR_INIT(211), \
493
+ _PyBytes_CHAR_INIT(212), \
494
+ _PyBytes_CHAR_INIT(213), \
495
+ _PyBytes_CHAR_INIT(214), \
496
+ _PyBytes_CHAR_INIT(215), \
497
+ _PyBytes_CHAR_INIT(216), \
498
+ _PyBytes_CHAR_INIT(217), \
499
+ _PyBytes_CHAR_INIT(218), \
500
+ _PyBytes_CHAR_INIT(219), \
501
+ _PyBytes_CHAR_INIT(220), \
502
+ _PyBytes_CHAR_INIT(221), \
503
+ _PyBytes_CHAR_INIT(222), \
504
+ _PyBytes_CHAR_INIT(223), \
505
+ _PyBytes_CHAR_INIT(224), \
506
+ _PyBytes_CHAR_INIT(225), \
507
+ _PyBytes_CHAR_INIT(226), \
508
+ _PyBytes_CHAR_INIT(227), \
509
+ _PyBytes_CHAR_INIT(228), \
510
+ _PyBytes_CHAR_INIT(229), \
511
+ _PyBytes_CHAR_INIT(230), \
512
+ _PyBytes_CHAR_INIT(231), \
513
+ _PyBytes_CHAR_INIT(232), \
514
+ _PyBytes_CHAR_INIT(233), \
515
+ _PyBytes_CHAR_INIT(234), \
516
+ _PyBytes_CHAR_INIT(235), \
517
+ _PyBytes_CHAR_INIT(236), \
518
+ _PyBytes_CHAR_INIT(237), \
519
+ _PyBytes_CHAR_INIT(238), \
520
+ _PyBytes_CHAR_INIT(239), \
521
+ _PyBytes_CHAR_INIT(240), \
522
+ _PyBytes_CHAR_INIT(241), \
523
+ _PyBytes_CHAR_INIT(242), \
524
+ _PyBytes_CHAR_INIT(243), \
525
+ _PyBytes_CHAR_INIT(244), \
526
+ _PyBytes_CHAR_INIT(245), \
527
+ _PyBytes_CHAR_INIT(246), \
528
+ _PyBytes_CHAR_INIT(247), \
529
+ _PyBytes_CHAR_INIT(248), \
530
+ _PyBytes_CHAR_INIT(249), \
531
+ _PyBytes_CHAR_INIT(250), \
532
+ _PyBytes_CHAR_INIT(251), \
533
+ _PyBytes_CHAR_INIT(252), \
534
+ _PyBytes_CHAR_INIT(253), \
535
+ _PyBytes_CHAR_INIT(254), \
536
+ _PyBytes_CHAR_INIT(255), \
537
+ }
538
+
539
+ #define _Py_str_literals_INIT { \
540
+ INIT_STR(anon_dictcomp, "<dictcomp>"), \
541
+ INIT_STR(anon_genexpr, "<genexpr>"), \
542
+ INIT_STR(anon_lambda, "<lambda>"), \
543
+ INIT_STR(anon_listcomp, "<listcomp>"), \
544
+ INIT_STR(anon_module, "<module>"), \
545
+ INIT_STR(anon_null, "<NULL>"), \
546
+ INIT_STR(anon_setcomp, "<setcomp>"), \
547
+ INIT_STR(anon_string, "<string>"), \
548
+ INIT_STR(anon_unknown, "<unknown>"), \
549
+ INIT_STR(dbl_close_br, "}}"), \
550
+ INIT_STR(dbl_open_br, "{{"), \
551
+ INIT_STR(dbl_percent, "%%"), \
552
+ INIT_STR(defaults, ".defaults"), \
553
+ INIT_STR(dot_locals, ".<locals>"), \
554
+ INIT_STR(empty, ""), \
555
+ INIT_STR(format, ".format"), \
556
+ INIT_STR(generic_base, ".generic_base"), \
557
+ INIT_STR(json_decoder, "json.decoder"), \
558
+ INIT_STR(kwdefaults, ".kwdefaults"), \
559
+ INIT_STR(list_err, "list index out of range"), \
560
+ INIT_STR(str_replace_inf, "1e309"), \
561
+ INIT_STR(type_params, ".type_params"), \
562
+ INIT_STR(utf_8, "utf-8"), \
563
+ }
564
+
565
+ #define _Py_str_identifiers_INIT { \
566
+ INIT_ID(CANCELLED), \
567
+ INIT_ID(FINISHED), \
568
+ INIT_ID(False), \
569
+ INIT_ID(JSONDecodeError), \
570
+ INIT_ID(PENDING), \
571
+ INIT_ID(Py_Repr), \
572
+ INIT_ID(TextIOWrapper), \
573
+ INIT_ID(True), \
574
+ INIT_ID(WarningMessage), \
575
+ INIT_ID(_WindowsConsoleIO), \
576
+ INIT_ID(__IOBase_closed), \
577
+ INIT_ID(__abc_tpflags__), \
578
+ INIT_ID(__abs__), \
579
+ INIT_ID(__abstractmethods__), \
580
+ INIT_ID(__add__), \
581
+ INIT_ID(__aenter__), \
582
+ INIT_ID(__aexit__), \
583
+ INIT_ID(__aiter__), \
584
+ INIT_ID(__all__), \
585
+ INIT_ID(__and__), \
586
+ INIT_ID(__anext__), \
587
+ INIT_ID(__annotate__), \
588
+ INIT_ID(__annotate_func__), \
589
+ INIT_ID(__annotations__), \
590
+ INIT_ID(__annotations_cache__), \
591
+ INIT_ID(__args__), \
592
+ INIT_ID(__await__), \
593
+ INIT_ID(__bases__), \
594
+ INIT_ID(__bool__), \
595
+ INIT_ID(__buffer__), \
596
+ INIT_ID(__build_class__), \
597
+ INIT_ID(__builtins__), \
598
+ INIT_ID(__bytes__), \
599
+ INIT_ID(__call__), \
600
+ INIT_ID(__cantrace__), \
601
+ INIT_ID(__ceil__), \
602
+ INIT_ID(__class__), \
603
+ INIT_ID(__class_getitem__), \
604
+ INIT_ID(__classcell__), \
605
+ INIT_ID(__classdict__), \
606
+ INIT_ID(__classdictcell__), \
607
+ INIT_ID(__complex__), \
608
+ INIT_ID(__conditional_annotations__), \
609
+ INIT_ID(__contains__), \
610
+ INIT_ID(__ctypes_from_outparam__), \
611
+ INIT_ID(__del__), \
612
+ INIT_ID(__delattr__), \
613
+ INIT_ID(__delete__), \
614
+ INIT_ID(__delitem__), \
615
+ INIT_ID(__dict__), \
616
+ INIT_ID(__dictoffset__), \
617
+ INIT_ID(__dir__), \
618
+ INIT_ID(__divmod__), \
619
+ INIT_ID(__doc__), \
620
+ INIT_ID(__enter__), \
621
+ INIT_ID(__eq__), \
622
+ INIT_ID(__exit__), \
623
+ INIT_ID(__file__), \
624
+ INIT_ID(__firstlineno__), \
625
+ INIT_ID(__float__), \
626
+ INIT_ID(__floor__), \
627
+ INIT_ID(__floordiv__), \
628
+ INIT_ID(__format__), \
629
+ INIT_ID(__fspath__), \
630
+ INIT_ID(__ge__), \
631
+ INIT_ID(__get__), \
632
+ INIT_ID(__getattr__), \
633
+ INIT_ID(__getattribute__), \
634
+ INIT_ID(__getinitargs__), \
635
+ INIT_ID(__getitem__), \
636
+ INIT_ID(__getnewargs__), \
637
+ INIT_ID(__getnewargs_ex__), \
638
+ INIT_ID(__getstate__), \
639
+ INIT_ID(__gt__), \
640
+ INIT_ID(__hash__), \
641
+ INIT_ID(__iadd__), \
642
+ INIT_ID(__iand__), \
643
+ INIT_ID(__ifloordiv__), \
644
+ INIT_ID(__ilshift__), \
645
+ INIT_ID(__imatmul__), \
646
+ INIT_ID(__imod__), \
647
+ INIT_ID(__import__), \
648
+ INIT_ID(__imul__), \
649
+ INIT_ID(__index__), \
650
+ INIT_ID(__init__), \
651
+ INIT_ID(__init_subclass__), \
652
+ INIT_ID(__instancecheck__), \
653
+ INIT_ID(__int__), \
654
+ INIT_ID(__invert__), \
655
+ INIT_ID(__ior__), \
656
+ INIT_ID(__ipow__), \
657
+ INIT_ID(__irshift__), \
658
+ INIT_ID(__isabstractmethod__), \
659
+ INIT_ID(__isub__), \
660
+ INIT_ID(__iter__), \
661
+ INIT_ID(__itruediv__), \
662
+ INIT_ID(__ixor__), \
663
+ INIT_ID(__le__), \
664
+ INIT_ID(__len__), \
665
+ INIT_ID(__length_hint__), \
666
+ INIT_ID(__lltrace__), \
667
+ INIT_ID(__loader__), \
668
+ INIT_ID(__lshift__), \
669
+ INIT_ID(__lt__), \
670
+ INIT_ID(__main__), \
671
+ INIT_ID(__match_args__), \
672
+ INIT_ID(__matmul__), \
673
+ INIT_ID(__missing__), \
674
+ INIT_ID(__mod__), \
675
+ INIT_ID(__module__), \
676
+ INIT_ID(__mro_entries__), \
677
+ INIT_ID(__mul__), \
678
+ INIT_ID(__name__), \
679
+ INIT_ID(__ne__), \
680
+ INIT_ID(__neg__), \
681
+ INIT_ID(__new__), \
682
+ INIT_ID(__newobj__), \
683
+ INIT_ID(__newobj_ex__), \
684
+ INIT_ID(__next__), \
685
+ INIT_ID(__notes__), \
686
+ INIT_ID(__or__), \
687
+ INIT_ID(__orig_class__), \
688
+ INIT_ID(__origin__), \
689
+ INIT_ID(__package__), \
690
+ INIT_ID(__parameters__), \
691
+ INIT_ID(__path__), \
692
+ INIT_ID(__pos__), \
693
+ INIT_ID(__pow__), \
694
+ INIT_ID(__prepare__), \
695
+ INIT_ID(__qualname__), \
696
+ INIT_ID(__radd__), \
697
+ INIT_ID(__rand__), \
698
+ INIT_ID(__rdivmod__), \
699
+ INIT_ID(__reduce__), \
700
+ INIT_ID(__reduce_ex__), \
701
+ INIT_ID(__release_buffer__), \
702
+ INIT_ID(__repr__), \
703
+ INIT_ID(__reversed__), \
704
+ INIT_ID(__rfloordiv__), \
705
+ INIT_ID(__rlshift__), \
706
+ INIT_ID(__rmatmul__), \
707
+ INIT_ID(__rmod__), \
708
+ INIT_ID(__rmul__), \
709
+ INIT_ID(__ror__), \
710
+ INIT_ID(__round__), \
711
+ INIT_ID(__rpow__), \
712
+ INIT_ID(__rrshift__), \
713
+ INIT_ID(__rshift__), \
714
+ INIT_ID(__rsub__), \
715
+ INIT_ID(__rtruediv__), \
716
+ INIT_ID(__rxor__), \
717
+ INIT_ID(__set__), \
718
+ INIT_ID(__set_name__), \
719
+ INIT_ID(__setattr__), \
720
+ INIT_ID(__setitem__), \
721
+ INIT_ID(__setstate__), \
722
+ INIT_ID(__sizeof__), \
723
+ INIT_ID(__slotnames__), \
724
+ INIT_ID(__slots__), \
725
+ INIT_ID(__spec__), \
726
+ INIT_ID(__static_attributes__), \
727
+ INIT_ID(__str__), \
728
+ INIT_ID(__sub__), \
729
+ INIT_ID(__subclasscheck__), \
730
+ INIT_ID(__subclasshook__), \
731
+ INIT_ID(__truediv__), \
732
+ INIT_ID(__trunc__), \
733
+ INIT_ID(__type_params__), \
734
+ INIT_ID(__typing_is_unpacked_typevartuple__), \
735
+ INIT_ID(__typing_prepare_subst__), \
736
+ INIT_ID(__typing_subst__), \
737
+ INIT_ID(__typing_unpacked_tuple_args__), \
738
+ INIT_ID(__warningregistry__), \
739
+ INIT_ID(__weaklistoffset__), \
740
+ INIT_ID(__weakref__), \
741
+ INIT_ID(__xor__), \
742
+ INIT_ID(_abc_impl), \
743
+ INIT_ID(_abstract_), \
744
+ INIT_ID(_active), \
745
+ INIT_ID(_anonymous_), \
746
+ INIT_ID(_argtypes_), \
747
+ INIT_ID(_as_parameter_), \
748
+ INIT_ID(_asyncio_future_blocking), \
749
+ INIT_ID(_blksize), \
750
+ INIT_ID(_bootstrap), \
751
+ INIT_ID(_check_retval_), \
752
+ INIT_ID(_dealloc_warn), \
753
+ INIT_ID(_feature_version), \
754
+ INIT_ID(_field_types), \
755
+ INIT_ID(_fields_), \
756
+ INIT_ID(_filters), \
757
+ INIT_ID(_finalizing), \
758
+ INIT_ID(_find_and_load), \
759
+ INIT_ID(_fix_up_module), \
760
+ INIT_ID(_flags_), \
761
+ INIT_ID(_get_sourcefile), \
762
+ INIT_ID(_handle_fromlist), \
763
+ INIT_ID(_initializing), \
764
+ INIT_ID(_internal_use), \
765
+ INIT_ID(_io), \
766
+ INIT_ID(_is_text_encoding), \
767
+ INIT_ID(_isatty_open_only), \
768
+ INIT_ID(_length_), \
769
+ INIT_ID(_limbo), \
770
+ INIT_ID(_lock_unlock_module), \
771
+ INIT_ID(_loop), \
772
+ INIT_ID(_needs_com_addref_), \
773
+ INIT_ID(_only_immortal), \
774
+ INIT_ID(_restype_), \
775
+ INIT_ID(_showwarnmsg), \
776
+ INIT_ID(_shutdown), \
777
+ INIT_ID(_slotnames), \
778
+ INIT_ID(_strptime), \
779
+ INIT_ID(_strptime_datetime_date), \
780
+ INIT_ID(_strptime_datetime_datetime), \
781
+ INIT_ID(_strptime_datetime_time), \
782
+ INIT_ID(_type_), \
783
+ INIT_ID(_uninitialized_submodules), \
784
+ INIT_ID(_warn_unawaited_coroutine), \
785
+ INIT_ID(_xoptions), \
786
+ INIT_ID(abs_tol), \
787
+ INIT_ID(access), \
788
+ INIT_ID(aclose), \
789
+ INIT_ID(add), \
790
+ INIT_ID(add_done_callback), \
791
+ INIT_ID(after_in_child), \
792
+ INIT_ID(after_in_parent), \
793
+ INIT_ID(aggregate_class), \
794
+ INIT_ID(alias), \
795
+ INIT_ID(align), \
796
+ INIT_ID(all), \
797
+ INIT_ID(all_threads), \
798
+ INIT_ID(allow_code), \
799
+ INIT_ID(any), \
800
+ INIT_ID(append), \
801
+ INIT_ID(arg), \
802
+ INIT_ID(argdefs), \
803
+ INIT_ID(args), \
804
+ INIT_ID(arguments), \
805
+ INIT_ID(argv), \
806
+ INIT_ID(as_integer_ratio), \
807
+ INIT_ID(asend), \
808
+ INIT_ID(ast), \
809
+ INIT_ID(athrow), \
810
+ INIT_ID(attribute), \
811
+ INIT_ID(authorizer_callback), \
812
+ INIT_ID(autocommit), \
813
+ INIT_ID(backtick), \
814
+ INIT_ID(base), \
815
+ INIT_ID(before), \
816
+ INIT_ID(big), \
817
+ INIT_ID(binary_form), \
818
+ INIT_ID(bit_offset), \
819
+ INIT_ID(bit_size), \
820
+ INIT_ID(block), \
821
+ INIT_ID(bound), \
822
+ INIT_ID(buffer), \
823
+ INIT_ID(buffer_callback), \
824
+ INIT_ID(buffer_size), \
825
+ INIT_ID(buffering), \
826
+ INIT_ID(buffers), \
827
+ INIT_ID(bufsize), \
828
+ INIT_ID(builtins), \
829
+ INIT_ID(byte_offset), \
830
+ INIT_ID(byte_size), \
831
+ INIT_ID(byteorder), \
832
+ INIT_ID(bytes), \
833
+ INIT_ID(bytes_per_sep), \
834
+ INIT_ID(c_call), \
835
+ INIT_ID(c_exception), \
836
+ INIT_ID(c_parameter_type), \
837
+ INIT_ID(c_return), \
838
+ INIT_ID(cached_datetime_module), \
839
+ INIT_ID(cached_statements), \
840
+ INIT_ID(cadata), \
841
+ INIT_ID(cafile), \
842
+ INIT_ID(call), \
843
+ INIT_ID(call_exception_handler), \
844
+ INIT_ID(call_soon), \
845
+ INIT_ID(callback), \
846
+ INIT_ID(cancel), \
847
+ INIT_ID(capath), \
848
+ INIT_ID(category), \
849
+ INIT_ID(cb_type), \
850
+ INIT_ID(certfile), \
851
+ INIT_ID(check_same_thread), \
852
+ INIT_ID(clear), \
853
+ INIT_ID(close), \
854
+ INIT_ID(closed), \
855
+ INIT_ID(closefd), \
856
+ INIT_ID(closure), \
857
+ INIT_ID(co_argcount), \
858
+ INIT_ID(co_cellvars), \
859
+ INIT_ID(co_code), \
860
+ INIT_ID(co_consts), \
861
+ INIT_ID(co_exceptiontable), \
862
+ INIT_ID(co_filename), \
863
+ INIT_ID(co_firstlineno), \
864
+ INIT_ID(co_flags), \
865
+ INIT_ID(co_freevars), \
866
+ INIT_ID(co_kwonlyargcount), \
867
+ INIT_ID(co_linetable), \
868
+ INIT_ID(co_name), \
869
+ INIT_ID(co_names), \
870
+ INIT_ID(co_nlocals), \
871
+ INIT_ID(co_posonlyargcount), \
872
+ INIT_ID(co_qualname), \
873
+ INIT_ID(co_stacksize), \
874
+ INIT_ID(co_varnames), \
875
+ INIT_ID(code), \
876
+ INIT_ID(col_offset), \
877
+ INIT_ID(command), \
878
+ INIT_ID(comment_factory), \
879
+ INIT_ID(compile_mode), \
880
+ INIT_ID(consts), \
881
+ INIT_ID(context), \
882
+ INIT_ID(contravariant), \
883
+ INIT_ID(conversion), \
884
+ INIT_ID(cookie), \
885
+ INIT_ID(copy), \
886
+ INIT_ID(copyreg), \
887
+ INIT_ID(coro), \
888
+ INIT_ID(count), \
889
+ INIT_ID(covariant), \
890
+ INIT_ID(cwd), \
891
+ INIT_ID(d_parameter_type), \
892
+ INIT_ID(data), \
893
+ INIT_ID(database), \
894
+ INIT_ID(day), \
895
+ INIT_ID(debug), \
896
+ INIT_ID(decode), \
897
+ INIT_ID(decoder), \
898
+ INIT_ID(default), \
899
+ INIT_ID(defaultaction), \
900
+ INIT_ID(delete), \
901
+ INIT_ID(depth), \
902
+ INIT_ID(desired_access), \
903
+ INIT_ID(detect_types), \
904
+ INIT_ID(deterministic), \
905
+ INIT_ID(device), \
906
+ INIT_ID(dict), \
907
+ INIT_ID(dictcomp), \
908
+ INIT_ID(difference_update), \
909
+ INIT_ID(digest), \
910
+ INIT_ID(digest_size), \
911
+ INIT_ID(digestmod), \
912
+ INIT_ID(dir_fd), \
913
+ INIT_ID(discard), \
914
+ INIT_ID(dispatch_table), \
915
+ INIT_ID(displayhook), \
916
+ INIT_ID(dklen), \
917
+ INIT_ID(doc), \
918
+ INIT_ID(done), \
919
+ INIT_ID(dont_inherit), \
920
+ INIT_ID(dst), \
921
+ INIT_ID(dst_dir_fd), \
922
+ INIT_ID(eager_start), \
923
+ INIT_ID(effective_ids), \
924
+ INIT_ID(element_factory), \
925
+ INIT_ID(encode), \
926
+ INIT_ID(encoding), \
927
+ INIT_ID(end), \
928
+ INIT_ID(end_col_offset), \
929
+ INIT_ID(end_lineno), \
930
+ INIT_ID(end_offset), \
931
+ INIT_ID(endpos), \
932
+ INIT_ID(entrypoint), \
933
+ INIT_ID(env), \
934
+ INIT_ID(errors), \
935
+ INIT_ID(event), \
936
+ INIT_ID(eventmask), \
937
+ INIT_ID(exc_type), \
938
+ INIT_ID(exc_value), \
939
+ INIT_ID(excepthook), \
940
+ INIT_ID(exception), \
941
+ INIT_ID(existing_file_name), \
942
+ INIT_ID(exp), \
943
+ INIT_ID(expression), \
944
+ INIT_ID(extend), \
945
+ INIT_ID(extra_tokens), \
946
+ INIT_ID(facility), \
947
+ INIT_ID(factory), \
948
+ INIT_ID(false), \
949
+ INIT_ID(family), \
950
+ INIT_ID(fanout), \
951
+ INIT_ID(fd), \
952
+ INIT_ID(fd2), \
953
+ INIT_ID(fdel), \
954
+ INIT_ID(fget), \
955
+ INIT_ID(fields), \
956
+ INIT_ID(file), \
957
+ INIT_ID(file_actions), \
958
+ INIT_ID(filename), \
959
+ INIT_ID(fileno), \
960
+ INIT_ID(filepath), \
961
+ INIT_ID(fillvalue), \
962
+ INIT_ID(filter), \
963
+ INIT_ID(filters), \
964
+ INIT_ID(final), \
965
+ INIT_ID(find_class), \
966
+ INIT_ID(fix_imports), \
967
+ INIT_ID(flags), \
968
+ INIT_ID(flush), \
969
+ INIT_ID(fold), \
970
+ INIT_ID(follow_symlinks), \
971
+ INIT_ID(format), \
972
+ INIT_ID(format_spec), \
973
+ INIT_ID(frame_buffer), \
974
+ INIT_ID(from_param), \
975
+ INIT_ID(fromlist), \
976
+ INIT_ID(fromtimestamp), \
977
+ INIT_ID(fromutc), \
978
+ INIT_ID(fset), \
979
+ INIT_ID(func), \
980
+ INIT_ID(future), \
981
+ INIT_ID(generation), \
982
+ INIT_ID(genexpr), \
983
+ INIT_ID(get), \
984
+ INIT_ID(get_debug), \
985
+ INIT_ID(get_event_loop), \
986
+ INIT_ID(get_loop), \
987
+ INIT_ID(get_source), \
988
+ INIT_ID(getattr), \
989
+ INIT_ID(getstate), \
990
+ INIT_ID(gid), \
991
+ INIT_ID(globals), \
992
+ INIT_ID(groupindex), \
993
+ INIT_ID(groups), \
994
+ INIT_ID(handle), \
995
+ INIT_ID(handle_seq), \
996
+ INIT_ID(has_location), \
997
+ INIT_ID(hash_name), \
998
+ INIT_ID(header), \
999
+ INIT_ID(headers), \
1000
+ INIT_ID(hi), \
1001
+ INIT_ID(hook), \
1002
+ INIT_ID(hour), \
1003
+ INIT_ID(id), \
1004
+ INIT_ID(ident), \
1005
+ INIT_ID(identity_hint), \
1006
+ INIT_ID(ignore), \
1007
+ INIT_ID(imag), \
1008
+ INIT_ID(importlib), \
1009
+ INIT_ID(in_fd), \
1010
+ INIT_ID(incoming), \
1011
+ INIT_ID(index), \
1012
+ INIT_ID(indexgroup), \
1013
+ INIT_ID(inf), \
1014
+ INIT_ID(infer_variance), \
1015
+ INIT_ID(inherit_handle), \
1016
+ INIT_ID(inheritable), \
1017
+ INIT_ID(initial), \
1018
+ INIT_ID(initial_bytes), \
1019
+ INIT_ID(initial_owner), \
1020
+ INIT_ID(initial_state), \
1021
+ INIT_ID(initial_value), \
1022
+ INIT_ID(initval), \
1023
+ INIT_ID(inner_size), \
1024
+ INIT_ID(input), \
1025
+ INIT_ID(insert_comments), \
1026
+ INIT_ID(insert_pis), \
1027
+ INIT_ID(instructions), \
1028
+ INIT_ID(intern), \
1029
+ INIT_ID(intersection), \
1030
+ INIT_ID(interval), \
1031
+ INIT_ID(io), \
1032
+ INIT_ID(is_compress), \
1033
+ INIT_ID(is_raw), \
1034
+ INIT_ID(is_running), \
1035
+ INIT_ID(is_struct), \
1036
+ INIT_ID(isatty), \
1037
+ INIT_ID(isinstance), \
1038
+ INIT_ID(isoformat), \
1039
+ INIT_ID(isolation_level), \
1040
+ INIT_ID(istext), \
1041
+ INIT_ID(item), \
1042
+ INIT_ID(items), \
1043
+ INIT_ID(iter), \
1044
+ INIT_ID(iterable), \
1045
+ INIT_ID(iterations), \
1046
+ INIT_ID(join), \
1047
+ INIT_ID(jump), \
1048
+ INIT_ID(keepends), \
1049
+ INIT_ID(key), \
1050
+ INIT_ID(keyfile), \
1051
+ INIT_ID(keys), \
1052
+ INIT_ID(kind), \
1053
+ INIT_ID(kw), \
1054
+ INIT_ID(kw1), \
1055
+ INIT_ID(kw2), \
1056
+ INIT_ID(kwdefaults), \
1057
+ INIT_ID(label), \
1058
+ INIT_ID(lambda), \
1059
+ INIT_ID(last), \
1060
+ INIT_ID(last_exc), \
1061
+ INIT_ID(last_node), \
1062
+ INIT_ID(last_traceback), \
1063
+ INIT_ID(last_type), \
1064
+ INIT_ID(last_value), \
1065
+ INIT_ID(latin1), \
1066
+ INIT_ID(leaf_size), \
1067
+ INIT_ID(len), \
1068
+ INIT_ID(length), \
1069
+ INIT_ID(level), \
1070
+ INIT_ID(limit), \
1071
+ INIT_ID(line), \
1072
+ INIT_ID(line_buffering), \
1073
+ INIT_ID(lineno), \
1074
+ INIT_ID(listcomp), \
1075
+ INIT_ID(little), \
1076
+ INIT_ID(lo), \
1077
+ INIT_ID(locale), \
1078
+ INIT_ID(locals), \
1079
+ INIT_ID(logoption), \
1080
+ INIT_ID(loop), \
1081
+ INIT_ID(manual_reset), \
1082
+ INIT_ID(mapping), \
1083
+ INIT_ID(match), \
1084
+ INIT_ID(max_length), \
1085
+ INIT_ID(maxdigits), \
1086
+ INIT_ID(maxevents), \
1087
+ INIT_ID(maxlen), \
1088
+ INIT_ID(maxmem), \
1089
+ INIT_ID(maxsplit), \
1090
+ INIT_ID(maxvalue), \
1091
+ INIT_ID(memLevel), \
1092
+ INIT_ID(memlimit), \
1093
+ INIT_ID(message), \
1094
+ INIT_ID(metaclass), \
1095
+ INIT_ID(metadata), \
1096
+ INIT_ID(method), \
1097
+ INIT_ID(microsecond), \
1098
+ INIT_ID(milliseconds), \
1099
+ INIT_ID(minute), \
1100
+ INIT_ID(mod), \
1101
+ INIT_ID(mode), \
1102
+ INIT_ID(module), \
1103
+ INIT_ID(module_globals), \
1104
+ INIT_ID(modules), \
1105
+ INIT_ID(month), \
1106
+ INIT_ID(mro), \
1107
+ INIT_ID(msg), \
1108
+ INIT_ID(mutex), \
1109
+ INIT_ID(mycmp), \
1110
+ INIT_ID(n_arg), \
1111
+ INIT_ID(n_fields), \
1112
+ INIT_ID(n_sequence_fields), \
1113
+ INIT_ID(n_unnamed_fields), \
1114
+ INIT_ID(name), \
1115
+ INIT_ID(name_from), \
1116
+ INIT_ID(namespace_separator), \
1117
+ INIT_ID(namespaces), \
1118
+ INIT_ID(narg), \
1119
+ INIT_ID(ndigits), \
1120
+ INIT_ID(nested), \
1121
+ INIT_ID(new_file_name), \
1122
+ INIT_ID(new_limit), \
1123
+ INIT_ID(newline), \
1124
+ INIT_ID(newlines), \
1125
+ INIT_ID(next), \
1126
+ INIT_ID(nlocals), \
1127
+ INIT_ID(node_depth), \
1128
+ INIT_ID(node_offset), \
1129
+ INIT_ID(ns), \
1130
+ INIT_ID(nstype), \
1131
+ INIT_ID(nt), \
1132
+ INIT_ID(null), \
1133
+ INIT_ID(number), \
1134
+ INIT_ID(obj), \
1135
+ INIT_ID(object), \
1136
+ INIT_ID(offset), \
1137
+ INIT_ID(offset_dst), \
1138
+ INIT_ID(offset_src), \
1139
+ INIT_ID(on_type_read), \
1140
+ INIT_ID(onceregistry), \
1141
+ INIT_ID(only_active_thread), \
1142
+ INIT_ID(only_keys), \
1143
+ INIT_ID(oparg), \
1144
+ INIT_ID(opcode), \
1145
+ INIT_ID(open), \
1146
+ INIT_ID(opener), \
1147
+ INIT_ID(operation), \
1148
+ INIT_ID(optimize), \
1149
+ INIT_ID(options), \
1150
+ INIT_ID(order), \
1151
+ INIT_ID(origin), \
1152
+ INIT_ID(out_fd), \
1153
+ INIT_ID(outgoing), \
1154
+ INIT_ID(outpath), \
1155
+ INIT_ID(overlapped), \
1156
+ INIT_ID(owner), \
1157
+ INIT_ID(pages), \
1158
+ INIT_ID(parameter), \
1159
+ INIT_ID(parent), \
1160
+ INIT_ID(password), \
1161
+ INIT_ID(path), \
1162
+ INIT_ID(pattern), \
1163
+ INIT_ID(peek), \
1164
+ INIT_ID(persistent_id), \
1165
+ INIT_ID(persistent_load), \
1166
+ INIT_ID(person), \
1167
+ INIT_ID(pi_factory), \
1168
+ INIT_ID(pid), \
1169
+ INIT_ID(policy), \
1170
+ INIT_ID(pos), \
1171
+ INIT_ID(pos1), \
1172
+ INIT_ID(pos2), \
1173
+ INIT_ID(posix), \
1174
+ INIT_ID(print_file_and_line), \
1175
+ INIT_ID(priority), \
1176
+ INIT_ID(progress), \
1177
+ INIT_ID(progress_handler), \
1178
+ INIT_ID(progress_routine), \
1179
+ INIT_ID(proto), \
1180
+ INIT_ID(protocol), \
1181
+ INIT_ID(ps1), \
1182
+ INIT_ID(ps2), \
1183
+ INIT_ID(query), \
1184
+ INIT_ID(quotetabs), \
1185
+ INIT_ID(raw), \
1186
+ INIT_ID(read), \
1187
+ INIT_ID(read1), \
1188
+ INIT_ID(readable), \
1189
+ INIT_ID(readall), \
1190
+ INIT_ID(readinto), \
1191
+ INIT_ID(readinto1), \
1192
+ INIT_ID(readline), \
1193
+ INIT_ID(readonly), \
1194
+ INIT_ID(real), \
1195
+ INIT_ID(reducer_override), \
1196
+ INIT_ID(registry), \
1197
+ INIT_ID(rel_tol), \
1198
+ INIT_ID(release), \
1199
+ INIT_ID(reload), \
1200
+ INIT_ID(repl), \
1201
+ INIT_ID(replace), \
1202
+ INIT_ID(reserved), \
1203
+ INIT_ID(reset), \
1204
+ INIT_ID(resetids), \
1205
+ INIT_ID(return), \
1206
+ INIT_ID(reverse), \
1207
+ INIT_ID(reversed), \
1208
+ INIT_ID(salt), \
1209
+ INIT_ID(sched_priority), \
1210
+ INIT_ID(scheduler), \
1211
+ INIT_ID(script), \
1212
+ INIT_ID(second), \
1213
+ INIT_ID(security_attributes), \
1214
+ INIT_ID(seek), \
1215
+ INIT_ID(seekable), \
1216
+ INIT_ID(selectors), \
1217
+ INIT_ID(self), \
1218
+ INIT_ID(send), \
1219
+ INIT_ID(sep), \
1220
+ INIT_ID(sequence), \
1221
+ INIT_ID(server_hostname), \
1222
+ INIT_ID(server_side), \
1223
+ INIT_ID(session), \
1224
+ INIT_ID(setcomp), \
1225
+ INIT_ID(setpgroup), \
1226
+ INIT_ID(setsid), \
1227
+ INIT_ID(setsigdef), \
1228
+ INIT_ID(setsigmask), \
1229
+ INIT_ID(setstate), \
1230
+ INIT_ID(shape), \
1231
+ INIT_ID(show_cmd), \
1232
+ INIT_ID(signed), \
1233
+ INIT_ID(size), \
1234
+ INIT_ID(sizehint), \
1235
+ INIT_ID(skip_file_prefixes), \
1236
+ INIT_ID(sleep), \
1237
+ INIT_ID(sock), \
1238
+ INIT_ID(sort), \
1239
+ INIT_ID(source), \
1240
+ INIT_ID(source_traceback), \
1241
+ INIT_ID(spam), \
1242
+ INIT_ID(src), \
1243
+ INIT_ID(src_dir_fd), \
1244
+ INIT_ID(stacklevel), \
1245
+ INIT_ID(start), \
1246
+ INIT_ID(statement), \
1247
+ INIT_ID(status), \
1248
+ INIT_ID(stderr), \
1249
+ INIT_ID(stdin), \
1250
+ INIT_ID(stdout), \
1251
+ INIT_ID(step), \
1252
+ INIT_ID(steps), \
1253
+ INIT_ID(store_name), \
1254
+ INIT_ID(strategy), \
1255
+ INIT_ID(strftime), \
1256
+ INIT_ID(strict), \
1257
+ INIT_ID(strict_mode), \
1258
+ INIT_ID(string), \
1259
+ INIT_ID(sub_key), \
1260
+ INIT_ID(subcalls), \
1261
+ INIT_ID(symmetric_difference_update), \
1262
+ INIT_ID(tabsize), \
1263
+ INIT_ID(tag), \
1264
+ INIT_ID(target), \
1265
+ INIT_ID(target_is_directory), \
1266
+ INIT_ID(task), \
1267
+ INIT_ID(tb_frame), \
1268
+ INIT_ID(tb_lasti), \
1269
+ INIT_ID(tb_lineno), \
1270
+ INIT_ID(tb_next), \
1271
+ INIT_ID(tell), \
1272
+ INIT_ID(template), \
1273
+ INIT_ID(term), \
1274
+ INIT_ID(text), \
1275
+ INIT_ID(threading), \
1276
+ INIT_ID(throw), \
1277
+ INIT_ID(timeout), \
1278
+ INIT_ID(timer), \
1279
+ INIT_ID(times), \
1280
+ INIT_ID(timetuple), \
1281
+ INIT_ID(timeunit), \
1282
+ INIT_ID(top), \
1283
+ INIT_ID(trace_callback), \
1284
+ INIT_ID(traceback), \
1285
+ INIT_ID(trailers), \
1286
+ INIT_ID(translate), \
1287
+ INIT_ID(true), \
1288
+ INIT_ID(truncate), \
1289
+ INIT_ID(twice), \
1290
+ INIT_ID(txt), \
1291
+ INIT_ID(type), \
1292
+ INIT_ID(type_params), \
1293
+ INIT_ID(tz), \
1294
+ INIT_ID(tzinfo), \
1295
+ INIT_ID(tzname), \
1296
+ INIT_ID(uid), \
1297
+ INIT_ID(unlink), \
1298
+ INIT_ID(unraisablehook), \
1299
+ INIT_ID(uri), \
1300
+ INIT_ID(usedforsecurity), \
1301
+ INIT_ID(value), \
1302
+ INIT_ID(values), \
1303
+ INIT_ID(version), \
1304
+ INIT_ID(volume), \
1305
+ INIT_ID(wait_all), \
1306
+ INIT_ID(warn_on_full_buffer), \
1307
+ INIT_ID(warnings), \
1308
+ INIT_ID(warnoptions), \
1309
+ INIT_ID(wbits), \
1310
+ INIT_ID(week), \
1311
+ INIT_ID(weekday), \
1312
+ INIT_ID(which), \
1313
+ INIT_ID(who), \
1314
+ INIT_ID(withdata), \
1315
+ INIT_ID(writable), \
1316
+ INIT_ID(write), \
1317
+ INIT_ID(write_through), \
1318
+ INIT_ID(year), \
1319
+ INIT_ID(zdict), \
1320
+ INIT_ID(zstd_dict), \
1321
+ }
1322
+
1323
+ #define _Py_str_ascii_INIT { \
1324
+ _PyASCIIObject_INIT("\x00"), \
1325
+ _PyASCIIObject_INIT("\x01"), \
1326
+ _PyASCIIObject_INIT("\x02"), \
1327
+ _PyASCIIObject_INIT("\x03"), \
1328
+ _PyASCIIObject_INIT("\x04"), \
1329
+ _PyASCIIObject_INIT("\x05"), \
1330
+ _PyASCIIObject_INIT("\x06"), \
1331
+ _PyASCIIObject_INIT("\x07"), \
1332
+ _PyASCIIObject_INIT("\x08"), \
1333
+ _PyASCIIObject_INIT("\x09"), \
1334
+ _PyASCIIObject_INIT("\x0a"), \
1335
+ _PyASCIIObject_INIT("\x0b"), \
1336
+ _PyASCIIObject_INIT("\x0c"), \
1337
+ _PyASCIIObject_INIT("\x0d"), \
1338
+ _PyASCIIObject_INIT("\x0e"), \
1339
+ _PyASCIIObject_INIT("\x0f"), \
1340
+ _PyASCIIObject_INIT("\x10"), \
1341
+ _PyASCIIObject_INIT("\x11"), \
1342
+ _PyASCIIObject_INIT("\x12"), \
1343
+ _PyASCIIObject_INIT("\x13"), \
1344
+ _PyASCIIObject_INIT("\x14"), \
1345
+ _PyASCIIObject_INIT("\x15"), \
1346
+ _PyASCIIObject_INIT("\x16"), \
1347
+ _PyASCIIObject_INIT("\x17"), \
1348
+ _PyASCIIObject_INIT("\x18"), \
1349
+ _PyASCIIObject_INIT("\x19"), \
1350
+ _PyASCIIObject_INIT("\x1a"), \
1351
+ _PyASCIIObject_INIT("\x1b"), \
1352
+ _PyASCIIObject_INIT("\x1c"), \
1353
+ _PyASCIIObject_INIT("\x1d"), \
1354
+ _PyASCIIObject_INIT("\x1e"), \
1355
+ _PyASCIIObject_INIT("\x1f"), \
1356
+ _PyASCIIObject_INIT("\x20"), \
1357
+ _PyASCIIObject_INIT("\x21"), \
1358
+ _PyASCIIObject_INIT("\x22"), \
1359
+ _PyASCIIObject_INIT("\x23"), \
1360
+ _PyASCIIObject_INIT("\x24"), \
1361
+ _PyASCIIObject_INIT("\x25"), \
1362
+ _PyASCIIObject_INIT("\x26"), \
1363
+ _PyASCIIObject_INIT("\x27"), \
1364
+ _PyASCIIObject_INIT("\x28"), \
1365
+ _PyASCIIObject_INIT("\x29"), \
1366
+ _PyASCIIObject_INIT("\x2a"), \
1367
+ _PyASCIIObject_INIT("\x2b"), \
1368
+ _PyASCIIObject_INIT("\x2c"), \
1369
+ _PyASCIIObject_INIT("\x2d"), \
1370
+ _PyASCIIObject_INIT("\x2e"), \
1371
+ _PyASCIIObject_INIT("\x2f"), \
1372
+ _PyASCIIObject_INIT("\x30"), \
1373
+ _PyASCIIObject_INIT("\x31"), \
1374
+ _PyASCIIObject_INIT("\x32"), \
1375
+ _PyASCIIObject_INIT("\x33"), \
1376
+ _PyASCIIObject_INIT("\x34"), \
1377
+ _PyASCIIObject_INIT("\x35"), \
1378
+ _PyASCIIObject_INIT("\x36"), \
1379
+ _PyASCIIObject_INIT("\x37"), \
1380
+ _PyASCIIObject_INIT("\x38"), \
1381
+ _PyASCIIObject_INIT("\x39"), \
1382
+ _PyASCIIObject_INIT("\x3a"), \
1383
+ _PyASCIIObject_INIT("\x3b"), \
1384
+ _PyASCIIObject_INIT("\x3c"), \
1385
+ _PyASCIIObject_INIT("\x3d"), \
1386
+ _PyASCIIObject_INIT("\x3e"), \
1387
+ _PyASCIIObject_INIT("\x3f"), \
1388
+ _PyASCIIObject_INIT("\x40"), \
1389
+ _PyASCIIObject_INIT("\x41"), \
1390
+ _PyASCIIObject_INIT("\x42"), \
1391
+ _PyASCIIObject_INIT("\x43"), \
1392
+ _PyASCIIObject_INIT("\x44"), \
1393
+ _PyASCIIObject_INIT("\x45"), \
1394
+ _PyASCIIObject_INIT("\x46"), \
1395
+ _PyASCIIObject_INIT("\x47"), \
1396
+ _PyASCIIObject_INIT("\x48"), \
1397
+ _PyASCIIObject_INIT("\x49"), \
1398
+ _PyASCIIObject_INIT("\x4a"), \
1399
+ _PyASCIIObject_INIT("\x4b"), \
1400
+ _PyASCIIObject_INIT("\x4c"), \
1401
+ _PyASCIIObject_INIT("\x4d"), \
1402
+ _PyASCIIObject_INIT("\x4e"), \
1403
+ _PyASCIIObject_INIT("\x4f"), \
1404
+ _PyASCIIObject_INIT("\x50"), \
1405
+ _PyASCIIObject_INIT("\x51"), \
1406
+ _PyASCIIObject_INIT("\x52"), \
1407
+ _PyASCIIObject_INIT("\x53"), \
1408
+ _PyASCIIObject_INIT("\x54"), \
1409
+ _PyASCIIObject_INIT("\x55"), \
1410
+ _PyASCIIObject_INIT("\x56"), \
1411
+ _PyASCIIObject_INIT("\x57"), \
1412
+ _PyASCIIObject_INIT("\x58"), \
1413
+ _PyASCIIObject_INIT("\x59"), \
1414
+ _PyASCIIObject_INIT("\x5a"), \
1415
+ _PyASCIIObject_INIT("\x5b"), \
1416
+ _PyASCIIObject_INIT("\x5c"), \
1417
+ _PyASCIIObject_INIT("\x5d"), \
1418
+ _PyASCIIObject_INIT("\x5e"), \
1419
+ _PyASCIIObject_INIT("\x5f"), \
1420
+ _PyASCIIObject_INIT("\x60"), \
1421
+ _PyASCIIObject_INIT("\x61"), \
1422
+ _PyASCIIObject_INIT("\x62"), \
1423
+ _PyASCIIObject_INIT("\x63"), \
1424
+ _PyASCIIObject_INIT("\x64"), \
1425
+ _PyASCIIObject_INIT("\x65"), \
1426
+ _PyASCIIObject_INIT("\x66"), \
1427
+ _PyASCIIObject_INIT("\x67"), \
1428
+ _PyASCIIObject_INIT("\x68"), \
1429
+ _PyASCIIObject_INIT("\x69"), \
1430
+ _PyASCIIObject_INIT("\x6a"), \
1431
+ _PyASCIIObject_INIT("\x6b"), \
1432
+ _PyASCIIObject_INIT("\x6c"), \
1433
+ _PyASCIIObject_INIT("\x6d"), \
1434
+ _PyASCIIObject_INIT("\x6e"), \
1435
+ _PyASCIIObject_INIT("\x6f"), \
1436
+ _PyASCIIObject_INIT("\x70"), \
1437
+ _PyASCIIObject_INIT("\x71"), \
1438
+ _PyASCIIObject_INIT("\x72"), \
1439
+ _PyASCIIObject_INIT("\x73"), \
1440
+ _PyASCIIObject_INIT("\x74"), \
1441
+ _PyASCIIObject_INIT("\x75"), \
1442
+ _PyASCIIObject_INIT("\x76"), \
1443
+ _PyASCIIObject_INIT("\x77"), \
1444
+ _PyASCIIObject_INIT("\x78"), \
1445
+ _PyASCIIObject_INIT("\x79"), \
1446
+ _PyASCIIObject_INIT("\x7a"), \
1447
+ _PyASCIIObject_INIT("\x7b"), \
1448
+ _PyASCIIObject_INIT("\x7c"), \
1449
+ _PyASCIIObject_INIT("\x7d"), \
1450
+ _PyASCIIObject_INIT("\x7e"), \
1451
+ _PyASCIIObject_INIT("\x7f"), \
1452
+ }
1453
+
1454
+ #define _Py_str_latin1_INIT { \
1455
+ _PyUnicode_LATIN1_INIT("\x80", "\xc2\x80"), \
1456
+ _PyUnicode_LATIN1_INIT("\x81", "\xc2\x81"), \
1457
+ _PyUnicode_LATIN1_INIT("\x82", "\xc2\x82"), \
1458
+ _PyUnicode_LATIN1_INIT("\x83", "\xc2\x83"), \
1459
+ _PyUnicode_LATIN1_INIT("\x84", "\xc2\x84"), \
1460
+ _PyUnicode_LATIN1_INIT("\x85", "\xc2\x85"), \
1461
+ _PyUnicode_LATIN1_INIT("\x86", "\xc2\x86"), \
1462
+ _PyUnicode_LATIN1_INIT("\x87", "\xc2\x87"), \
1463
+ _PyUnicode_LATIN1_INIT("\x88", "\xc2\x88"), \
1464
+ _PyUnicode_LATIN1_INIT("\x89", "\xc2\x89"), \
1465
+ _PyUnicode_LATIN1_INIT("\x8a", "\xc2\x8a"), \
1466
+ _PyUnicode_LATIN1_INIT("\x8b", "\xc2\x8b"), \
1467
+ _PyUnicode_LATIN1_INIT("\x8c", "\xc2\x8c"), \
1468
+ _PyUnicode_LATIN1_INIT("\x8d", "\xc2\x8d"), \
1469
+ _PyUnicode_LATIN1_INIT("\x8e", "\xc2\x8e"), \
1470
+ _PyUnicode_LATIN1_INIT("\x8f", "\xc2\x8f"), \
1471
+ _PyUnicode_LATIN1_INIT("\x90", "\xc2\x90"), \
1472
+ _PyUnicode_LATIN1_INIT("\x91", "\xc2\x91"), \
1473
+ _PyUnicode_LATIN1_INIT("\x92", "\xc2\x92"), \
1474
+ _PyUnicode_LATIN1_INIT("\x93", "\xc2\x93"), \
1475
+ _PyUnicode_LATIN1_INIT("\x94", "\xc2\x94"), \
1476
+ _PyUnicode_LATIN1_INIT("\x95", "\xc2\x95"), \
1477
+ _PyUnicode_LATIN1_INIT("\x96", "\xc2\x96"), \
1478
+ _PyUnicode_LATIN1_INIT("\x97", "\xc2\x97"), \
1479
+ _PyUnicode_LATIN1_INIT("\x98", "\xc2\x98"), \
1480
+ _PyUnicode_LATIN1_INIT("\x99", "\xc2\x99"), \
1481
+ _PyUnicode_LATIN1_INIT("\x9a", "\xc2\x9a"), \
1482
+ _PyUnicode_LATIN1_INIT("\x9b", "\xc2\x9b"), \
1483
+ _PyUnicode_LATIN1_INIT("\x9c", "\xc2\x9c"), \
1484
+ _PyUnicode_LATIN1_INIT("\x9d", "\xc2\x9d"), \
1485
+ _PyUnicode_LATIN1_INIT("\x9e", "\xc2\x9e"), \
1486
+ _PyUnicode_LATIN1_INIT("\x9f", "\xc2\x9f"), \
1487
+ _PyUnicode_LATIN1_INIT("\xa0", "\xc2\xa0"), \
1488
+ _PyUnicode_LATIN1_INIT("\xa1", "\xc2\xa1"), \
1489
+ _PyUnicode_LATIN1_INIT("\xa2", "\xc2\xa2"), \
1490
+ _PyUnicode_LATIN1_INIT("\xa3", "\xc2\xa3"), \
1491
+ _PyUnicode_LATIN1_INIT("\xa4", "\xc2\xa4"), \
1492
+ _PyUnicode_LATIN1_INIT("\xa5", "\xc2\xa5"), \
1493
+ _PyUnicode_LATIN1_INIT("\xa6", "\xc2\xa6"), \
1494
+ _PyUnicode_LATIN1_INIT("\xa7", "\xc2\xa7"), \
1495
+ _PyUnicode_LATIN1_INIT("\xa8", "\xc2\xa8"), \
1496
+ _PyUnicode_LATIN1_INIT("\xa9", "\xc2\xa9"), \
1497
+ _PyUnicode_LATIN1_INIT("\xaa", "\xc2\xaa"), \
1498
+ _PyUnicode_LATIN1_INIT("\xab", "\xc2\xab"), \
1499
+ _PyUnicode_LATIN1_INIT("\xac", "\xc2\xac"), \
1500
+ _PyUnicode_LATIN1_INIT("\xad", "\xc2\xad"), \
1501
+ _PyUnicode_LATIN1_INIT("\xae", "\xc2\xae"), \
1502
+ _PyUnicode_LATIN1_INIT("\xaf", "\xc2\xaf"), \
1503
+ _PyUnicode_LATIN1_INIT("\xb0", "\xc2\xb0"), \
1504
+ _PyUnicode_LATIN1_INIT("\xb1", "\xc2\xb1"), \
1505
+ _PyUnicode_LATIN1_INIT("\xb2", "\xc2\xb2"), \
1506
+ _PyUnicode_LATIN1_INIT("\xb3", "\xc2\xb3"), \
1507
+ _PyUnicode_LATIN1_INIT("\xb4", "\xc2\xb4"), \
1508
+ _PyUnicode_LATIN1_INIT("\xb5", "\xc2\xb5"), \
1509
+ _PyUnicode_LATIN1_INIT("\xb6", "\xc2\xb6"), \
1510
+ _PyUnicode_LATIN1_INIT("\xb7", "\xc2\xb7"), \
1511
+ _PyUnicode_LATIN1_INIT("\xb8", "\xc2\xb8"), \
1512
+ _PyUnicode_LATIN1_INIT("\xb9", "\xc2\xb9"), \
1513
+ _PyUnicode_LATIN1_INIT("\xba", "\xc2\xba"), \
1514
+ _PyUnicode_LATIN1_INIT("\xbb", "\xc2\xbb"), \
1515
+ _PyUnicode_LATIN1_INIT("\xbc", "\xc2\xbc"), \
1516
+ _PyUnicode_LATIN1_INIT("\xbd", "\xc2\xbd"), \
1517
+ _PyUnicode_LATIN1_INIT("\xbe", "\xc2\xbe"), \
1518
+ _PyUnicode_LATIN1_INIT("\xbf", "\xc2\xbf"), \
1519
+ _PyUnicode_LATIN1_INIT("\xc0", "\xc3\x80"), \
1520
+ _PyUnicode_LATIN1_INIT("\xc1", "\xc3\x81"), \
1521
+ _PyUnicode_LATIN1_INIT("\xc2", "\xc3\x82"), \
1522
+ _PyUnicode_LATIN1_INIT("\xc3", "\xc3\x83"), \
1523
+ _PyUnicode_LATIN1_INIT("\xc4", "\xc3\x84"), \
1524
+ _PyUnicode_LATIN1_INIT("\xc5", "\xc3\x85"), \
1525
+ _PyUnicode_LATIN1_INIT("\xc6", "\xc3\x86"), \
1526
+ _PyUnicode_LATIN1_INIT("\xc7", "\xc3\x87"), \
1527
+ _PyUnicode_LATIN1_INIT("\xc8", "\xc3\x88"), \
1528
+ _PyUnicode_LATIN1_INIT("\xc9", "\xc3\x89"), \
1529
+ _PyUnicode_LATIN1_INIT("\xca", "\xc3\x8a"), \
1530
+ _PyUnicode_LATIN1_INIT("\xcb", "\xc3\x8b"), \
1531
+ _PyUnicode_LATIN1_INIT("\xcc", "\xc3\x8c"), \
1532
+ _PyUnicode_LATIN1_INIT("\xcd", "\xc3\x8d"), \
1533
+ _PyUnicode_LATIN1_INIT("\xce", "\xc3\x8e"), \
1534
+ _PyUnicode_LATIN1_INIT("\xcf", "\xc3\x8f"), \
1535
+ _PyUnicode_LATIN1_INIT("\xd0", "\xc3\x90"), \
1536
+ _PyUnicode_LATIN1_INIT("\xd1", "\xc3\x91"), \
1537
+ _PyUnicode_LATIN1_INIT("\xd2", "\xc3\x92"), \
1538
+ _PyUnicode_LATIN1_INIT("\xd3", "\xc3\x93"), \
1539
+ _PyUnicode_LATIN1_INIT("\xd4", "\xc3\x94"), \
1540
+ _PyUnicode_LATIN1_INIT("\xd5", "\xc3\x95"), \
1541
+ _PyUnicode_LATIN1_INIT("\xd6", "\xc3\x96"), \
1542
+ _PyUnicode_LATIN1_INIT("\xd7", "\xc3\x97"), \
1543
+ _PyUnicode_LATIN1_INIT("\xd8", "\xc3\x98"), \
1544
+ _PyUnicode_LATIN1_INIT("\xd9", "\xc3\x99"), \
1545
+ _PyUnicode_LATIN1_INIT("\xda", "\xc3\x9a"), \
1546
+ _PyUnicode_LATIN1_INIT("\xdb", "\xc3\x9b"), \
1547
+ _PyUnicode_LATIN1_INIT("\xdc", "\xc3\x9c"), \
1548
+ _PyUnicode_LATIN1_INIT("\xdd", "\xc3\x9d"), \
1549
+ _PyUnicode_LATIN1_INIT("\xde", "\xc3\x9e"), \
1550
+ _PyUnicode_LATIN1_INIT("\xdf", "\xc3\x9f"), \
1551
+ _PyUnicode_LATIN1_INIT("\xe0", "\xc3\xa0"), \
1552
+ _PyUnicode_LATIN1_INIT("\xe1", "\xc3\xa1"), \
1553
+ _PyUnicode_LATIN1_INIT("\xe2", "\xc3\xa2"), \
1554
+ _PyUnicode_LATIN1_INIT("\xe3", "\xc3\xa3"), \
1555
+ _PyUnicode_LATIN1_INIT("\xe4", "\xc3\xa4"), \
1556
+ _PyUnicode_LATIN1_INIT("\xe5", "\xc3\xa5"), \
1557
+ _PyUnicode_LATIN1_INIT("\xe6", "\xc3\xa6"), \
1558
+ _PyUnicode_LATIN1_INIT("\xe7", "\xc3\xa7"), \
1559
+ _PyUnicode_LATIN1_INIT("\xe8", "\xc3\xa8"), \
1560
+ _PyUnicode_LATIN1_INIT("\xe9", "\xc3\xa9"), \
1561
+ _PyUnicode_LATIN1_INIT("\xea", "\xc3\xaa"), \
1562
+ _PyUnicode_LATIN1_INIT("\xeb", "\xc3\xab"), \
1563
+ _PyUnicode_LATIN1_INIT("\xec", "\xc3\xac"), \
1564
+ _PyUnicode_LATIN1_INIT("\xed", "\xc3\xad"), \
1565
+ _PyUnicode_LATIN1_INIT("\xee", "\xc3\xae"), \
1566
+ _PyUnicode_LATIN1_INIT("\xef", "\xc3\xaf"), \
1567
+ _PyUnicode_LATIN1_INIT("\xf0", "\xc3\xb0"), \
1568
+ _PyUnicode_LATIN1_INIT("\xf1", "\xc3\xb1"), \
1569
+ _PyUnicode_LATIN1_INIT("\xf2", "\xc3\xb2"), \
1570
+ _PyUnicode_LATIN1_INIT("\xf3", "\xc3\xb3"), \
1571
+ _PyUnicode_LATIN1_INIT("\xf4", "\xc3\xb4"), \
1572
+ _PyUnicode_LATIN1_INIT("\xf5", "\xc3\xb5"), \
1573
+ _PyUnicode_LATIN1_INIT("\xf6", "\xc3\xb6"), \
1574
+ _PyUnicode_LATIN1_INIT("\xf7", "\xc3\xb7"), \
1575
+ _PyUnicode_LATIN1_INIT("\xf8", "\xc3\xb8"), \
1576
+ _PyUnicode_LATIN1_INIT("\xf9", "\xc3\xb9"), \
1577
+ _PyUnicode_LATIN1_INIT("\xfa", "\xc3\xba"), \
1578
+ _PyUnicode_LATIN1_INIT("\xfb", "\xc3\xbb"), \
1579
+ _PyUnicode_LATIN1_INIT("\xfc", "\xc3\xbc"), \
1580
+ _PyUnicode_LATIN1_INIT("\xfd", "\xc3\xbd"), \
1581
+ _PyUnicode_LATIN1_INIT("\xfe", "\xc3\xbe"), \
1582
+ _PyUnicode_LATIN1_INIT("\xff", "\xc3\xbf"), \
1583
+ }
1584
+ /* End auto-generated code */
1585
+
1586
+ #ifdef __cplusplus
1587
+ }
1588
+ #endif
1589
+ #endif /* !Py_INTERNAL_RUNTIME_INIT_GENERATED_H */