summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_generated_cases.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_generated_cases.py b/Lib/test/test_generated_cases.py
index 6017758..18bf8ab 100644
--- a/Lib/test/test_generated_cases.py
+++ b/Lib/test/test_generated_cases.py
@@ -890,8 +890,8 @@ class TestGeneratedAbstractCases(unittest.TestCase):
"""
output = """
case OP: {
- _Py_UOpsSymType *arg1;
- _Py_UOpsSymType *out;
+ _Py_UopsSymbol *arg1;
+ _Py_UopsSymbol *out;
arg1 = stack_pointer[-1];
eggs();
stack_pointer[-1] = out;
@@ -899,7 +899,7 @@ class TestGeneratedAbstractCases(unittest.TestCase):
}
case OP2: {
- _Py_UOpsSymType *out;
+ _Py_UopsSymbol *out;
out = _Py_uop_sym_new_unknown(ctx);
if (out == NULL) goto out_of_space;
stack_pointer[-1] = out;
@@ -924,7 +924,7 @@ class TestGeneratedAbstractCases(unittest.TestCase):
"""
output = """
case OP: {
- _Py_UOpsSymType *out;
+ _Py_UopsSymbol *out;
out = _Py_uop_sym_new_unknown(ctx);
if (out == NULL) goto out_of_space;
stack_pointer[-1] = out;
@@ -932,8 +932,8 @@ class TestGeneratedAbstractCases(unittest.TestCase):
}
case OP2: {
- _Py_UOpsSymType *arg1;
- _Py_UOpsSymType *out;
+ _Py_UopsSymbol *arg1;
+ _Py_UopsSymbol *out;
arg1 = stack_pointer[-1];
stack_pointer[-1] = out;
break;