pytron-kit 0.3.12__tar.gz → 0.3.13__tar.gz

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 (447) hide show
  1. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/PKG-INFO +1 -1
  2. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pyproject.toml +1 -1
  3. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/setup.py +8 -4
  4. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/LICENSE +0 -0
  5. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/MANIFEST.in +0 -0
  6. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/README.md +0 -0
  7. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/__init__.py +0 -0
  8. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/application.py +0 -0
  9. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/apputils/__init__.py +0 -0
  10. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/apputils/chrome_ipc.py +0 -0
  11. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/apputils/codegen.py +0 -0
  12. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/apputils/config.py +0 -0
  13. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/apputils/deadmansswitch.py +0 -0
  14. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/apputils/extras.py +0 -0
  15. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/apputils/native.py +0 -0
  16. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/apputils/shell.py +0 -0
  17. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/apputils/windows.py +0 -0
  18. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/cli.py +0 -0
  19. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/__init__.py +0 -0
  20. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/android.py +0 -0
  21. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/build.py +0 -0
  22. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/doctor.py +0 -0
  23. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/engine.py +0 -0
  24. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/frontend.py +0 -0
  25. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/harvest.py +0 -0
  26. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/helpers.py +0 -0
  27. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/info.py +0 -0
  28. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/init.py +0 -0
  29. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/install.py +0 -0
  30. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/login.py +0 -0
  31. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/package.py +0 -0
  32. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/plugin.py +0 -0
  33. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/run.py +0 -0
  34. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/scan.py +0 -0
  35. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/show.py +0 -0
  36. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/uninstall.py +0 -0
  37. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/utils.py +0 -0
  38. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/commands/workflow.py +0 -0
  39. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/console.py +0 -0
  40. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/core.py +0 -0
  41. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/dependencies/WebView2Loader.dll +0 -0
  42. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/dependencies/__init__.py +0 -0
  43. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/engines/chrome/adapter.py +0 -0
  44. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/engines/chrome/engine.py +0 -0
  45. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/engines/chrome/forge.py +0 -0
  46. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/engines/chrome/shell/package.json +0 -0
  47. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/engines/chrome/shell/preload.js +0 -0
  48. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/engines/chrome/shell/shell.js +0 -0
  49. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/exceptions.py +0 -0
  50. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/inspector.py +0 -0
  51. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/inspector_ui.py +0 -0
  52. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/installer/Installation.nsi +0 -0
  53. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/installer/header.bmp +0 -0
  54. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/installer/pytron.ico +0 -0
  55. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/installer/sidebar.bmp +0 -0
  56. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/llms.md +0 -0
  57. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/manifests/README.md +0 -0
  58. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/manifests/windows-utf8.manifest +0 -0
  59. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/menu.py +0 -0
  60. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/nsis-setup.exe +0 -0
  61. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/__init__.py +0 -0
  62. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/assets.py +0 -0
  63. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/compilers.py +0 -0
  64. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/crystal.py +0 -0
  65. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/graph.py +0 -0
  66. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/inference.py +0 -0
  67. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/installers.py +0 -0
  68. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/introspect.py +0 -0
  69. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/metadata.py +0 -0
  70. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/modules.py +0 -0
  71. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/nuitka.py +0 -0
  72. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/pipeline.py +0 -0
  73. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/pyinstaller.py +0 -0
  74. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/rust_engine.py +0 -0
  75. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/secure.py +0 -0
  76. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/secure_loader/icon.ico +0 -0
  77. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/utils.py +0 -0
  78. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/pack/virtual_root.py +0 -0
  79. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/__init__.py +0 -0
  80. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/__init__.py +0 -0
  81. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/android.py +0 -0
  82. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/builder.py +0 -0
  83. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/ops/build.py +0 -0
  84. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/ops/init.py +0 -0
  85. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/ops/run.py +0 -0
  86. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/ops/sync.py +0 -0
  87. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/ops/utils.py +0 -0
  88. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/README.md +0 -0
  89. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/build.gradle +0 -0
  90. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/AndroidManifest.xml +0 -0
  91. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/assets/python/main.py +0 -0
  92. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/assets/python/python314.zip +0 -0
  93. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/CMakeLists.txt +0 -0
  94. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/Python.h +0 -0
  95. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/abstract.h +0 -0
  96. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/audit.h +0 -0
  97. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/bltinmodule.h +0 -0
  98. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/boolobject.h +0 -0
  99. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/bytearrayobject.h +0 -0
  100. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/bytesobject.h +0 -0
  101. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/ceval.h +0 -0
  102. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/codecs.h +0 -0
  103. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/compile.h +0 -0
  104. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/complexobject.h +0 -0
  105. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/abstract.h +0 -0
  106. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/audit.h +0 -0
  107. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytearrayobject.h +0 -0
  108. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytesobject.h +0 -0
  109. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/cellobject.h +0 -0
  110. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/ceval.h +0 -0
  111. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/classobject.h +0 -0
  112. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/code.h +0 -0
  113. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/compile.h +0 -0
  114. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/complexobject.h +0 -0
  115. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/context.h +0 -0
  116. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/critical_section.h +0 -0
  117. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/descrobject.h +0 -0
  118. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/dictobject.h +0 -0
  119. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileobject.h +0 -0
  120. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileutils.h +0 -0
  121. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/floatobject.h +0 -0
  122. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/frameobject.h +0 -0
  123. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/funcobject.h +0 -0
  124. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/genobject.h +0 -0
  125. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/import.h +0 -0
  126. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/initconfig.h +0 -0
  127. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/listobject.h +0 -0
  128. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/lock.h +0 -0
  129. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longintrepr.h +0 -0
  130. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longobject.h +0 -0
  131. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/memoryobject.h +0 -0
  132. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/methodobject.h +0 -0
  133. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/modsupport.h +0 -0
  134. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/monitoring.h +0 -0
  135. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/object.h +0 -0
  136. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/objimpl.h +0 -0
  137. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/odictobject.h +0 -0
  138. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/picklebufobject.h +0 -0
  139. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pthread_stubs.h +0 -0
  140. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic.h +0 -0
  141. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_gcc.h +0 -0
  142. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_msc.h +0 -0
  143. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_std.h +0 -0
  144. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyctype.h +0 -0
  145. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pydebug.h +0 -0
  146. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyerrors.h +0 -0
  147. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyfpe.h +0 -0
  148. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyframe.h +0 -0
  149. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyhash.h +0 -0
  150. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pylifecycle.h +0 -0
  151. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pymem.h +0 -0
  152. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystate.h +0 -0
  153. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystats.h +0 -0
  154. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythonrun.h +0 -0
  155. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythread.h +0 -0
  156. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pytime.h +0 -0
  157. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/setobject.h +0 -0
  158. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/traceback.h +0 -0
  159. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tracemalloc.h +0 -0
  160. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tupleobject.h +0 -0
  161. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/unicodeobject.h +0 -0
  162. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/warnings.h +0 -0
  163. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/cpython/weakrefobject.h +0 -0
  164. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/critical_section.h +0 -0
  165. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/datetime.h +0 -0
  166. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/descrobject.h +0 -0
  167. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/dictobject.h +0 -0
  168. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/dynamic_annotations.h +0 -0
  169. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/enumobject.h +0 -0
  170. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/errcode.h +0 -0
  171. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/exports.h +0 -0
  172. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/fileobject.h +0 -0
  173. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/fileutils.h +0 -0
  174. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/floatobject.h +0 -0
  175. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/frameobject.h +0 -0
  176. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/genericaliasobject.h +0 -0
  177. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/import.h +0 -0
  178. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/atomic.h +0 -0
  179. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/internal.h +0 -0
  180. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/prim.h +0 -0
  181. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/track.h +0 -0
  182. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/types.h +0 -0
  183. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc.h +0 -0
  184. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_abstract.h +0 -0
  185. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_asdl.h +0 -0
  186. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast.h +0 -0
  187. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast_state.h +0 -0
  188. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_atexit.h +0 -0
  189. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_audit.h +0 -0
  190. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_backoff.h +0 -0
  191. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bitutils.h +0 -0
  192. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_blocks_output_buffer.h +0 -0
  193. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_brc.h +0 -0
  194. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytes_methods.h +0 -0
  195. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytesobject.h +0 -0
  196. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_c_array.h +0 -0
  197. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_call.h +0 -0
  198. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_capsule.h +0 -0
  199. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_cell.h +0 -0
  200. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval.h +0 -0
  201. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval_state.h +0 -0
  202. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_code.h +0 -0
  203. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_codecs.h +0 -0
  204. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_compile.h +0 -0
  205. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_complexobject.h +0 -0
  206. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_condvar.h +0 -0
  207. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_context.h +0 -0
  208. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_critical_section.h +0 -0
  209. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp.h +0 -0
  210. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp_data_registry.h +0 -0
  211. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_debug_offsets.h +0 -0
  212. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_descrobject.h +0 -0
  213. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict.h +0 -0
  214. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict_state.h +0 -0
  215. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dtoa.h +0 -0
  216. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_signal.h +0 -0
  217. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_trampoline.h +0 -0
  218. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_exceptions.h +0 -0
  219. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_faulthandler.h +0 -0
  220. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils.h +0 -0
  221. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils_windows.h +0 -0
  222. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_floatobject.h +0 -0
  223. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_flowgraph.h +0 -0
  224. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_format.h +0 -0
  225. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_frame.h +0 -0
  226. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist.h +0 -0
  227. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist_state.h +0 -0
  228. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_function.h +0 -0
  229. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gc.h +0 -0
  230. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_genobject.h +0 -0
  231. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_getopt.h +0 -0
  232. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gil.h +0 -0
  233. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects.h +0 -0
  234. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects_fini_generated.h +0 -0
  235. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_strings.h +0 -0
  236. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hamt.h +0 -0
  237. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hashtable.h +0 -0
  238. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_import.h +0 -0
  239. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_importdl.h +0 -0
  240. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_index_pool.h +0 -0
  241. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_initconfig.h +0 -0
  242. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruction_sequence.h +0 -0
  243. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruments.h +0 -0
  244. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp.h +0 -0
  245. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp_structs.h +0 -0
  246. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe.h +0 -0
  247. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe_structs.h +0 -0
  248. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpolation.h +0 -0
  249. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_intrinsics.h +0 -0
  250. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_jit.h +0 -0
  251. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_list.h +0 -0
  252. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_llist.h +0 -0
  253. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_lock.h +0 -0
  254. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_long.h +0 -0
  255. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_magic_number.h +0 -0
  256. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_memoryobject.h +0 -0
  257. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_mimalloc.h +0 -0
  258. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_modsupport.h +0 -0
  259. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_moduleobject.h +0 -0
  260. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_namespace.h +0 -0
  261. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object.h +0 -0
  262. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_alloc.h +0 -0
  263. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_deferred.h +0 -0
  264. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_stack.h +0 -0
  265. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_state.h +0 -0
  266. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc.h +0 -0
  267. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc_init.h +0 -0
  268. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_metadata.h +0 -0
  269. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_utils.h +0 -0
  270. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_optimizer.h +0 -0
  271. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parking_lot.h +0 -0
  272. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parser.h +0 -0
  273. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pathconfig.h +0 -0
  274. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyarena.h +0 -0
  275. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyatomic_ft_wrappers.h +0 -0
  276. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pybuffer.h +0 -0
  277. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyerrors.h +0 -0
  278. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyhash.h +0 -0
  279. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pylifecycle.h +0 -0
  280. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymath.h +0 -0
  281. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem.h +0 -0
  282. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem_init.h +0 -0
  283. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystate.h +0 -0
  284. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystats.h +0 -0
  285. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythonrun.h +0 -0
  286. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythread.h +0 -0
  287. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_qsbr.h +0 -0
  288. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_range.h +0 -0
  289. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime.h +0 -0
  290. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init.h +0 -0
  291. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init_generated.h +0 -0
  292. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_structs.h +0 -0
  293. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_semaphore.h +0 -0
  294. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_setobject.h +0 -0
  295. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_signal.h +0 -0
  296. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sliceobject.h +0 -0
  297. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stackref.h +0 -0
  298. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stats.h +0 -0
  299. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_strhex.h +0 -0
  300. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structs.h +0 -0
  301. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structseq.h +0 -0
  302. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_symtable.h +0 -0
  303. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sysmodule.h +0 -0
  304. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_template.h +0 -0
  305. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_time.h +0 -0
  306. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_token.h +0 -0
  307. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_traceback.h +0 -0
  308. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tracemalloc.h +0 -0
  309. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tstate.h +0 -0
  310. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tuple.h +0 -0
  311. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typedefs.h +0 -0
  312. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typeobject.h +0 -0
  313. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typevarobject.h +0 -0
  314. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ucnhash.h +0 -0
  315. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject.h +0 -0
  316. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject_generated.h +0 -0
  317. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unionobject.h +0 -0
  318. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uniqueid.h +0 -0
  319. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_ids.h +0 -0
  320. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_metadata.h +0 -0
  321. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_warnings.h +0 -0
  322. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_weakref.h +0 -0
  323. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/intrcheck.h +0 -0
  324. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/iterobject.h +0 -0
  325. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/listobject.h +0 -0
  326. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/lock.h +0 -0
  327. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/longobject.h +0 -0
  328. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/marshal.h +0 -0
  329. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/memoryobject.h +0 -0
  330. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/methodobject.h +0 -0
  331. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/modsupport.h +0 -0
  332. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/moduleobject.h +0 -0
  333. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/monitoring.h +0 -0
  334. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/object.h +0 -0
  335. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/objimpl.h +0 -0
  336. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/opcode.h +0 -0
  337. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/opcode_ids.h +0 -0
  338. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/osdefs.h +0 -0
  339. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/osmodule.h +0 -0
  340. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/patchlevel.h +0 -0
  341. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/py_curses.h +0 -0
  342. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pyatomic.h +0 -0
  343. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pybuffer.h +0 -0
  344. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pycapsule.h +0 -0
  345. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pyconfig.h +0 -0
  346. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pydtrace.h +0 -0
  347. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pyerrors.h +0 -0
  348. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pyexpat.h +0 -0
  349. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pyframe.h +0 -0
  350. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pyhash.h +0 -0
  351. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pylifecycle.h +0 -0
  352. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pymacconfig.h +0 -0
  353. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pymacro.h +0 -0
  354. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pymath.h +0 -0
  355. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pymem.h +0 -0
  356. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pyport.h +0 -0
  357. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pystate.h +0 -0
  358. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pystats.h +0 -0
  359. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pystrcmp.h +0 -0
  360. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pystrtod.h +0 -0
  361. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pythonrun.h +0 -0
  362. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pythread.h +0 -0
  363. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/pytypedefs.h +0 -0
  364. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/rangeobject.h +0 -0
  365. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/refcount.h +0 -0
  366. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/setobject.h +0 -0
  367. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/sliceobject.h +0 -0
  368. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/structmember.h +0 -0
  369. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/structseq.h +0 -0
  370. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/sysmodule.h +0 -0
  371. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/traceback.h +0 -0
  372. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/tupleobject.h +0 -0
  373. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/typeslots.h +0 -0
  374. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/unicodeobject.h +0 -0
  375. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/warnings.h +0 -0
  376. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/include/weakrefobject.h +0 -0
  377. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/cpp/pytron_bridge.cpp +0 -0
  378. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/java/com/pytron/shell/MainActivity.kt +0 -0
  379. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  380. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  381. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/build.gradle +0 -0
  382. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/gradle/wrapper/gradle-wrapper.jar +0 -0
  383. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/gradle/wrapper/gradle-wrapper.properties +0 -0
  384. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/gradle.properties +0 -0
  385. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/gradlew.bat +0 -0
  386. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/android/shell/settings.gradle +0 -0
  387. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/darwin.py +0 -0
  388. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/darwin_ops/libs.py +0 -0
  389. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/darwin_ops/system.py +0 -0
  390. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/darwin_ops/utils.py +0 -0
  391. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/darwin_ops/webview.py +0 -0
  392. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/darwin_ops/window.py +0 -0
  393. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/interface.py +0 -0
  394. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/linux.py +0 -0
  395. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/linux_ops/libs.py +0 -0
  396. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/linux_ops/system.py +0 -0
  397. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/linux_ops/utils.py +0 -0
  398. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/linux_ops/webview.py +0 -0
  399. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/linux_ops/window.py +0 -0
  400. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/windows.py +0 -0
  401. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/windows_ops/__init__.py +0 -0
  402. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/windows_ops/constants.py +0 -0
  403. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/windows_ops/system.py +0 -0
  404. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/windows_ops/utils.py +0 -0
  405. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/windows_ops/webview.py +0 -0
  406. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/platforms/windows_ops/window.py +0 -0
  407. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/plugin.py +0 -0
  408. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/rcedit-x64.exe +0 -0
  409. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/router.py +0 -0
  410. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/serializer.py +0 -0
  411. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/shortcuts.py +0 -0
  412. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/state.py +0 -0
  413. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/tray.py +0 -0
  414. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/updater.py +0 -0
  415. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/utf8_hook.py +0 -0
  416. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/utils.py +0 -0
  417. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron/webview.py +0 -0
  418. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/pytron_kit.egg-info/SOURCES.txt +0 -0
  419. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/setup.cfg +0 -0
  420. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_android_builder.py +0 -0
  421. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_android_ops.py +0 -0
  422. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_application.py +0 -0
  423. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_chrome_mojo.py +0 -0
  424. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_cli.py +0 -0
  425. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_codegen.py +0 -0
  426. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_config.py +0 -0
  427. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_darwin_ops.py +0 -0
  428. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_extras.py +0 -0
  429. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_lifecycle.py +0 -0
  430. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_linux_ops.py +0 -0
  431. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_native.py +0 -0
  432. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_pack_assets.py +0 -0
  433. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_pack_builds.py +0 -0
  434. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_pack_installers.py +0 -0
  435. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_pack_mandatory_resources.py +0 -0
  436. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_pack_utils.py +0 -0
  437. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_platform_ops.py +0 -0
  438. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_plugin.py +0 -0
  439. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_pytron.py +0 -0
  440. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_router.py +0 -0
  441. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_rust_ipc.py +0 -0
  442. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_secure_pack.py +0 -0
  443. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_serializer.py +0 -0
  444. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_state.py +0 -0
  445. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_windows.py +0 -0
  446. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_windows_facade.py +0 -0
  447. {pytron_kit-0.3.12 → pytron_kit-0.3.13}/tests/test_windows_ops.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytron-kit
