pytron-kit 0.3.12__py3-none-win_amd64.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.pyd +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.exe +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,854 @@
1
+ #ifndef Py_INTERNAL_GLOBAL_STRINGS_H
2
+ #define Py_INTERNAL_GLOBAL_STRINGS_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_global_objects.h" // struct _Py_SINGLETON
12
+
13
+ // The data structure & init here are inspired by Tools/build/deepfreeze.py.
14
+
15
+ // All field names generated by ASCII_STR() have a common prefix,
16
+ // to help avoid collisions with keywords, macros, etc.
17
+
18
+ #define STRUCT_FOR_ASCII_STR(LITERAL) \
19
+ struct { \
20
+ PyASCIIObject _ascii; \
21
+ uint8_t _data[sizeof(LITERAL)]; \
22
+ }
23
+ #define STRUCT_FOR_STR(NAME, LITERAL) \
24
+ STRUCT_FOR_ASCII_STR(LITERAL) _py_ ## NAME;
25
+ #define STRUCT_FOR_ID(NAME) \
26
+ STRUCT_FOR_ASCII_STR(#NAME) _py_ ## NAME;
27
+
28
+ // XXX Order by frequency of use?
29
+
30
+ /* The following is auto-generated by Tools/build/generate_global_objects.py. */
31
+ struct _Py_global_strings {
32
+ struct {
33
+ STRUCT_FOR_STR(anon_dictcomp, "<dictcomp>")
34
+ STRUCT_FOR_STR(anon_genexpr, "<genexpr>")
35
+ STRUCT_FOR_STR(anon_lambda, "<lambda>")
36
+ STRUCT_FOR_STR(anon_listcomp, "<listcomp>")
37
+ STRUCT_FOR_STR(anon_module, "<module>")
38
+ STRUCT_FOR_STR(anon_null, "<NULL>")
39
+ STRUCT_FOR_STR(anon_setcomp, "<setcomp>")
40
+ STRUCT_FOR_STR(anon_string, "<string>")
41
+ STRUCT_FOR_STR(anon_unknown, "<unknown>")
42
+ STRUCT_FOR_STR(dbl_close_br, "}}")
43
+ STRUCT_FOR_STR(dbl_open_br, "{{")
44
+ STRUCT_FOR_STR(dbl_percent, "%%")
45
+ STRUCT_FOR_STR(defaults, ".defaults")
46
+ STRUCT_FOR_STR(dot_locals, ".<locals>")
47
+ STRUCT_FOR_STR(empty, "")
48
+ STRUCT_FOR_STR(format, ".format")
49
+ STRUCT_FOR_STR(generic_base, ".generic_base")
50
+ STRUCT_FOR_STR(json_decoder, "json.decoder")
51
+ STRUCT_FOR_STR(kwdefaults, ".kwdefaults")
52
+ STRUCT_FOR_STR(list_err, "list index out of range")
53
+ STRUCT_FOR_STR(str_replace_inf, "1e309")
54
+ STRUCT_FOR_STR(type_params, ".type_params")
55
+ STRUCT_FOR_STR(utf_8, "utf-8")
56
+ } literals;
57
+
58
+ struct {
59
+ STRUCT_FOR_ID(CANCELLED)
60
+ STRUCT_FOR_ID(FINISHED)
61
+ STRUCT_FOR_ID(False)
62
+ STRUCT_FOR_ID(JSONDecodeError)
63
+ STRUCT_FOR_ID(PENDING)
64
+ STRUCT_FOR_ID(Py_Repr)
65
+ STRUCT_FOR_ID(TextIOWrapper)
66
+ STRUCT_FOR_ID(True)
67
+ STRUCT_FOR_ID(WarningMessage)
68
+ STRUCT_FOR_ID(_WindowsConsoleIO)
69
+ STRUCT_FOR_ID(__IOBase_closed)
70
+ STRUCT_FOR_ID(__abc_tpflags__)
71
+ STRUCT_FOR_ID(__abs__)
72
+ STRUCT_FOR_ID(__abstractmethods__)
73
+ STRUCT_FOR_ID(__add__)
74
+ STRUCT_FOR_ID(__aenter__)
75
+ STRUCT_FOR_ID(__aexit__)
76
+ STRUCT_FOR_ID(__aiter__)
77
+ STRUCT_FOR_ID(__all__)
78
+ STRUCT_FOR_ID(__and__)
79
+ STRUCT_FOR_ID(__anext__)
80
+ STRUCT_FOR_ID(__annotate__)
81
+ STRUCT_FOR_ID(__annotate_func__)
82
+ STRUCT_FOR_ID(__annotations__)
83
+ STRUCT_FOR_ID(__annotations_cache__)
84
+ STRUCT_FOR_ID(__args__)
85
+ STRUCT_FOR_ID(__await__)
86
+ STRUCT_FOR_ID(__bases__)
87
+ STRUCT_FOR_ID(__bool__)
88
+ STRUCT_FOR_ID(__buffer__)
89
+ STRUCT_FOR_ID(__build_class__)
90
+ STRUCT_FOR_ID(__builtins__)
91
+ STRUCT_FOR_ID(__bytes__)
92
+ STRUCT_FOR_ID(__call__)
93
+ STRUCT_FOR_ID(__cantrace__)
94
+ STRUCT_FOR_ID(__ceil__)
95
+ STRUCT_FOR_ID(__class__)
96
+ STRUCT_FOR_ID(__class_getitem__)
97
+ STRUCT_FOR_ID(__classcell__)
98
+ STRUCT_FOR_ID(__classdict__)
99
+ STRUCT_FOR_ID(__classdictcell__)
100
+ STRUCT_FOR_ID(__complex__)
101
+ STRUCT_FOR_ID(__conditional_annotations__)
102
+ STRUCT_FOR_ID(__contains__)
103
+ STRUCT_FOR_ID(__ctypes_from_outparam__)
104
+ STRUCT_FOR_ID(__del__)
105
+ STRUCT_FOR_ID(__delattr__)
106
+ STRUCT_FOR_ID(__delete__)
107
+ STRUCT_FOR_ID(__delitem__)
108
+ STRUCT_FOR_ID(__dict__)
109
+ STRUCT_FOR_ID(__dictoffset__)
110
+ STRUCT_FOR_ID(__dir__)
111
+ STRUCT_FOR_ID(__divmod__)
112
+ STRUCT_FOR_ID(__doc__)
113
+ STRUCT_FOR_ID(__enter__)
114
+ STRUCT_FOR_ID(__eq__)
115
+ STRUCT_FOR_ID(__exit__)
116
+ STRUCT_FOR_ID(__file__)
117
+ STRUCT_FOR_ID(__firstlineno__)
118
+ STRUCT_FOR_ID(__float__)
119
+ STRUCT_FOR_ID(__floor__)
120
+ STRUCT_FOR_ID(__floordiv__)
121
+ STRUCT_FOR_ID(__format__)
122
+ STRUCT_FOR_ID(__fspath__)
123
+ STRUCT_FOR_ID(__ge__)
124
+ STRUCT_FOR_ID(__get__)
125
+ STRUCT_FOR_ID(__getattr__)
126
+ STRUCT_FOR_ID(__getattribute__)
127
+ STRUCT_FOR_ID(__getinitargs__)
128
+ STRUCT_FOR_ID(__getitem__)
129
+ STRUCT_FOR_ID(__getnewargs__)
130
+ STRUCT_FOR_ID(__getnewargs_ex__)
131
+ STRUCT_FOR_ID(__getstate__)
132
+ STRUCT_FOR_ID(__gt__)
133
+ STRUCT_FOR_ID(__hash__)
134
+ STRUCT_FOR_ID(__iadd__)
135
+ STRUCT_FOR_ID(__iand__)
136
+ STRUCT_FOR_ID(__ifloordiv__)
137
+ STRUCT_FOR_ID(__ilshift__)
138
+ STRUCT_FOR_ID(__imatmul__)
139
+ STRUCT_FOR_ID(__imod__)
140
+ STRUCT_FOR_ID(__import__)
141
+ STRUCT_FOR_ID(__imul__)
142
+ STRUCT_FOR_ID(__index__)
143
+ STRUCT_FOR_ID(__init__)
144
+ STRUCT_FOR_ID(__init_subclass__)
145
+ STRUCT_FOR_ID(__instancecheck__)
146
+ STRUCT_FOR_ID(__int__)
147
+ STRUCT_FOR_ID(__invert__)
148
+ STRUCT_FOR_ID(__ior__)
149
+ STRUCT_FOR_ID(__ipow__)
150
+ STRUCT_FOR_ID(__irshift__)
151
+ STRUCT_FOR_ID(__isabstractmethod__)
152
+ STRUCT_FOR_ID(__isub__)
153
+ STRUCT_FOR_ID(__iter__)
154
+ STRUCT_FOR_ID(__itruediv__)
155
+ STRUCT_FOR_ID(__ixor__)
156
+ STRUCT_FOR_ID(__le__)
157
+ STRUCT_FOR_ID(__len__)
158
+ STRUCT_FOR_ID(__length_hint__)
159
+ STRUCT_FOR_ID(__lltrace__)
160
+ STRUCT_FOR_ID(__loader__)
161
+ STRUCT_FOR_ID(__lshift__)
162
+ STRUCT_FOR_ID(__lt__)
163
+ STRUCT_FOR_ID(__main__)
164
+ STRUCT_FOR_ID(__match_args__)
165
+ STRUCT_FOR_ID(__matmul__)
166
+ STRUCT_FOR_ID(__missing__)
167
+ STRUCT_FOR_ID(__mod__)
168
+ STRUCT_FOR_ID(__module__)
169
+ STRUCT_FOR_ID(__mro_entries__)
170
+ STRUCT_FOR_ID(__mul__)
171
+ STRUCT_FOR_ID(__name__)
172
+ STRUCT_FOR_ID(__ne__)
173
+ STRUCT_FOR_ID(__neg__)
174
+ STRUCT_FOR_ID(__new__)
175
+ STRUCT_FOR_ID(__newobj__)
176
+ STRUCT_FOR_ID(__newobj_ex__)
177
+ STRUCT_FOR_ID(__next__)
178
+ STRUCT_FOR_ID(__notes__)
179
+ STRUCT_FOR_ID(__or__)
180
+ STRUCT_FOR_ID(__orig_class__)
181
+ STRUCT_FOR_ID(__origin__)
182
+ STRUCT_FOR_ID(__package__)
183
+ STRUCT_FOR_ID(__parameters__)
184
+ STRUCT_FOR_ID(__path__)
185
+ STRUCT_FOR_ID(__pos__)
186
+ STRUCT_FOR_ID(__pow__)
187
+ STRUCT_FOR_ID(__prepare__)
188
+ STRUCT_FOR_ID(__qualname__)
189
+ STRUCT_FOR_ID(__radd__)
190
+ STRUCT_FOR_ID(__rand__)
191
+ STRUCT_FOR_ID(__rdivmod__)
192
+ STRUCT_FOR_ID(__reduce__)
193
+ STRUCT_FOR_ID(__reduce_ex__)
194
+ STRUCT_FOR_ID(__release_buffer__)
195
+ STRUCT_FOR_ID(__repr__)
196
+ STRUCT_FOR_ID(__reversed__)
197
+ STRUCT_FOR_ID(__rfloordiv__)
198
+ STRUCT_FOR_ID(__rlshift__)
199
+ STRUCT_FOR_ID(__rmatmul__)
200
+ STRUCT_FOR_ID(__rmod__)
201
+ STRUCT_FOR_ID(__rmul__)
202
+ STRUCT_FOR_ID(__ror__)
203
+ STRUCT_FOR_ID(__round__)
204
+ STRUCT_FOR_ID(__rpow__)
205
+ STRUCT_FOR_ID(__rrshift__)
206
+ STRUCT_FOR_ID(__rshift__)
207
+ STRUCT_FOR_ID(__rsub__)
208
+ STRUCT_FOR_ID(__rtruediv__)
209
+ STRUCT_FOR_ID(__rxor__)
210
+ STRUCT_FOR_ID(__set__)
211
+ STRUCT_FOR_ID(__set_name__)
212
+ STRUCT_FOR_ID(__setattr__)
213
+ STRUCT_FOR_ID(__setitem__)
214
+ STRUCT_FOR_ID(__setstate__)
215
+ STRUCT_FOR_ID(__sizeof__)
216
+ STRUCT_FOR_ID(__slotnames__)
217
+ STRUCT_FOR_ID(__slots__)
218
+ STRUCT_FOR_ID(__spec__)
219
+ STRUCT_FOR_ID(__static_attributes__)
220
+ STRUCT_FOR_ID(__str__)
221
+ STRUCT_FOR_ID(__sub__)
222
+ STRUCT_FOR_ID(__subclasscheck__)
223
+ STRUCT_FOR_ID(__subclasshook__)
224
+ STRUCT_FOR_ID(__truediv__)
225
+ STRUCT_FOR_ID(__trunc__)
226
+ STRUCT_FOR_ID(__type_params__)
227
+ STRUCT_FOR_ID(__typing_is_unpacked_typevartuple__)
228
+ STRUCT_FOR_ID(__typing_prepare_subst__)
229
+ STRUCT_FOR_ID(__typing_subst__)
230
+ STRUCT_FOR_ID(__typing_unpacked_tuple_args__)
231
+ STRUCT_FOR_ID(__warningregistry__)
232
+ STRUCT_FOR_ID(__weaklistoffset__)
233
+ STRUCT_FOR_ID(__weakref__)
234
+ STRUCT_FOR_ID(__xor__)
235
+ STRUCT_FOR_ID(_abc_impl)
236
+ STRUCT_FOR_ID(_abstract_)
237
+ STRUCT_FOR_ID(_active)
238
+ STRUCT_FOR_ID(_anonymous_)
239
+ STRUCT_FOR_ID(_argtypes_)
240
+ STRUCT_FOR_ID(_as_parameter_)
241
+ STRUCT_FOR_ID(_asyncio_future_blocking)
242
+ STRUCT_FOR_ID(_blksize)
243
+ STRUCT_FOR_ID(_bootstrap)
244
+ STRUCT_FOR_ID(_check_retval_)
245
+ STRUCT_FOR_ID(_dealloc_warn)
246
+ STRUCT_FOR_ID(_feature_version)
247
+ STRUCT_FOR_ID(_field_types)
248
+ STRUCT_FOR_ID(_fields_)
249
+ STRUCT_FOR_ID(_filters)
250
+ STRUCT_FOR_ID(_finalizing)
251
+ STRUCT_FOR_ID(_find_and_load)
252
+ STRUCT_FOR_ID(_fix_up_module)
253
+ STRUCT_FOR_ID(_flags_)
254
+ STRUCT_FOR_ID(_get_sourcefile)
255
+ STRUCT_FOR_ID(_handle_fromlist)
256
+ STRUCT_FOR_ID(_initializing)
257
+ STRUCT_FOR_ID(_internal_use)
258
+ STRUCT_FOR_ID(_io)
259
+ STRUCT_FOR_ID(_is_text_encoding)
260
+ STRUCT_FOR_ID(_isatty_open_only)
261
+ STRUCT_FOR_ID(_length_)
262
+ STRUCT_FOR_ID(_limbo)
263
+ STRUCT_FOR_ID(_lock_unlock_module)
264
+ STRUCT_FOR_ID(_loop)
265
+ STRUCT_FOR_ID(_needs_com_addref_)
266
+ STRUCT_FOR_ID(_only_immortal)
267
+ STRUCT_FOR_ID(_restype_)
268
+ STRUCT_FOR_ID(_showwarnmsg)
269
+ STRUCT_FOR_ID(_shutdown)
270
+ STRUCT_FOR_ID(_slotnames)
271
+ STRUCT_FOR_ID(_strptime)
272
+ STRUCT_FOR_ID(_strptime_datetime_date)
273
+ STRUCT_FOR_ID(_strptime_datetime_datetime)
274
+ STRUCT_FOR_ID(_strptime_datetime_time)
275
+ STRUCT_FOR_ID(_type_)
276
+ STRUCT_FOR_ID(_uninitialized_submodules)
277
+ STRUCT_FOR_ID(_warn_unawaited_coroutine)
278
+ STRUCT_FOR_ID(_xoptions)
279
+ STRUCT_FOR_ID(abs_tol)
280
+ STRUCT_FOR_ID(access)
281
+ STRUCT_FOR_ID(aclose)
282
+ STRUCT_FOR_ID(add)
283
+ STRUCT_FOR_ID(add_done_callback)
284
+ STRUCT_FOR_ID(after_in_child)
285
+ STRUCT_FOR_ID(after_in_parent)
286
+ STRUCT_FOR_ID(aggregate_class)
287
+ STRUCT_FOR_ID(alias)
288
+ STRUCT_FOR_ID(align)
289
+ STRUCT_FOR_ID(all)
290
+ STRUCT_FOR_ID(all_threads)
291
+ STRUCT_FOR_ID(allow_code)
292
+ STRUCT_FOR_ID(any)
293
+ STRUCT_FOR_ID(append)
294
+ STRUCT_FOR_ID(arg)
295
+ STRUCT_FOR_ID(argdefs)
296
+ STRUCT_FOR_ID(args)
297
+ STRUCT_FOR_ID(arguments)
298
+ STRUCT_FOR_ID(argv)
299
+ STRUCT_FOR_ID(as_integer_ratio)
300
+ STRUCT_FOR_ID(asend)
301
+ STRUCT_FOR_ID(ast)
302
+ STRUCT_FOR_ID(athrow)
303
+ STRUCT_FOR_ID(attribute)
304
+ STRUCT_FOR_ID(authorizer_callback)
305
+ STRUCT_FOR_ID(autocommit)
306
+ STRUCT_FOR_ID(backtick)
307
+ STRUCT_FOR_ID(base)
308
+ STRUCT_FOR_ID(before)
309
+ STRUCT_FOR_ID(big)
310
+ STRUCT_FOR_ID(binary_form)
311
+ STRUCT_FOR_ID(bit_offset)
312
+ STRUCT_FOR_ID(bit_size)
313
+ STRUCT_FOR_ID(block)
314
+ STRUCT_FOR_ID(bound)
315
+ STRUCT_FOR_ID(buffer)
316
+ STRUCT_FOR_ID(buffer_callback)
317
+ STRUCT_FOR_ID(buffer_size)
318
+ STRUCT_FOR_ID(buffering)
319
+ STRUCT_FOR_ID(buffers)
320
+ STRUCT_FOR_ID(bufsize)
321
+ STRUCT_FOR_ID(builtins)
322
+ STRUCT_FOR_ID(byte_offset)
323
+ STRUCT_FOR_ID(byte_size)
324
+ STRUCT_FOR_ID(byteorder)
325
+ STRUCT_FOR_ID(bytes)
326
+ STRUCT_FOR_ID(bytes_per_sep)
327
+ STRUCT_FOR_ID(c_call)
328
+ STRUCT_FOR_ID(c_exception)
329
+ STRUCT_FOR_ID(c_parameter_type)
330
+ STRUCT_FOR_ID(c_return)
331
+ STRUCT_FOR_ID(cached_datetime_module)
332
+ STRUCT_FOR_ID(cached_statements)
333
+ STRUCT_FOR_ID(cadata)
334
+ STRUCT_FOR_ID(cafile)
335
+ STRUCT_FOR_ID(call)
336
+ STRUCT_FOR_ID(call_exception_handler)
337
+ STRUCT_FOR_ID(call_soon)
338
+ STRUCT_FOR_ID(callback)
339
+ STRUCT_FOR_ID(cancel)
340
+ STRUCT_FOR_ID(capath)
341
+ STRUCT_FOR_ID(category)
342
+ STRUCT_FOR_ID(cb_type)
343
+ STRUCT_FOR_ID(certfile)
344
+ STRUCT_FOR_ID(check_same_thread)
345
+ STRUCT_FOR_ID(clear)
346
+ STRUCT_FOR_ID(close)
347
+ STRUCT_FOR_ID(closed)
348
+ STRUCT_FOR_ID(closefd)
349
+ STRUCT_FOR_ID(closure)
350
+ STRUCT_FOR_ID(co_argcount)
351
+ STRUCT_FOR_ID(co_cellvars)
352
+ STRUCT_FOR_ID(co_code)
353
+ STRUCT_FOR_ID(co_consts)
354
+ STRUCT_FOR_ID(co_exceptiontable)
355
+ STRUCT_FOR_ID(co_filename)
356
+ STRUCT_FOR_ID(co_firstlineno)
357
+ STRUCT_FOR_ID(co_flags)
358
+ STRUCT_FOR_ID(co_freevars)
359
+ STRUCT_FOR_ID(co_kwonlyargcount)
360
+ STRUCT_FOR_ID(co_linetable)
361
+ STRUCT_FOR_ID(co_name)
362
+ STRUCT_FOR_ID(co_names)
363
+ STRUCT_FOR_ID(co_nlocals)
364
+ STRUCT_FOR_ID(co_posonlyargcount)
365
+ STRUCT_FOR_ID(co_qualname)
366
+ STRUCT_FOR_ID(co_stacksize)
367
+ STRUCT_FOR_ID(co_varnames)
368
+ STRUCT_FOR_ID(code)
369
+ STRUCT_FOR_ID(col_offset)
370
+ STRUCT_FOR_ID(command)
371
+ STRUCT_FOR_ID(comment_factory)
372
+ STRUCT_FOR_ID(compile_mode)
373
+ STRUCT_FOR_ID(consts)
374
+ STRUCT_FOR_ID(context)
375
+ STRUCT_FOR_ID(contravariant)
376
+ STRUCT_FOR_ID(conversion)
377
+ STRUCT_FOR_ID(cookie)
378
+ STRUCT_FOR_ID(copy)
379
+ STRUCT_FOR_ID(copyreg)
380
+ STRUCT_FOR_ID(coro)
381
+ STRUCT_FOR_ID(count)
382
+ STRUCT_FOR_ID(covariant)
383
+ STRUCT_FOR_ID(cwd)
384
+ STRUCT_FOR_ID(d_parameter_type)
385
+ STRUCT_FOR_ID(data)
386
+ STRUCT_FOR_ID(database)
387
+ STRUCT_FOR_ID(day)
388
+ STRUCT_FOR_ID(debug)
389
+ STRUCT_FOR_ID(decode)
390
+ STRUCT_FOR_ID(decoder)
391
+ STRUCT_FOR_ID(default)
392
+ STRUCT_FOR_ID(defaultaction)
393
+ STRUCT_FOR_ID(delete)
394
+ STRUCT_FOR_ID(depth)
395
+ STRUCT_FOR_ID(desired_access)
396
+ STRUCT_FOR_ID(detect_types)
397
+ STRUCT_FOR_ID(deterministic)
398
+ STRUCT_FOR_ID(device)
399
+ STRUCT_FOR_ID(dict)
400
+ STRUCT_FOR_ID(dictcomp)
401
+ STRUCT_FOR_ID(difference_update)
402
+ STRUCT_FOR_ID(digest)
403
+ STRUCT_FOR_ID(digest_size)
404
+ STRUCT_FOR_ID(digestmod)
405
+ STRUCT_FOR_ID(dir_fd)
406
+ STRUCT_FOR_ID(discard)
407
+ STRUCT_FOR_ID(dispatch_table)
408
+ STRUCT_FOR_ID(displayhook)
409
+ STRUCT_FOR_ID(dklen)
410
+ STRUCT_FOR_ID(doc)
411
+ STRUCT_FOR_ID(done)
412
+ STRUCT_FOR_ID(dont_inherit)
413
+ STRUCT_FOR_ID(dst)
414
+ STRUCT_FOR_ID(dst_dir_fd)
415
+ STRUCT_FOR_ID(eager_start)
416
+ STRUCT_FOR_ID(effective_ids)
417
+ STRUCT_FOR_ID(element_factory)
418
+ STRUCT_FOR_ID(encode)
419
+ STRUCT_FOR_ID(encoding)
420
+ STRUCT_FOR_ID(end)
421
+ STRUCT_FOR_ID(end_col_offset)
422
+ STRUCT_FOR_ID(end_lineno)
423
+ STRUCT_FOR_ID(end_offset)
424
+ STRUCT_FOR_ID(endpos)
425
+ STRUCT_FOR_ID(entrypoint)
426
+ STRUCT_FOR_ID(env)
427
+ STRUCT_FOR_ID(errors)
428
+ STRUCT_FOR_ID(event)
429
+ STRUCT_FOR_ID(eventmask)
430
+ STRUCT_FOR_ID(exc_type)
431
+ STRUCT_FOR_ID(exc_value)
432
+ STRUCT_FOR_ID(excepthook)
433
+ STRUCT_FOR_ID(exception)
434
+ STRUCT_FOR_ID(existing_file_name)
435
+ STRUCT_FOR_ID(exp)
436
+ STRUCT_FOR_ID(expression)
437
+ STRUCT_FOR_ID(extend)
438
+ STRUCT_FOR_ID(extra_tokens)
439
+ STRUCT_FOR_ID(facility)
440
+ STRUCT_FOR_ID(factory)
441
+ STRUCT_FOR_ID(false)
442
+ STRUCT_FOR_ID(family)
443
+ STRUCT_FOR_ID(fanout)
444
+ STRUCT_FOR_ID(fd)
445
+ STRUCT_FOR_ID(fd2)
446
+ STRUCT_FOR_ID(fdel)
447
+ STRUCT_FOR_ID(fget)
448
+ STRUCT_FOR_ID(fields)
449
+ STRUCT_FOR_ID(file)
450
+ STRUCT_FOR_ID(file_actions)
451
+ STRUCT_FOR_ID(filename)
452
+ STRUCT_FOR_ID(fileno)
453
+ STRUCT_FOR_ID(filepath)
454
+ STRUCT_FOR_ID(fillvalue)
455
+ STRUCT_FOR_ID(filter)
456
+ STRUCT_FOR_ID(filters)
457
+ STRUCT_FOR_ID(final)
458
+ STRUCT_FOR_ID(find_class)
459
+ STRUCT_FOR_ID(fix_imports)
460
+ STRUCT_FOR_ID(flags)
461
+ STRUCT_FOR_ID(flush)
462
+ STRUCT_FOR_ID(fold)
463
+ STRUCT_FOR_ID(follow_symlinks)
464
+ STRUCT_FOR_ID(format)
465
+ STRUCT_FOR_ID(format_spec)
466
+ STRUCT_FOR_ID(frame_buffer)
467
+ STRUCT_FOR_ID(from_param)
468
+ STRUCT_FOR_ID(fromlist)
469
+ STRUCT_FOR_ID(fromtimestamp)
470
+ STRUCT_FOR_ID(fromutc)
471
+ STRUCT_FOR_ID(fset)
472
+ STRUCT_FOR_ID(func)
473
+ STRUCT_FOR_ID(future)
474
+ STRUCT_FOR_ID(generation)
475
+ STRUCT_FOR_ID(genexpr)
476
+ STRUCT_FOR_ID(get)
477
+ STRUCT_FOR_ID(get_debug)
478
+ STRUCT_FOR_ID(get_event_loop)
479
+ STRUCT_FOR_ID(get_loop)
480
+ STRUCT_FOR_ID(get_source)
481
+ STRUCT_FOR_ID(getattr)
482
+ STRUCT_FOR_ID(getstate)
483
+ STRUCT_FOR_ID(gid)
484
+ STRUCT_FOR_ID(globals)
485
+ STRUCT_FOR_ID(groupindex)
486
+ STRUCT_FOR_ID(groups)
487
+ STRUCT_FOR_ID(handle)
488
+ STRUCT_FOR_ID(handle_seq)
489
+ STRUCT_FOR_ID(has_location)
490
+ STRUCT_FOR_ID(hash_name)
491
+ STRUCT_FOR_ID(header)
492
+ STRUCT_FOR_ID(headers)
493
+ STRUCT_FOR_ID(hi)
494
+ STRUCT_FOR_ID(hook)
495
+ STRUCT_FOR_ID(hour)
496
+ STRUCT_FOR_ID(id)
497
+ STRUCT_FOR_ID(ident)
498
+ STRUCT_FOR_ID(identity_hint)
499
+ STRUCT_FOR_ID(ignore)
500
+ STRUCT_FOR_ID(imag)
501
+ STRUCT_FOR_ID(importlib)
502
+ STRUCT_FOR_ID(in_fd)
503
+ STRUCT_FOR_ID(incoming)
504
+ STRUCT_FOR_ID(index)
505
+ STRUCT_FOR_ID(indexgroup)
506
+ STRUCT_FOR_ID(inf)
507
+ STRUCT_FOR_ID(infer_variance)
508
+ STRUCT_FOR_ID(inherit_handle)
509
+ STRUCT_FOR_ID(inheritable)
510
+ STRUCT_FOR_ID(initial)
511
+ STRUCT_FOR_ID(initial_bytes)
512
+ STRUCT_FOR_ID(initial_owner)
513
+ STRUCT_FOR_ID(initial_state)
514
+ STRUCT_FOR_ID(initial_value)
515
+ STRUCT_FOR_ID(initval)
516
+ STRUCT_FOR_ID(inner_size)
517
+ STRUCT_FOR_ID(input)
518
+ STRUCT_FOR_ID(insert_comments)
519
+ STRUCT_FOR_ID(insert_pis)
520
+ STRUCT_FOR_ID(instructions)
521
+ STRUCT_FOR_ID(intern)
522
+ STRUCT_FOR_ID(intersection)
523
+ STRUCT_FOR_ID(interval)
524
+ STRUCT_FOR_ID(io)
525
+ STRUCT_FOR_ID(is_compress)
526
+ STRUCT_FOR_ID(is_raw)
527
+ STRUCT_FOR_ID(is_running)
528
+ STRUCT_FOR_ID(is_struct)
529
+ STRUCT_FOR_ID(isatty)
530
+ STRUCT_FOR_ID(isinstance)
531
+ STRUCT_FOR_ID(isoformat)
532
+ STRUCT_FOR_ID(isolation_level)
533
+ STRUCT_FOR_ID(istext)
534
+ STRUCT_FOR_ID(item)
535
+ STRUCT_FOR_ID(items)
536
+ STRUCT_FOR_ID(iter)
537
+ STRUCT_FOR_ID(iterable)
538
+ STRUCT_FOR_ID(iterations)
539
+ STRUCT_FOR_ID(join)
540
+ STRUCT_FOR_ID(jump)
541
+ STRUCT_FOR_ID(keepends)
542
+ STRUCT_FOR_ID(key)
543
+ STRUCT_FOR_ID(keyfile)
544
+ STRUCT_FOR_ID(keys)
545
+ STRUCT_FOR_ID(kind)
546
+ STRUCT_FOR_ID(kw)
547
+ STRUCT_FOR_ID(kw1)
548
+ STRUCT_FOR_ID(kw2)
549
+ STRUCT_FOR_ID(kwdefaults)
550
+ STRUCT_FOR_ID(label)
551
+ STRUCT_FOR_ID(lambda)
552
+ STRUCT_FOR_ID(last)
553
+ STRUCT_FOR_ID(last_exc)
554
+ STRUCT_FOR_ID(last_node)
555
+ STRUCT_FOR_ID(last_traceback)
556
+ STRUCT_FOR_ID(last_type)
557
+ STRUCT_FOR_ID(last_value)
558
+ STRUCT_FOR_ID(latin1)
559
+ STRUCT_FOR_ID(leaf_size)
560
+ STRUCT_FOR_ID(len)
561
+ STRUCT_FOR_ID(length)
562
+ STRUCT_FOR_ID(level)
563
+ STRUCT_FOR_ID(limit)
564
+ STRUCT_FOR_ID(line)
565
+ STRUCT_FOR_ID(line_buffering)
566
+ STRUCT_FOR_ID(lineno)
567
+ STRUCT_FOR_ID(listcomp)
568
+ STRUCT_FOR_ID(little)
569
+ STRUCT_FOR_ID(lo)
570
+ STRUCT_FOR_ID(locale)
571
+ STRUCT_FOR_ID(locals)
572
+ STRUCT_FOR_ID(logoption)
573
+ STRUCT_FOR_ID(loop)
574
+ STRUCT_FOR_ID(manual_reset)
575
+ STRUCT_FOR_ID(mapping)
576
+ STRUCT_FOR_ID(match)
577
+ STRUCT_FOR_ID(max_length)
578
+ STRUCT_FOR_ID(maxdigits)
579
+ STRUCT_FOR_ID(maxevents)
580
+ STRUCT_FOR_ID(maxlen)
581
+ STRUCT_FOR_ID(maxmem)
582
+ STRUCT_FOR_ID(maxsplit)
583
+ STRUCT_FOR_ID(maxvalue)
584
+ STRUCT_FOR_ID(memLevel)
585
+ STRUCT_FOR_ID(memlimit)
586
+ STRUCT_FOR_ID(message)
587
+ STRUCT_FOR_ID(metaclass)
588
+ STRUCT_FOR_ID(metadata)
589
+ STRUCT_FOR_ID(method)
590
+ STRUCT_FOR_ID(microsecond)
591
+ STRUCT_FOR_ID(milliseconds)
592
+ STRUCT_FOR_ID(minute)
593
+ STRUCT_FOR_ID(mod)
594
+ STRUCT_FOR_ID(mode)
595
+ STRUCT_FOR_ID(module)
596
+ STRUCT_FOR_ID(module_globals)
597
+ STRUCT_FOR_ID(modules)
598
+ STRUCT_FOR_ID(month)
599
+ STRUCT_FOR_ID(mro)
600
+ STRUCT_FOR_ID(msg)
601
+ STRUCT_FOR_ID(mutex)
602
+ STRUCT_FOR_ID(mycmp)
603
+ STRUCT_FOR_ID(n_arg)
604
+ STRUCT_FOR_ID(n_fields)
605
+ STRUCT_FOR_ID(n_sequence_fields)
606
+ STRUCT_FOR_ID(n_unnamed_fields)
607
+ STRUCT_FOR_ID(name)
608
+ STRUCT_FOR_ID(name_from)
609
+ STRUCT_FOR_ID(namespace_separator)
610
+ STRUCT_FOR_ID(namespaces)
611
+ STRUCT_FOR_ID(narg)
612
+ STRUCT_FOR_ID(ndigits)
613
+ STRUCT_FOR_ID(nested)
614
+ STRUCT_FOR_ID(new_file_name)
615
+ STRUCT_FOR_ID(new_limit)
616
+ STRUCT_FOR_ID(newline)
617
+ STRUCT_FOR_ID(newlines)
618
+ STRUCT_FOR_ID(next)
619
+ STRUCT_FOR_ID(nlocals)
620
+ STRUCT_FOR_ID(node_depth)
621
+ STRUCT_FOR_ID(node_offset)
622
+ STRUCT_FOR_ID(ns)
623
+ STRUCT_FOR_ID(nstype)
624
+ STRUCT_FOR_ID(nt)
625
+ STRUCT_FOR_ID(null)
626
+ STRUCT_FOR_ID(number)
627
+ STRUCT_FOR_ID(obj)
628
+ STRUCT_FOR_ID(object)
629
+ STRUCT_FOR_ID(offset)
630
+ STRUCT_FOR_ID(offset_dst)
631
+ STRUCT_FOR_ID(offset_src)
632
+ STRUCT_FOR_ID(on_type_read)
633
+ STRUCT_FOR_ID(onceregistry)
634
+ STRUCT_FOR_ID(only_active_thread)
635
+ STRUCT_FOR_ID(only_keys)
636
+ STRUCT_FOR_ID(oparg)
637
+ STRUCT_FOR_ID(opcode)
638
+ STRUCT_FOR_ID(open)
639
+ STRUCT_FOR_ID(opener)
640
+ STRUCT_FOR_ID(operation)
641
+ STRUCT_FOR_ID(optimize)
642
+ STRUCT_FOR_ID(options)
643
+ STRUCT_FOR_ID(order)
644
+ STRUCT_FOR_ID(origin)
645
+ STRUCT_FOR_ID(out_fd)
646
+ STRUCT_FOR_ID(outgoing)
647
+ STRUCT_FOR_ID(outpath)
648
+ STRUCT_FOR_ID(overlapped)
649
+ STRUCT_FOR_ID(owner)
650
+ STRUCT_FOR_ID(pages)
651
+ STRUCT_FOR_ID(parameter)
652
+ STRUCT_FOR_ID(parent)
653
+ STRUCT_FOR_ID(password)
654
+ STRUCT_FOR_ID(path)
655
+ STRUCT_FOR_ID(pattern)
656
+ STRUCT_FOR_ID(peek)
657
+ STRUCT_FOR_ID(persistent_id)
658
+ STRUCT_FOR_ID(persistent_load)
659
+ STRUCT_FOR_ID(person)
660
+ STRUCT_FOR_ID(pi_factory)
661
+ STRUCT_FOR_ID(pid)
662
+ STRUCT_FOR_ID(policy)
663
+ STRUCT_FOR_ID(pos)
664
+ STRUCT_FOR_ID(pos1)
665
+ STRUCT_FOR_ID(pos2)
666
+ STRUCT_FOR_ID(posix)
667
+ STRUCT_FOR_ID(print_file_and_line)
668
+ STRUCT_FOR_ID(priority)
669
+ STRUCT_FOR_ID(progress)
670
+ STRUCT_FOR_ID(progress_handler)
671
+ STRUCT_FOR_ID(progress_routine)
672
+ STRUCT_FOR_ID(proto)
673
+ STRUCT_FOR_ID(protocol)
674
+ STRUCT_FOR_ID(ps1)
675
+ STRUCT_FOR_ID(ps2)
676
+ STRUCT_FOR_ID(query)
677
+ STRUCT_FOR_ID(quotetabs)
678
+ STRUCT_FOR_ID(raw)
679
+ STRUCT_FOR_ID(read)
680
+ STRUCT_FOR_ID(read1)
681
+ STRUCT_FOR_ID(readable)
682
+ STRUCT_FOR_ID(readall)
683
+ STRUCT_FOR_ID(readinto)
684
+ STRUCT_FOR_ID(readinto1)
685
+ STRUCT_FOR_ID(readline)
686
+ STRUCT_FOR_ID(readonly)
687
+ STRUCT_FOR_ID(real)
688
+ STRUCT_FOR_ID(reducer_override)
689
+ STRUCT_FOR_ID(registry)
690
+ STRUCT_FOR_ID(rel_tol)
691
+ STRUCT_FOR_ID(release)
692
+ STRUCT_FOR_ID(reload)
693
+ STRUCT_FOR_ID(repl)
694
+ STRUCT_FOR_ID(replace)
695
+ STRUCT_FOR_ID(reserved)
696
+ STRUCT_FOR_ID(reset)
697
+ STRUCT_FOR_ID(resetids)
698
+ STRUCT_FOR_ID(return)
699
+ STRUCT_FOR_ID(reverse)
700
+ STRUCT_FOR_ID(reversed)
701
+ STRUCT_FOR_ID(salt)
702
+ STRUCT_FOR_ID(sched_priority)
703
+ STRUCT_FOR_ID(scheduler)
704
+ STRUCT_FOR_ID(script)
705
+ STRUCT_FOR_ID(second)
706
+ STRUCT_FOR_ID(security_attributes)
707
+ STRUCT_FOR_ID(seek)
708
+ STRUCT_FOR_ID(seekable)
709
+ STRUCT_FOR_ID(selectors)
710
+ STRUCT_FOR_ID(self)
711
+ STRUCT_FOR_ID(send)
712
+ STRUCT_FOR_ID(sep)
713
+ STRUCT_FOR_ID(sequence)
714
+ STRUCT_FOR_ID(server_hostname)
715
+ STRUCT_FOR_ID(server_side)
716
+ STRUCT_FOR_ID(session)
717
+ STRUCT_FOR_ID(setcomp)
718
+ STRUCT_FOR_ID(setpgroup)
719
+ STRUCT_FOR_ID(setsid)
720
+ STRUCT_FOR_ID(setsigdef)
721
+ STRUCT_FOR_ID(setsigmask)
722
+ STRUCT_FOR_ID(setstate)
723
+ STRUCT_FOR_ID(shape)
724
+ STRUCT_FOR_ID(show_cmd)
725
+ STRUCT_FOR_ID(signed)
726
+ STRUCT_FOR_ID(size)
727
+ STRUCT_FOR_ID(sizehint)
728
+ STRUCT_FOR_ID(skip_file_prefixes)
729
+ STRUCT_FOR_ID(sleep)
730
+ STRUCT_FOR_ID(sock)
731
+ STRUCT_FOR_ID(sort)
732
+ STRUCT_FOR_ID(source)
733
+ STRUCT_FOR_ID(source_traceback)
734
+ STRUCT_FOR_ID(spam)
735
+ STRUCT_FOR_ID(src)
736
+ STRUCT_FOR_ID(src_dir_fd)
737
+ STRUCT_FOR_ID(stacklevel)
738
+ STRUCT_FOR_ID(start)
739
+ STRUCT_FOR_ID(statement)
740
+ STRUCT_FOR_ID(status)
741
+ STRUCT_FOR_ID(stderr)
742
+ STRUCT_FOR_ID(stdin)
743
+ STRUCT_FOR_ID(stdout)
744
+ STRUCT_FOR_ID(step)
745
+ STRUCT_FOR_ID(steps)
746
+ STRUCT_FOR_ID(store_name)
747
+ STRUCT_FOR_ID(strategy)
748
+ STRUCT_FOR_ID(strftime)
749
+ STRUCT_FOR_ID(strict)
750
+ STRUCT_FOR_ID(strict_mode)
751
+ STRUCT_FOR_ID(string)
752
+ STRUCT_FOR_ID(sub_key)
753
+ STRUCT_FOR_ID(subcalls)
754
+ STRUCT_FOR_ID(symmetric_difference_update)
755
+ STRUCT_FOR_ID(tabsize)
756
+ STRUCT_FOR_ID(tag)
757
+ STRUCT_FOR_ID(target)
758
+ STRUCT_FOR_ID(target_is_directory)
759
+ STRUCT_FOR_ID(task)
760
+ STRUCT_FOR_ID(tb_frame)
761
+ STRUCT_FOR_ID(tb_lasti)
762
+ STRUCT_FOR_ID(tb_lineno)
763
+ STRUCT_FOR_ID(tb_next)
764
+ STRUCT_FOR_ID(tell)
765
+ STRUCT_FOR_ID(template)
766
+ STRUCT_FOR_ID(term)
767
+ STRUCT_FOR_ID(text)
768
+ STRUCT_FOR_ID(threading)
769
+ STRUCT_FOR_ID(throw)
770
+ STRUCT_FOR_ID(timeout)
771
+ STRUCT_FOR_ID(timer)
772
+ STRUCT_FOR_ID(times)
773
+ STRUCT_FOR_ID(timetuple)
774
+ STRUCT_FOR_ID(timeunit)
775
+ STRUCT_FOR_ID(top)
776
+ STRUCT_FOR_ID(trace_callback)
777
+ STRUCT_FOR_ID(traceback)
778
+ STRUCT_FOR_ID(trailers)
779
+ STRUCT_FOR_ID(translate)
780
+ STRUCT_FOR_ID(true)
781
+ STRUCT_FOR_ID(truncate)
782
+ STRUCT_FOR_ID(twice)
783
+ STRUCT_FOR_ID(txt)
784
+ STRUCT_FOR_ID(type)
785
+ STRUCT_FOR_ID(type_params)
786
+ STRUCT_FOR_ID(tz)
787
+ STRUCT_FOR_ID(tzinfo)
788
+ STRUCT_FOR_ID(tzname)
789
+ STRUCT_FOR_ID(uid)
790
+ STRUCT_FOR_ID(unlink)
791
+ STRUCT_FOR_ID(unraisablehook)
792
+ STRUCT_FOR_ID(uri)
793
+ STRUCT_FOR_ID(usedforsecurity)
794
+ STRUCT_FOR_ID(value)
795
+ STRUCT_FOR_ID(values)
796
+ STRUCT_FOR_ID(version)
797
+ STRUCT_FOR_ID(volume)
798
+ STRUCT_FOR_ID(wait_all)
799
+ STRUCT_FOR_ID(warn_on_full_buffer)
800
+ STRUCT_FOR_ID(warnings)
801
+ STRUCT_FOR_ID(warnoptions)
802
+ STRUCT_FOR_ID(wbits)
803
+ STRUCT_FOR_ID(week)
804
+ STRUCT_FOR_ID(weekday)
805
+ STRUCT_FOR_ID(which)
806
+ STRUCT_FOR_ID(who)
807
+ STRUCT_FOR_ID(withdata)
808
+ STRUCT_FOR_ID(writable)
809
+ STRUCT_FOR_ID(write)
810
+ STRUCT_FOR_ID(write_through)
811
+ STRUCT_FOR_ID(year)
812
+ STRUCT_FOR_ID(zdict)
813
+ STRUCT_FOR_ID(zstd_dict)
814
+ } identifiers;
815
+ struct {
816
+ PyASCIIObject _ascii;
817
+ uint8_t _data[2];
818
+ } ascii[128];
819
+ struct {
820
+ PyCompactUnicodeObject _latin1;
821
+ uint8_t _data[2];
822
+ } latin1[128];
823
+ };
824
+ /* End auto-generated code */
825
+
826
+ #undef ID
827
+ #undef STR
828
+
829
+
830
+ #define _Py_ID(NAME) \
831
+ (_Py_SINGLETON(strings.identifiers._py_ ## NAME._ascii.ob_base))
832
+ #define _Py_STR(NAME) \
833
+ (_Py_SINGLETON(strings.literals._py_ ## NAME._ascii.ob_base))
834
+ #define _Py_LATIN1_CHR(CH) \
835
+ ((CH) < 128 \
836
+ ? (PyObject*)&_Py_SINGLETON(strings).ascii[(CH)] \
837
+ : (PyObject*)&_Py_SINGLETON(strings).latin1[(CH) - 128])
838
+
839
+ /* _Py_DECLARE_STR() should precede all uses of _Py_STR() in a function.
840
+
841
+ This is true even if the same string has already been declared
842
+ elsewhere, even in the same file. Mismatched duplicates are detected
843
+ by Tools/scripts/generate-global-objects.py.
844
+
845
+ Pairing _Py_DECLARE_STR() with every use of _Py_STR() makes sure the
846
+ string keeps working even if the declaration is removed somewhere
847
+ else. It also makes it clear what the actual string is at every
848
+ place it is being used. */
849
+ #define _Py_DECLARE_STR(name, str)
850
+
851
+ #ifdef __cplusplus
852
+ }
853
+ #endif
854
+ #endif /* !Py_INTERNAL_GLOBAL_STRINGS_H */