.. |
__init__.py
|
|
|
asserts_test.py
|
Move away from deprecated asserts
|
2020-06-30 16:10:22 -07:00 |
asserts.py
|
Internal cleanup: let each converter only perform the analysis it needs. Since the bottleneck is inside the conversion process, this is expected to speed it up noticeably.
|
2020-05-02 05:17:08 -07:00 |
break_statements_test.py
|
Clean up the test to remove duplication and run with within the real framework.
|
2020-06-29 11:31:01 -07:00 |
break_statements.py
|
Internal cleanup: let each converter only perform the analysis it needs. Since the bottleneck is inside the conversion process, this is expected to speed it up noticeably.
|
2020-05-02 05:17:08 -07:00 |
BUILD
|
Switch all sources to PY3 only.
|
2020-10-22 06:34:09 -07:00 |
call_trees_test.py
|
Clean up the test to remove duplication and run with within the real framework.
|
2020-06-29 11:31:01 -07:00 |
call_trees.py
|
Replace instances of "whitelist" with "allowlist" where possible. See Google Developer guidelines at https://developers.google.com/style/word-list#blacklist for more information.
|
2020-07-08 10:13:43 -07:00 |
conditional_expressions_test.py
|
Clean up the test to remove duplication and run with within the real framework.
|
2020-06-29 11:31:01 -07:00 |
conditional_expressions.py
|
Use the nonlocal mechanism for if statements. This is the same mechanism used by for and while loops and it allows reusing much of the code.
|
2020-05-19 15:06:45 -07:00 |
continue_statements_test.py
|
Clean up the test to remove duplication and run with within the real framework.
|
2020-06-29 11:31:01 -07:00 |
continue_statements.py
|
Internal cleanup: let each converter only perform the analysis it needs. Since the bottleneck is inside the conversion process, this is expected to speed it up noticeably.
|
2020-05-02 05:17:08 -07:00 |
control_flow_deprecated_py2.py
|
Fix liveness analysis for variables closed over by functions. Previously, these variables were only live at the closing function's point of definition. After this change, these variables are live at every statement that may be reached by this function definition. This is more consistent with Python's late binding mechanism.
|
2020-05-07 04:41:39 -07:00 |
control_flow_test.py
|
Internal symbol name change.
|
2021-01-05 14:15:45 -08:00 |
control_flow.py
|
Test identity gradient in presence of control flow.
|
2020-11-13 07:44:45 -08:00 |
directives_test.py
|
Move away from deprecated asserts
|
2020-06-30 16:10:22 -07:00 |
directives.py
|
fix typos in python directory
|
2020-10-29 16:21:24 +03:00 |
functions_test.py
|
Clean up the test to remove duplication and run with within the real framework.
|
2020-06-29 11:31:01 -07:00 |
functions.py
|
More robustly check for undefined symbols before attempting to use them. This check is required because undefined symbols are initialized with a special placeholder before entering control flow. This placeholder can lead to confusing error messages if left unchecked. The change introduces two more general operators: "variable load" and "return".
|
2020-05-13 15:08:40 -07:00 |
list_comprehensions_test.py
|
Clean up the test to remove duplication and run with within the real framework.
|
2020-06-29 11:31:01 -07:00 |
list_comprehensions.py
|
|
|
lists_test.py
|
Clean up the test to remove duplication and run with within the real framework.
|
2020-06-29 11:31:01 -07:00 |
lists.py
|
Internal cleanup: let each converter only perform the analysis it needs. Since the bottleneck is inside the conversion process, this is expected to speed it up noticeably.
|
2020-05-02 05:17:08 -07:00 |
logical_expressions_test.py
|
Clean up the test to remove duplication and run with within the real framework.
|
2020-06-29 11:31:01 -07:00 |
logical_expressions.py
|
|
|
return_statements_test.py
|
Clean up the test to remove duplication and run with within the real framework.
|
2020-06-29 11:31:01 -07:00 |
return_statements.py
|
fix typos in python directory
|
2020-10-29 16:21:24 +03:00 |
slices_test.py
|
Clean up the test to remove duplication and run with within the real framework.
|
2020-06-29 11:31:01 -07:00 |
slices.py
|
Upgrade to gast 0.4.
|
2021-01-06 10:17:47 -08:00 |
variables_test.py
|
Clean up the test to remove duplication and run with within the real framework.
|
2020-06-29 11:31:01 -07:00 |
variables.py
|
Rewrite del to treat undefinedness in a consistent manner.
|
2020-05-23 20:33:54 -07:00 |