3
- Version: 0.3.12
3
+ Version: 0.3.13
4
4
  Summary: An Electron-like library for Python to build Cross Platform Apps
5
5
  Author: Ghua8088
6
6
  License: Apache-2.0
@@ -12,7 +12,7 @@ namespaces = false
12
12
 
13
13
  [project]
14
14
  name = "pytron-kit"
15
- version = "0.3.12"
15
+ version = "0.3.13"
16
16
  description = "An Electron-like library for Python to build Cross Platform Apps"
17
17
  readme = "README.md"
18
18
  requires-python = ">=3.7"
@@ -19,12 +19,16 @@ try:
19
19
  from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
20
20
 
21
21
  class bdist_wheel(_bdist_wheel):
22
+ def finalize_options(self):
23
+ super().finalize_options()
24
+ # This is the "Universal ABI3" tag
25
+ self.py_limited_api = "cp37"
26
+
22
27
  def get_tag(self):
23
28
  python, abi, plat = super().get_tag()
24
- # Since we use ABI3, we are compatible with any Python 3.x
25
- if python.startswith("cp"):
26
- return "py3", "none", plat
27
- return python, abi, plat
29
+ # Force py3-none for any platform build
30
+ return "py3", "none", plat
31
+
28
32
  except ImportError:
29
33
  bdist_wheel = None
30
34
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes