Skip to content

Commit a8d9010

Browse files
DinoVmeta-codesync[bot]
authored andcommitted
Fix flow_graph initialization for 3.15
Summary: The 3.15 static compiler was picking up the wrong flow graph implementation. This caused it to be broken w/ the recent prologue changes. Reviewed By: yoney Differential Revision: D92118520 fbshipit-source-id: 434caa3e7bc6ee8a0bc5a94424ac413a15d6e402
1 parent 1c04261 commit a8d9010

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cinderx/PythonLib/cinderx/compiler/static/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1391,7 +1391,7 @@ def emit_load_static_method(
13911391

13921392

13931393
class Static315CodeGenerator(Static314CodeGenerator, CinderCodeGenerator315):
1394-
pass
1394+
flow_graph = PyFlowGraph315
13951395

13961396

13971397
if sys.version_info >= (3, 15):

0 commit comments

Comments
 (0)