cinderx 2026.1.16.2__cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.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 (68) hide show
  1. __static__/__init__.py +641 -0
  2. __static__/compiler_flags.py +8 -0
  3. __static__/enum.py +160 -0
  4. __static__/native_utils.py +77 -0
  5. __static__/type_code.py +48 -0
  6. __strict__/__init__.py +39 -0
  7. _cinderx.so +0 -0
  8. cinderx/__init__.py +577 -0
  9. cinderx/__pycache__/__init__.cpython-314.pyc +0 -0
  10. cinderx/_asyncio.py +156 -0
  11. cinderx/compileall.py +710 -0
  12. cinderx/compiler/__init__.py +40 -0
  13. cinderx/compiler/__main__.py +137 -0
  14. cinderx/compiler/config.py +7 -0
  15. cinderx/compiler/consts.py +72 -0
  16. cinderx/compiler/debug.py +70 -0
  17. cinderx/compiler/dis_stable.py +283 -0
  18. cinderx/compiler/errors.py +151 -0
  19. cinderx/compiler/flow_graph_optimizer.py +1287 -0
  20. cinderx/compiler/future.py +91 -0
  21. cinderx/compiler/misc.py +32 -0
  22. cinderx/compiler/opcode_cinder.py +18 -0
  23. cinderx/compiler/opcode_static.py +100 -0
  24. cinderx/compiler/opcodebase.py +158 -0
  25. cinderx/compiler/opcodes.py +991 -0
  26. cinderx/compiler/optimizer.py +547 -0
  27. cinderx/compiler/pyassem.py +3711 -0
  28. cinderx/compiler/pycodegen.py +7660 -0
  29. cinderx/compiler/pysourceloader.py +62 -0
  30. cinderx/compiler/static/__init__.py +1404 -0
  31. cinderx/compiler/static/compiler.py +629 -0
  32. cinderx/compiler/static/declaration_visitor.py +335 -0
  33. cinderx/compiler/static/definite_assignment_checker.py +280 -0
  34. cinderx/compiler/static/effects.py +160 -0
  35. cinderx/compiler/static/module_table.py +666 -0
  36. cinderx/compiler/static/type_binder.py +2176 -0
  37. cinderx/compiler/static/types.py +10580 -0
  38. cinderx/compiler/static/util.py +81 -0
  39. cinderx/compiler/static/visitor.py +91 -0
  40. cinderx/compiler/strict/__init__.py +69 -0
  41. cinderx/compiler/strict/class_conflict_checker.py +249 -0
  42. cinderx/compiler/strict/code_gen_base.py +409 -0
  43. cinderx/compiler/strict/common.py +507 -0
  44. cinderx/compiler/strict/compiler.py +352 -0
  45. cinderx/compiler/strict/feature_extractor.py +130 -0
  46. cinderx/compiler/strict/flag_extractor.py +97 -0
  47. cinderx/compiler/strict/loader.py +827 -0
  48. cinderx/compiler/strict/preprocessor.py +11 -0
  49. cinderx/compiler/strict/rewriter/__init__.py +5 -0
  50. cinderx/compiler/strict/rewriter/remove_annotations.py +84 -0
  51. cinderx/compiler/strict/rewriter/rewriter.py +975 -0
  52. cinderx/compiler/strict/runtime.py +77 -0
  53. cinderx/compiler/symbols.py +1754 -0
  54. cinderx/compiler/unparse.py +414 -0
  55. cinderx/compiler/visitor.py +194 -0
  56. cinderx/jit.py +230 -0
  57. cinderx/opcode.py +202 -0
  58. cinderx/static.py +113 -0
  59. cinderx/strictmodule.py +6 -0
  60. cinderx/test_support.py +341 -0
  61. cinderx-2026.1.16.2.dist-info/METADATA +15 -0
  62. cinderx-2026.1.16.2.dist-info/RECORD +68 -0
  63. cinderx-2026.1.16.2.dist-info/WHEEL +6 -0
  64. cinderx-2026.1.16.2.dist-info/licenses/LICENSE +21 -0
  65. cinderx-2026.1.16.2.dist-info/top_level.txt +5 -0
  66. opcodes/__init__.py +0 -0
  67. opcodes/assign_opcode_numbers.py +272 -0
  68. opcodes/cinderx_opcodes.py +121 -0
@@ -0,0 +1,77 @@
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+
3
+ # pyre-strict
4
+
5
+ from __future__ import annotations
6
+
7
+
8
+ try:
9
+ # pyre-ignore[21]: Undefined import
10
+ from cinderx import freeze_type as cinder_freeze
11
+ except ImportError:
12
+ cinder_freeze = None
13
+
14
+
15
+ try:
16
+ from cinder import warn_on_inst_dict
17
+ except ImportError:
18
+ warn_on_inst_dict = None
19
+
20
+
21
+ __all__ = [
22
+ "freeze_type",
23
+ "loose_slots",
24
+ "strict_slots",
25
+ "mutable",
26
+ "extra_slot",
27
+ "_mark_cached_property",
28
+ "set_freeze_enabled",
29
+ ]
30
+
31
+ TYPE_FREEZE_ENABLED = True
32
+
33
+
34
+ def set_freeze_enabled(flag: bool) -> bool:
35
+ "returns old value"
36
+ global TYPE_FREEZE_ENABLED
37
+ old = TYPE_FREEZE_ENABLED
38
+ TYPE_FREEZE_ENABLED = flag
39
+ return old
40
+
41
+
42
+ def freeze_type(obj: type[object]) -> type[object]:
43
+ if cinder_freeze is not None:
44
+ if TYPE_FREEZE_ENABLED:
45
+ cinder_freeze(obj)
46
+ elif warn_on_inst_dict is not None:
47
+ warn_on_inst_dict(obj)
48
+
49
+ return obj
50
+
51
+
52
+ def loose_slots(obj: type[object]) -> type[object]:
53
+ """Indicates that a type defined in a strict module should support assigning
54
+ additional variables to __dict__ to support migration."""
55
+ if warn_on_inst_dict is not None:
56
+ warn_on_inst_dict(obj)
57
+ return obj
58
+
59
+
60
+ def mutable(obj: type[object]) -> type[object]:
61
+ """Marks a type defined in a strict module as supporting mutability"""
62
+ return obj
63
+
64
+
65
+ def strict_slots(obj: type[object]) -> type[object]:
66
+ """Marks a type defined in a strict module to get slots automatically
67
+ and no __dict__ is created"""
68
+ return obj
69
+
70
+
71
+ def extra_slot(obj: type[object], _name: str) -> type[object]:
72
+ """mark `name` to be part of __slots__ in obj"""
73
+ return obj
74
+
75
+
76
+ def _mark_cached_property(obj: object, is_async: bool, original_dec: object) -> object:
77
+ return obj