mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-23 05:00:07 +00:00
a1fe069c8c
Or rather set precedence on call_stmt and expr_stmt Adjust pytest test_single_compile so it works now
25 lines
726 B
Python
25 lines
726 B
Python
import pytest
|
|
from uncompyle6 import code_deparse
|
|
from xdis.version_info import PYTHON_VERSION_TRIPLE
|
|
|
|
pytest.mark.skip(PYTHON_VERSION_TRIPLE < (2, 7), reason="need Python < 2.7")
|
|
|
|
|
|
def test_single_mode():
|
|
single_expressions = (
|
|
"i = 1",
|
|
"i and (j or k)",
|
|
"i += 1",
|
|
"i = j % 4",
|
|
"i = {}",
|
|
"i = []",
|
|
"for i in range(10):\n i\n",
|
|
"for i in range(10):\n for j in range(10):\n i + j\n",
|
|
# 'try:\n i\nexcept Exception:\n j\nelse:\n k\n'
|
|
)
|
|
|
|
for expr in single_expressions:
|
|
code = compile(expr + "\n", "<string>", "single")
|
|
got = code_deparse(code, compile_mode="single").text
|
|
assert got == expr + "\n"
|