summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2024-11-08 05:41:54 (GMT)
committerGitHub <noreply@github.com>2024-11-08 05:41:54 (GMT)
commit06a8b0bb5ee0d01ed93315137c41c104a11e4640 (patch)
treeac2d8c1fe90ecba50c2dfc3e74fa79af7cd7a067 /Tools
parentc222441fa7f89d448e476c252ba09be588568392 (diff)
downloadcpython-06a8b0bb5ee0d01ed93315137c41c104a11e4640.zip
cpython-06a8b0bb5ee0d01ed93315137c41c104a11e4640.tar.gz
cpython-06a8b0bb5ee0d01ed93315137c41c104a11e4640.tar.bz2
gh-122943: Remove the object converter for var-positional parameter (GH-126560)
Diffstat (limited to 'Tools')
-rw-r--r--Tools/clinic/libclinic/converters.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Tools/clinic/libclinic/converters.py b/Tools/clinic/libclinic/converters.py
index 2d103c9..860ff81 100644
--- a/Tools/clinic/libclinic/converters.py
+++ b/Tools/clinic/libclinic/converters.py
@@ -1251,7 +1251,3 @@ class varpos_array_converter(CConverter):
def parse_arg(self, argname: str, displayname: str, *, limited_capi: bool) -> str | None:
raise AssertionError('should never be called')
-
-# XXX: temporary
-class varpos_object_converter(varpos_tuple_converter):
- pass