..
async_def.py
Support 'yield from' (Python 3.3) and await (Python 3.5) expressions.
2019-10-10 10:59:10 -07:00
async_for.py
Modify async for test to avoid known try-except problem with trailing unnecessary continue when the try-except is not followed by any other statements.
2020-10-22 15:35:59 +11:00
binary_ops.py
Reduce code duplication for pre-3.11 binary ops, based on #348
2023-06-01 13:55:17 -07:00
build_const_key_map.py
Adds support for BUILD_CONST_KEY_MAP opcode
2020-10-20 01:46:38 -04:00
chain_assignment.py
Support chained assignment statements, e.g. a = b = c.
2020-10-23 21:19:01 +11:00
class_NODE_BINARY.py
fix #396 Unsupported Node type: 27 ( #397 )
2023-11-11 10:22:49 -08:00
conditional_expressions.py
Support for conditonal expression (if-expression) - review findings
2022-04-02 13:57:10 +02:00
conditional_expressions_py2.py
Add additional versions of conditional_expressions test
2022-04-26 13:11:40 -07:00
contains_op.py
Adds support for CONTAINS_OP opcode
2021-10-10 00:40:39 -04:00
f-string.py
CRAs
2020-10-20 16:42:19 +11:00
GEN_START.py
Add GEN_START support ( #392 )
2023-10-20 13:43:14 -07:00
if_elif_else.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
is_op.py
Adds support for IS_OP opcode
2021-10-07 20:29:18 -04:00
iter_unpack.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
lambdas_assignment.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
list_extend.py
Adds an extra test case
2021-10-07 02:02:00 -04:00
load_method.py
Support LOAD_METHOD and CALL_METHOD from Python 3.7+
2021-04-12 09:55:52 -07:00
loadbuild_class.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
loop_try_except.py
Modify async for test to avoid known try-except problem with trailing unnecessary continue when the try-except is not followed by any other statements.
2020-10-22 15:35:59 +11:00
matrix_mult_oper.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
nan_inf.py
Handle NaN and infinity values
2020-10-15 21:04:57 -04:00
print_to.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
private_name.py
Unmangle private names ('__' prefix) in class declarations.
2019-10-10 14:47:48 -07:00
simple_const.py
Add a new unit test framework that actually checks the output of
2019-10-03 15:33:52 -07:00
test_applyEquiv.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_augmentedAssign.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_calls.py
Add unit test for basic function calls (py3)
2023-02-27 11:59:01 -08:00
test_class.py
Update tests to show that #39 is resolved, and add dummy support for
2020-10-22 09:06:57 -07:00
test_class_method.py
Update tests to show that #39 is resolved, and add dummy support for
2020-10-22 09:06:57 -07:00
test_decorators.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_del.py
Migrate a couple more passing tests, and handle end-of-line comments
2019-10-03 20:56:52 -07:00
test_dict.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
test_divide_future.py
Move more tests into the new framework, including current xfails.
2019-10-07 13:38:19 -07:00
test_divide_no_future.py
Move more tests into the new framework, including current xfails.
2019-10-07 13:38:19 -07:00
test_docstring.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
test_empty.py
Migrate a couple more passing tests, and handle end-of-line comments
2019-10-03 20:56:52 -07:00
test_exceptions.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_exec.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_expressions.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_extendedImport.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_extendedPrint.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_finally.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
test_for_loop_py3.8.py
add a test
2022-07-30 00:02:47 -05:00
test_functions.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_functions_py3.py
Support Python 3.x kw-only arguments.
2019-10-08 11:36:12 -07:00
test_global.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_globals.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_import.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_import_as.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_integers.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_iterators.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_kwnames.py
Added support for opcodes: (in DESC)
2023-07-18 18:33:03 +03:00
test_lambda.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_listComprehensions.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_loops.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_loops2.py
Migrate several more passing tests to new test framework
2019-10-04 11:05:52 -07:00
test_misc.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_nested_elif.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_nested_ifs.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_nested_scopes.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_pop_jump_forward_if_false.py
Added support for opcodes: (in DESC)
2023-07-18 18:33:03 +03:00
test_pop_jump_forward_if_true.py
Added support for opcodes: (in DESC)
2023-07-18 18:33:03 +03:00
test_prettyprint.py
Unify test_prettyprint variations and add to passing tests.
2019-10-07 13:42:39 -07:00
test_print.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_print_to.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_sets.py
Add test
2023-02-12 17:01:37 -08:00
test_single_stmt.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_slices.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_tuple_params.py
Migrate test_tuple_params to new test framework.
2019-10-07 13:54:46 -07:00
test_tuples.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_with.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
test_yield.py
Move equivalent reference sources to the input directory
2019-10-03 22:08:44 -07:00
try_except_finally.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
unicode.py
Add tests for unicode/bytes string literals
2019-10-06 13:50:53 -07:00
unicode_future.py
Add tests for unicode/bytes string literals
2019-10-06 13:50:53 -07:00
unpack_assign.py
Add a test for unpack assignment
2019-10-04 14:33:38 -07:00
unpack_empty.py
CRLF -> LF
2020-10-23 11:28:42 +11:00
variable_annotations.py
Adds support for SETUP_ANNOTATION op and variable annotations
2020-10-21 21:42:13 -04:00
while_loop.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
while_loops2.py
Migrate additional tests which previously didn't have reference source to
2019-10-07 17:06:08 -07:00
yield_from.py
Support 'yield from' (Python 3.3) and await (Python 3.5) expressions.
2019-10-10 10:59:10 -07:00