Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-113317: Argument Clinic: Add libclinic.clanguage #117455

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions Lib/test/test_clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
with test_tools.imports_under_tool('clinic'):
import libclinic
from libclinic.converters import int_converter, str_converter
from libclinic.function import (
permute_optional_groups, permute_right_option_groups,
permute_left_option_groups)
import clinic
from clinic import DSLParser

Expand Down Expand Up @@ -679,7 +682,7 @@ def test_parse_file_strange_extension(self) -> None:

class ClinicGroupPermuterTest(TestCase):
def _test(self, l, m, r, output):
computed = clinic.permute_optional_groups(l, m, r)
computed = permute_optional_groups(l, m, r)
self.assertEqual(output, computed)

def test_range(self):
Expand Down Expand Up @@ -721,7 +724,7 @@ def test_right_only(self):

def test_have_left_options_but_required_is_empty(self):
def fn():
clinic.permute_optional_groups(['a'], [], [])
permute_optional_groups(['a'], [], [])
self.assertRaises(ValueError, fn)


Expand Down Expand Up @@ -3764,7 +3767,7 @@ def test_permute_left_option_groups(self):
(1, 2, 3),
)
data = list(zip([1, 2, 3])) # Generate a list of 1-tuples.
actual = tuple(clinic.permute_left_option_groups(data))
actual = tuple(permute_left_option_groups(data))
self.assertEqual(actual, expected)

def test_permute_right_option_groups(self):
Expand All @@ -3775,7 +3778,7 @@ def test_permute_right_option_groups(self):
(1, 2, 3),
)
data = list(zip([1, 2, 3])) # Generate a list of 1-tuples.
actual = tuple(clinic.permute_right_option_groups(data))
actual = tuple(permute_right_option_groups(data))
self.assertEqual(actual, expected)

def test_permute_optional_groups(self):
Expand Down Expand Up @@ -3854,7 +3857,7 @@ def test_permute_optional_groups(self):
for params in dataset:
with self.subTest(**params):
left, required, right, expected = params.values()
permutations = clinic.permute_optional_groups(left, required, right)
permutations = permute_optional_groups(left, required, right)
actual = tuple(permutations)
self.assertEqual(actual, expected)

Expand Down
Loading
Loading