Lines Matching refs:_testcapi
7 _testcapi = support.import_module('_testcapi') variable
8 from _testcapi import getargs_keywords, getargs_keyword_only
43 from _testcapi import UCHAR_MAX, USHRT_MAX, UINT_MAX, ULONG_MAX, INT_MAX, \
155 from _testcapi import getargs_b
181 from _testcapi import getargs_B
207 from _testcapi import getargs_H
234 from _testcapi import getargs_I
261 from _testcapi import getargs_k
287 from _testcapi import getargs_h
313 from _testcapi import getargs_i
339 from _testcapi import getargs_l
365 from _testcapi import getargs_n
392 from _testcapi import getargs_L
420 from _testcapi import getargs_K
449 from _testcapi import getargs_f
478 from _testcapi import getargs_f
483 from _testcapi import getargs_d
507 from _testcapi import getargs_D
539 from _testcapi import getargs_p
565 from _testcapi import get_args
592 from _testcapi import getargs_tuple
607 from _testcapi import get_kwargs
765 from _testcapi import getargs_positional_only_and_keywords as getargs
799 from _testcapi import getargs_c
809 from _testcapi import getargs_y
818 from _testcapi import getargs_y_star
827 from _testcapi import getargs_y_hash
837 from _testcapi import getargs_w_star
853 from _testcapi import getargs_C
865 from _testcapi import getargs_s
874 from _testcapi import getargs_s_star
883 from _testcapi import getargs_s_hash
892 from _testcapi import getargs_z
901 from _testcapi import getargs_z_star
910 from _testcapi import getargs_z_hash
919 from _testcapi import getargs_es
931 from _testcapi import getargs_et
945 from _testcapi import getargs_es_hash
969 from _testcapi import getargs_et_hash
995 from _testcapi import getargs_u
1004 from _testcapi import getargs_u_hash
1013 from _testcapi import getargs_Z
1022 from _testcapi import getargs_Z_hash
1033 from _testcapi import getargs_S
1042 from _testcapi import getargs_Y
1051 from _testcapi import getargs_U
1062 self.assertEqual(_testcapi.argparsing("Hello", "World"), 1)
1110 _testcapi.parse_tuple_and_keywords(tuple_1, dict_b,
1122 _testcapi.parse_tuple_and_keywords(empty_tuple, dict_b,
1136 parse = _testcapi.parse_tuple_and_keywords
1171 self.assertRaises(TypeError, _testcapi.parse_tuple_and_keywords,
1173 self.assertRaises(ValueError, _testcapi.parse_tuple_and_keywords,
1175 self.assertRaises(ValueError, _testcapi.parse_tuple_and_keywords,
1177 self.assertRaises(ValueError, _testcapi.parse_tuple_and_keywords,
1183 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1185 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1187 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1189 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1191 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1193 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1195 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1197 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1199 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1201 self.assertRaises(SystemError, _testcapi.parse_tuple_and_keywords,
1205 parse = _testcapi.parse_tuple_and_keywords
1231 locals().update((name, getattr(_testcapi, name))
1232 for name in dir(_testcapi)