1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
|
#ifndef Py_BUILD_CORE_BUILTIN
# define Py_BUILD_CORE_MODULE 1
#endif
/* Always enable assertions */
#undef NDEBUG
#define PY_SSIZE_T_CLEAN
#include "Python.h"
// Used for clone_with_conv_f1 and clone_with_conv_v2
typedef struct {
const char *name;
} custom_t;
static int
custom_converter(PyObject *obj, custom_t *val)
{
return 1;
}
#include "clinic/_testclinic.c.h"
/* Pack arguments to a tuple, implicitly increase all the arguments' refcount.
* NULL arguments will be replaced to Py_None. */
static PyObject *
pack_arguments_newref(int argc, ...)
{
assert(!PyErr_Occurred());
PyObject *tuple = PyTuple_New(argc);
if (!tuple) {
return NULL;
}
va_list vargs;
va_start(vargs, argc);
for (int i = 0; i < argc; i++) {
PyObject *arg = va_arg(vargs, PyObject *);
if (arg) {
if (_PyObject_IsFreed(arg)) {
PyErr_Format(PyExc_AssertionError,
"argument %d at %p is freed or corrupted!",
i, arg);
va_end(vargs);
Py_DECREF(tuple);
return NULL;
}
}
else {
arg = Py_None;
}
PyTuple_SET_ITEM(tuple, i, Py_NewRef(arg));
}
va_end(vargs);
return tuple;
}
/* Pack arguments to a tuple.
* `wrapper` is function which converts primitive type to PyObject.
* `arg_type` is type that arguments should be converted to before wrapped. */
#define RETURN_PACKED_ARGS(argc, wrapper, arg_type, ...) do { \
assert(!PyErr_Occurred()); \
arg_type in[argc] = {__VA_ARGS__}; \
PyObject *out[argc] = {NULL,}; \
for (int _i = 0; _i < argc; _i++) { \
out[_i] = wrapper(in[_i]); \
assert(out[_i] || PyErr_Occurred()); \
if (!out[_i]) { \
for (int _j = 0; _j < _i; _j++) { \
Py_DECREF(out[_j]); \
} \
return NULL; \
} \
} \
PyObject *tuple = PyTuple_New(argc); \
if (!tuple) { \
for (int _i = 0; _i < argc; _i++) { \
Py_DECREF(out[_i]); \
} \
return NULL; \
} \
for (int _i = 0; _i < argc; _i++) { \
PyTuple_SET_ITEM(tuple, _i, out[_i]); \
} \
return tuple; \
} while (0)
/*[clinic input]
module _testclinic
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=d4981b80d6efdb12]*/
/*[clinic input]
test_empty_function
[clinic start generated code]*/
static PyObject *
test_empty_function_impl(PyObject *module)
/*[clinic end generated code: output=0f8aeb3ddced55cb input=0dd7048651ad4ae4]*/
{
Py_RETURN_NONE;
}
/*[clinic input]
objects_converter
a: object
b: object = NULL
/
[clinic start generated code]*/
static PyObject *
objects_converter_impl(PyObject *module, PyObject *a, PyObject *b)
/*[clinic end generated code: output=3f9c9415ec86c695 input=1533b1bd94187de4]*/
{
return pack_arguments_newref(2, a, b);
}
/*[clinic input]
bytes_object_converter
a: PyBytesObject
/
[clinic start generated code]*/
static PyObject *
bytes_object_converter_impl(PyObject *module, PyBytesObject *a)
/*[clinic end generated code: output=7732da869d74b784 input=94211751e7996236]*/
{
if (!PyBytes_Check(a)) {
PyErr_SetString(PyExc_AssertionError,
"argument a is not a PyBytesObject");
return NULL;
}
return pack_arguments_newref(1, a);
}
/*[clinic input]
byte_array_object_converter
a: PyByteArrayObject
/
[clinic start generated code]*/
static PyObject *
byte_array_object_converter_impl(PyObject *module, PyByteArrayObject *a)
/*[clinic end generated code: output=51f15c76f302b1f7 input=b04d253db51c6f56]*/
{
if (!PyByteArray_Check(a)) {
PyErr_SetString(PyExc_AssertionError,
"argument a is not a PyByteArrayObject");
return NULL;
}
return pack_arguments_newref(1, a);
}
/*[clinic input]
unicode_converter
a: unicode
/
[clinic start generated code]*/
static PyObject *
unicode_converter_impl(PyObject *module, PyObject *a)
/*[clinic end generated code: output=1b4a4adbb6ac6e34 input=de7b5adbf07435ba]*/
{
if (!PyUnicode_Check(a)) {
PyErr_SetString(PyExc_AssertionError,
"argument a is not a unicode object");
return NULL;
}
return pack_arguments_newref(1, a);
}
/*[clinic input]
bool_converter
a: bool = True
b: bool(accept={object}) = True
c: bool(accept={int}) = True
/
[clinic start generated code]*/
static PyObject *
bool_converter_impl(PyObject *module, int a, int b, int c)
/*[clinic end generated code: output=17005b0c29afd590 input=7f6537705b2f32f4]*/
{
PyObject *obj_a = a ? Py_True : Py_False;
PyObject *obj_b = b ? Py_True : Py_False;
PyObject *obj_c = c ? Py_True : Py_False;
return pack_arguments_newref(3, obj_a, obj_b, obj_c);
}
/*[clinic input]
char_converter
a: char = b'A'
b: char = b'\a'
c: char = b'\b'
d: char = b'\t'
e: char = b'\n'
f: char = b'\v'
g: char = b'\f'
h: char = b'\r'
i: char = b'"'
j: char = b"'"
k: char = b'?'
l: char = b'\\'
m: char = b'\000'
n: char = b'\377'
/
[clinic start generated code]*/
static PyObject *
char_converter_impl(PyObject *module, char a, char b, char c, char d, char e,
char f, char g, char h, char i, char j, char k, char l,
char m, char n)
/*[clinic end generated code: output=f929dbd2e55a9871 input=b601bc5bc7fe85e3]*/
{
RETURN_PACKED_ARGS(14, PyLong_FromUnsignedLong, unsigned char,
a, b, c, d, e, f, g, h, i, j, k, l, m, n);
}
/*[clinic input]
unsigned_char_converter
a: unsigned_char = 12
b: unsigned_char(bitwise=False) = 34
c: unsigned_char(bitwise=True) = 56
/
[clinic start generated code]*/
static PyObject *
unsigned_char_converter_impl(PyObject *module, unsigned char a,
unsigned char b, unsigned char c)
/*[clinic end generated code: output=490af3b39ce0b199 input=e859502fbe0b3185]*/
{
RETURN_PACKED_ARGS(3, PyLong_FromUnsignedLong, unsigned char, a, b, c);
}
/*[clinic input]
short_converter
a: short = 12
/
[clinic start generated code]*/
static PyObject *
short_converter_impl(PyObject *module, short a)
/*[clinic end generated code: output=1ebb7ddb64248988 input=b4e2309a66f650ae]*/
{
RETURN_PACKED_ARGS(1, PyLong_FromLong, long, a);
}
/*[clinic input]
unsigned_short_converter
a: unsigned_short = 12
b: unsigned_short(bitwise=False) = 34
c: unsigned_short(bitwise=True) = 56
/
[clinic start generated code]*/
static PyObject *
unsigned_short_converter_impl(PyObject *module, unsigned short a,
unsigned short b, unsigned short c)
/*[clinic end generated code: output=5f92cc72fc8707a7 input=9d15cd11e741d0c6]*/
{
RETURN_PACKED_ARGS(3, PyLong_FromUnsignedLong, unsigned long, a, b, c);
}
/*[clinic input]
int_converter
a: int = 12
b: int(accept={int}) = 34
c: int(accept={str}) = 45
/
[clinic start generated code]*/
static PyObject *
int_converter_impl(PyObject *module, int a, int b, int c)
/*[clinic end generated code: output=8e56b59be7d0c306 input=a1dbc6344853db7a]*/
{
RETURN_PACKED_ARGS(3, PyLong_FromLong, long, a, b, c);
}
/*[clinic input]
unsigned_int_converter
a: unsigned_int = 12
b: unsigned_int(bitwise=False) = 34
c: unsigned_int(bitwise=True) = 56
/
[clinic start generated code]*/
static PyObject *
unsigned_int_converter_impl(PyObject *module, unsigned int a, unsigned int b,
unsigned int c)
/*[clinic end generated code: output=399a57a05c494cc7 input=8427ed9a3f96272d]*/
{
RETURN_PACKED_ARGS(3, PyLong_FromUnsignedLong, unsigned long, a, b, c);
}
/*[clinic input]
long_converter
a: long = 12
/
[clinic start generated code]*/
static PyObject *
long_converter_impl(PyObject *module, long a)
/*[clinic end generated code: output=9663d936a652707a input=84ad0ef28f24bd85]*/
{
RETURN_PACKED_ARGS(1, PyLong_FromLong, long, a);
}
/*[clinic input]
unsigned_long_converter
a: unsigned_long = 12
b: unsigned_long(bitwise=False) = 34
c: unsigned_long(bitwise=True) = 56
/
[clinic start generated code]*/
static PyObject *
unsigned_long_converter_impl(PyObject *module, unsigned long a,
unsigned long b, unsigned long c)
/*[clinic end generated code: output=120b82ea9ebd93a8 input=440dd6f1817f5d91]*/
{
RETURN_PACKED_ARGS(3, PyLong_FromUnsignedLong, unsigned long, a, b, c);
}
/*[clinic input]
long_long_converter
a: long_long = 12
/
[clinic start generated code]*/
static PyObject *
long_long_converter_impl(PyObject *module, long long a)
/*[clinic end generated code: output=5fb5f2220770c3e1 input=730fcb3eecf4d993]*/
{
RETURN_PACKED_ARGS(1, PyLong_FromLongLong, long long, a);
}
/*[clinic input]
unsigned_long_long_converter
a: unsigned_long_long = 12
b: unsigned_long_long(bitwise=False) = 34
c: unsigned_long_long(bitwise=True) = 56
/
[clinic start generated code]*/
static PyObject *
unsigned_long_long_converter_impl(PyObject *module, unsigned long long a,
unsigned long long b, unsigned long long c)
/*[clinic end generated code: output=65b7273e63501762 input=300737b0bdb230e9]*/
{
RETURN_PACKED_ARGS(3, PyLong_FromUnsignedLongLong, unsigned long long,
a, b, c);
}
/*[clinic input]
py_ssize_t_converter
a: Py_ssize_t = 12
b: Py_ssize_t(accept={int}) = 34
c: Py_ssize_t(accept={int, NoneType}) = 56
/
[clinic start generated code]*/
static PyObject *
py_ssize_t_converter_impl(PyObject *module, Py_ssize_t a, Py_ssize_t b,
Py_ssize_t c)
/*[clinic end generated code: output=ce252143e0ed0372 input=76d0f342e9317a1f]*/
{
RETURN_PACKED_ARGS(3, PyLong_FromSsize_t, Py_ssize_t, a, b, c);
}
/*[clinic input]
slice_index_converter
a: slice_index = 12
b: slice_index(accept={int}) = 34
c: slice_index(accept={int, NoneType}) = 56
/
[clinic start generated code]*/
static PyObject *
slice_index_converter_impl(PyObject *module, Py_ssize_t a, Py_ssize_t b,
Py_ssize_t c)
/*[clinic end generated code: output=923c6cac77666a6b input=64f99f3f83265e47]*/
{
RETURN_PACKED_ARGS(3, PyLong_FromSsize_t, Py_ssize_t, a, b, c);
}
/*[clinic input]
size_t_converter
a: size_t = 12
/
[clinic start generated code]*/
static PyObject *
size_t_converter_impl(PyObject *module, size_t a)
/*[clinic end generated code: output=412b5b7334ab444d input=83ae7d9171fbf208]*/
{
RETURN_PACKED_ARGS(1, PyLong_FromSize_t, size_t, a);
}
/*[clinic input]
float_converter
a: float = 12.5
/
[clinic start generated code]*/
static PyObject *
float_converter_impl(PyObject *module, float a)
/*[clinic end generated code: output=1c98f64f2cf1d55c input=a625b59ad68047d8]*/
{
RETURN_PACKED_ARGS(1, PyFloat_FromDouble, double, a);
}
/*[clinic input]
double_converter
a: double = 12.5
/
[clinic start generated code]*/
static PyObject *
double_converter_impl(PyObject *module, double a)
/*[clinic end generated code: output=a4e8532d284d035d input=098df188f24e7c62]*/
{
RETURN_PACKED_ARGS(1, PyFloat_FromDouble, double, a);
}
/*[clinic input]
py_complex_converter
a: Py_complex
/
[clinic start generated code]*/
static PyObject *
py_complex_converter_impl(PyObject *module, Py_complex a)
/*[clinic end generated code: output=9e6ca2eb53b14846 input=e9148a8ca1dbf195]*/
{
RETURN_PACKED_ARGS(1, PyComplex_FromCComplex, Py_complex, a);
}
/*[clinic input]
str_converter
a: str = "a"
b: str(accept={robuffer}) = "b"
c: str(accept={robuffer, str}, zeroes=True) = "c"
/
[clinic start generated code]*/
static PyObject *
str_converter_impl(PyObject *module, const char *a, const char *b,
const char *c, Py_ssize_t c_length)
/*[clinic end generated code: output=475bea40548c8cd6 input=bff2656c92ee25de]*/
{
assert(!PyErr_Occurred());
PyObject *out[3] = {NULL,};
int i = 0;
PyObject *arg;
arg = PyUnicode_FromString(a);
assert(arg || PyErr_Occurred());
if (!arg) {
goto error;
}
out[i++] = arg;
arg = PyUnicode_FromString(b);
assert(arg || PyErr_Occurred());
if (!arg) {
goto error;
}
out[i++] = arg;
arg = PyUnicode_FromStringAndSize(c, c_length);
assert(arg || PyErr_Occurred());
if (!arg) {
goto error;
}
out[i++] = arg;
PyObject *tuple = PyTuple_New(3);
if (!tuple) {
goto error;
}
for (int j = 0; j < 3; j++) {
PyTuple_SET_ITEM(tuple, j, out[j]);
}
return tuple;
error:
for (int j = 0; j < i; j++) {
Py_DECREF(out[j]);
}
return NULL;
}
/*[clinic input]
str_converter_encoding
a: str(encoding="idna")
b: str(encoding="idna", accept={bytes, bytearray, str})
c: str(encoding="idna", accept={bytes, bytearray, str}, zeroes=True)
/
[clinic start generated code]*/
static PyObject *
str_converter_encoding_impl(PyObject *module, char *a, char *b, char *c,
Py_ssize_t c_length)
/*[clinic end generated code: output=af68766049248a1c input=0c5cf5159d0e870d]*/
{
assert(!PyErr_Occurred());
PyObject *out[3] = {NULL,};
int i = 0;
PyObject *arg;
arg = PyUnicode_FromString(a);
assert(arg || PyErr_Occurred());
if (!arg) {
goto error;
}
out[i++] = arg;
arg = PyUnicode_FromString(b);
assert(arg || PyErr_Occurred());
if (!arg) {
goto error;
}
out[i++] = arg;
arg = PyUnicode_FromStringAndSize(c, c_length);
assert(arg || PyErr_Occurred());
if (!arg) {
goto error;
}
out[i++] = arg;
PyObject *tuple = PyTuple_New(3);
if (!tuple) {
goto error;
}
for (int j = 0; j < 3; j++) {
PyTuple_SET_ITEM(tuple, j, out[j]);
}
return tuple;
error:
for (int j = 0; j < i; j++) {
Py_DECREF(out[j]);
}
return NULL;
}
static PyObject *
bytes_from_buffer(Py_buffer *buf)
{
PyObject *bytes_obj = PyBytes_FromStringAndSize(NULL, buf->len);
if (!bytes_obj) {
return NULL;
}
void *bytes_obj_buf = ((PyBytesObject *)bytes_obj)->ob_sval;
if (PyBuffer_ToContiguous(bytes_obj_buf, buf, buf->len, 'C') < 0) {
Py_DECREF(bytes_obj);
return NULL;
}
return bytes_obj;
}
/*[clinic input]
py_buffer_converter
a: Py_buffer(accept={str, buffer, NoneType})
b: Py_buffer(accept={rwbuffer})
/
[clinic start generated code]*/
static PyObject *
py_buffer_converter_impl(PyObject *module, Py_buffer *a, Py_buffer *b)
/*[clinic end generated code: output=52fb13311e3d6d03 input=775de727de5c7421]*/
{
RETURN_PACKED_ARGS(2, bytes_from_buffer, Py_buffer *, a, b);
}
/*[clinic input]
keywords
a: object
b: object
[clinic start generated code]*/
static PyObject *
keywords_impl(PyObject *module, PyObject *a, PyObject *b)
/*[clinic end generated code: output=850aaed53e26729e input=f44b89e718c1a93b]*/
{
return pack_arguments_newref(2, a, b);
}
/*[clinic input]
keywords_kwonly
a: object
*
b: object
[clinic start generated code]*/
static PyObject *
keywords_kwonly_impl(PyObject *module, PyObject *a, PyObject *b)
/*[clinic end generated code: output=a45c48241da584dc input=1f08e39c3312b015]*/
{
return pack_arguments_newref(2, a, b);
}
/*[clinic input]
keywords_opt
a: object
b: object = None
c: object = None
[clinic start generated code]*/
static PyObject *
keywords_opt_impl(PyObject *module, PyObject *a, PyObject *b, PyObject *c)
/*[clinic end generated code: output=25e4b67d91c76a66 input=b0ba0e4f04904556]*/
{
return pack_arguments_newref(3, a, b, c);
}
/*[clinic input]
keywords_opt_kwonly
a: object
b: object = None
*
c: object = None
d: object = None
[clinic start generated code]*/
static PyObject *
keywords_opt_kwonly_impl(PyObject *module, PyObject *a, PyObject *b,
PyObject *c, PyObject *d)
/*[clinic end generated code: output=6aa5b655a6e9aeb0 input=f79da689d6c51076]*/
{
return pack_arguments_newref(4, a, b, c, d);
}
/*[clinic input]
keywords_kwonly_opt
a: object
*
b: object = None
c: object = None
[clinic start generated code]*/
static PyObject *
keywords_kwonly_opt_impl(PyObject *module, PyObject *a, PyObject *b,
PyObject *c)
/*[clinic end generated code: output=707f78eb0f55c2b1 input=e0fa1a0e46dca791]*/
{
return pack_arguments_newref(3, a, b, c);
}
/*[clinic input]
posonly_keywords
a: object
/
b: object
[clinic start generated code]*/
static PyObject *
posonly_keywords_impl(PyObject *module, PyObject *a, PyObject *b)
/*[clinic end generated code: output=6ac88f4a5f0bfc8d input=fde0a2f79fe82b06]*/
{
return pack_arguments_newref(2, a, b);
}
/*[clinic input]
posonly_kwonly
a: object
/
*
b: object
[clinic start generated code]*/
static PyObject *
posonly_kwonly_impl(PyObject *module, PyObject *a, PyObject *b)
/*[clinic end generated code: output=483e6790d3482185 input=78b3712768da9a19]*/
{
return pack_arguments_newref(2, a, b);
}
/*[clinic input]
posonly_keywords_kwonly
a: object
/
b: object
*
c: object
[clinic start generated code]*/
static PyObject *
posonly_keywords_kwonly_impl(PyObject *module, PyObject *a, PyObject *b,
PyObject *c)
/*[clinic end generated code: output=2fae573e8cc3fad8 input=a1ad5d2295eb803c]*/
{
return pack_arguments_newref(3, a, b, c);
}
/*[clinic input]
posonly_keywords_opt
a: object
/
b: object
c: object = None
d: object = None
[clinic start generated code]*/
static PyObject *
posonly_keywords_opt_impl(PyObject *module, PyObject *a, PyObject *b,
PyObject *c, PyObject *d)
/*[clinic end generated code: output=f5eb66241bcf68fb input=51c10de2a120e279]*/
{
return pack_arguments_newref(4, a, b, c, d);
}
/*[clinic input]
posonly_opt_keywords_opt
a: object
b: object = None
/
c: object = None
d: object = None
[clinic start generated code]*/
static PyObject *
posonly_opt_keywords_opt_impl(PyObject *module, PyObject *a, PyObject *b,
PyObject *c, PyObject *d)
/*[clinic end generated code: output=d54a30e549296ffd input=f408a1de7dfaf31f]*/
{
return pack_arguments_newref(4, a, b, c, d);
}
/*[clinic input]
posonly_kwonly_opt
a: object
/
*
b: object
c: object = None
d: object = None
[clinic start generated code]*/
static PyObject *
posonly_kwonly_opt_impl(PyObject *module, PyObject *a, PyObject *b,
PyObject *c, PyObject *d)
/*[clinic end generated code: output=a20503fe36b4fd62 input=3494253975272f52]*/
{
return pack_arguments_newref(4, a, b, c, d);
}
/*[clinic input]
posonly_opt_kwonly_opt
a: object
b: object = None
/
*
c: object = None
d: object = None
[clinic start generated code]*/
static PyObject *
posonly_opt_kwonly_opt_impl(PyObject *module, PyObject *a, PyObject *b,
PyObject *c, PyObject *d)
/*[clinic end generated code: output=64f3204a3a0413b6 input=d17516581e478412]*/
{
return pack_arguments_newref(4, a, b, c, d);
}
/*[clinic input]
posonly_keywords_kwonly_opt
a: object
/
b: object
*
c: object
d: object = None
e: object = None
[clinic start generated code]*/
static PyObject *
posonly_keywords_kwonly_opt_impl(PyObject *module, PyObject *a, PyObject *b,
PyObject *c, PyObject *d, PyObject *e)
/*[clinic end generated code: output=dbd7e7ddd6257fa0 input=33529f29e97e5adb]*/
{
return pack_arguments_newref(5, a, b, c, d, e);
}
/*[clinic input]
posonly_keywords_opt_kwonly_opt
a: object
/
b: object
c: object = None
*
d: object = None
e: object = None
[clinic start generated code]*/
static PyObject *
posonly_keywords_opt_kwonly_opt_impl(PyObject *module, PyObject *a,
PyObject *b, PyObject *c, PyObject *d,
PyObject *e)
/*[clinic end generated code: output=775d12ae44653045 input=4d4cc62f11441301]*/
{
return pack_arguments_newref(5, a, b, c, d, e);
}
/*[clinic input]
posonly_opt_keywords_opt_kwonly_opt
a: object
b: object = None
/
c: object = None
*
d: object = None
[clinic start generated code]*/
static PyObject *
posonly_opt_keywords_opt_kwonly_opt_impl(PyObject *module, PyObject *a,
PyObject *b, PyObject *c,
PyObject *d)
/*[clinic end generated code: output=40c6dc422591eade input=3964960a68622431]*/
{
return pack_arguments_newref(4, a, b, c, d);
}
/*[clinic input]
keyword_only_parameter
*
a: object
[clinic start generated code]*/
static PyObject *
keyword_only_parameter_impl(PyObject *module, PyObject *a)
/*[clinic end generated code: output=c454b6ce98232787 input=8d2868b8d0b27bdb]*/
{
return pack_arguments_newref(1, a);
}
/*[clinic input]
posonly_vararg
a: object
/
b: object
*args: object
[clinic start generated code]*/
static PyObject *
posonly_vararg_impl(PyObject *module, PyObject *a, PyObject *b,
PyObject *args)
/*[clinic end generated code: output=ee6713acda6b954e input=783427fe7ec2b67a]*/
{
return pack_arguments_newref(3, a, b, args);
}
/*[clinic input]
vararg_and_posonly
a: object
*args: object
/
[clinic start generated code]*/
static PyObject *
vararg_and_posonly_impl(PyObject *module, PyObject *a, PyObject *args)
/*[clinic end generated code: output=42792f799465a14d input=defe017b19ba52e8]*/
{
return pack_arguments_newref(2, a, args);
}
/*[clinic input]
vararg
a: object
*args: object
[clinic start generated code]*/
static PyObject *
vararg_impl(PyObject *module, PyObject *a, PyObject *args)
/*[clinic end generated code: output=91ab7a0efc52dd5e input=02c0f772d05f591e]*/
{
return pack_arguments_newref(2, a, args);
}
/*[clinic input]
vararg_with_default
a: object
*args: object
b: bool = False
[clinic start generated code]*/
static PyObject *
vararg_with_default_impl(PyObject *module, PyObject *a, PyObject *args,
int b)
/*[clinic end generated code: output=182c01035958ce92 input=68cafa6a79f89e36]*/
{
PyObject *obj_b = b ? Py_True : Py_False;
return pack_arguments_newref(3, a, args, obj_b);
}
/*[clinic input]
vararg_with_only_defaults
*args: object
b: object = None
[clinic start generated code]*/
static PyObject *
vararg_with_only_defaults_impl(PyObject *module, PyObject *args, PyObject *b)
/*[clinic end generated code: output=c06b1826d91f2f7b input=678c069bc67550e1]*/
{
return pack_arguments_newref(2, args, b);
}
/*[clinic input]
gh_32092_oob
pos1: object
pos2: object
*varargs: object
kw1: object = None
kw2: object = None
Proof-of-concept of GH-32092 OOB bug.
[clinic start generated code]*/
static PyObject *
gh_32092_oob_impl(PyObject *module, PyObject *pos1, PyObject *pos2,
PyObject *varargs, PyObject *kw1, PyObject *kw2)
/*[clinic end generated code: output=ee259c130054653f input=46d15c881608f8ff]*/
{
Py_RETURN_NONE;
}
/*[clinic input]
gh_32092_kw_pass
pos: object
*args: object
kw: object = None
Proof-of-concept of GH-32092 keyword args passing bug.
[clinic start generated code]*/
static PyObject *
gh_32092_kw_pass_impl(PyObject *module, PyObject *pos, PyObject *args,
PyObject *kw)
/*[clinic end generated code: output=4a2bbe4f7c8604e9 input=5c0bd5b9079a0cce]*/
{
Py_RETURN_NONE;
}
/*[clinic input]
gh_99233_refcount
*args: object
/
Proof-of-concept of GH-99233 refcount error bug.
[clinic start generated code]*/
static PyObject *
gh_99233_refcount_impl(PyObject *module, PyObject *args)
/*[clinic end generated code: output=585855abfbca9a7f input=85f5fb47ac91a626]*/
{
Py_RETURN_NONE;
}
/*[clinic input]
gh_99240_double_free
a: str(encoding="idna")
b: str(encoding="idna")
/
Proof-of-concept of GH-99240 double-free bug.
[clinic start generated code]*/
static PyObject *
gh_99240_double_free_impl(PyObject *module, char *a, char *b)
/*[clinic end generated code: output=586dc714992fe2ed input=23db44aa91870fc7]*/
{
Py_RETURN_NONE;
}
/*[clinic input]
_testclinic.clone_f1 as clone_f1
path: str
[clinic start generated code]*/
static PyObject *
clone_f1_impl(PyObject *module, const char *path)
/*[clinic end generated code: output=8c30b5620ba86715 input=9c614b7f025ebf70]*/
{
Py_RETURN_NONE;
}
/*[clinic input]
_testclinic.clone_f2 as clone_f2 = _testclinic.clone_f1
[clinic start generated code]*/
static PyObject *
clone_f2_impl(PyObject *module, const char *path)
/*[clinic end generated code: output=6aa1c39bec3f5d9b input=1aaaf47d6ed2324a]*/
{
Py_RETURN_NONE;
}
/*[python input]
class custom_t_converter(CConverter):
type = 'custom_t'
converter = 'custom_converter'
def pre_render(self):
self.c_default = f'''{{
.name = "{self.function.name}",
}}'''
[python start generated code]*/
/*[python end generated code: output=da39a3ee5e6b4b0d input=b2fb801e99a06bf6]*/
/*[clinic input]
_testclinic.clone_with_conv_f1 as clone_with_conv_f1
path: custom_t = None
[clinic start generated code]*/
static PyObject *
clone_with_conv_f1_impl(PyObject *module, custom_t path)
/*[clinic end generated code: output=f7e030ffd5439cb0 input=bc77bc80dec3f46d]*/
{
return PyUnicode_FromString(path.name);
}
/*[clinic input]
_testclinic.clone_with_conv_f2 as clone_with_conv_f2 = _testclinic.clone_with_conv_f1
[clinic start generated code]*/
static PyObject *
clone_with_conv_f2_impl(PyObject *module, custom_t path)
/*[clinic end generated code: output=9d7fdd6a75eecee4 input=cff459a205fa83bb]*/
{
return PyUnicode_FromString(path.name);
}
static PyMethodDef tester_methods[] = {
TEST_EMPTY_FUNCTION_METHODDEF
OBJECTS_CONVERTER_METHODDEF
BYTES_OBJECT_CONVERTER_METHODDEF
BYTE_ARRAY_OBJECT_CONVERTER_METHODDEF
UNICODE_CONVERTER_METHODDEF
BOOL_CONVERTER_METHODDEF
CHAR_CONVERTER_METHODDEF
UNSIGNED_CHAR_CONVERTER_METHODDEF
SHORT_CONVERTER_METHODDEF
UNSIGNED_SHORT_CONVERTER_METHODDEF
INT_CONVERTER_METHODDEF
UNSIGNED_INT_CONVERTER_METHODDEF
LONG_CONVERTER_METHODDEF
UNSIGNED_LONG_CONVERTER_METHODDEF
LONG_LONG_CONVERTER_METHODDEF
UNSIGNED_LONG_LONG_CONVERTER_METHODDEF
PY_SSIZE_T_CONVERTER_METHODDEF
SLICE_INDEX_CONVERTER_METHODDEF
SIZE_T_CONVERTER_METHODDEF
FLOAT_CONVERTER_METHODDEF
DOUBLE_CONVERTER_METHODDEF
PY_COMPLEX_CONVERTER_METHODDEF
STR_CONVERTER_METHODDEF
STR_CONVERTER_ENCODING_METHODDEF
PY_BUFFER_CONVERTER_METHODDEF
KEYWORDS_METHODDEF
KEYWORDS_KWONLY_METHODDEF
KEYWORDS_OPT_METHODDEF
KEYWORDS_OPT_KWONLY_METHODDEF
KEYWORDS_KWONLY_OPT_METHODDEF
POSONLY_KEYWORDS_METHODDEF
POSONLY_KWONLY_METHODDEF
POSONLY_KEYWORDS_KWONLY_METHODDEF
POSONLY_KEYWORDS_OPT_METHODDEF
POSONLY_OPT_KEYWORDS_OPT_METHODDEF
POSONLY_KWONLY_OPT_METHODDEF
POSONLY_OPT_KWONLY_OPT_METHODDEF
POSONLY_KEYWORDS_KWONLY_OPT_METHODDEF
POSONLY_KEYWORDS_OPT_KWONLY_OPT_METHODDEF
POSONLY_OPT_KEYWORDS_OPT_KWONLY_OPT_METHODDEF
KEYWORD_ONLY_PARAMETER_METHODDEF
POSONLY_VARARG_METHODDEF
VARARG_AND_POSONLY_METHODDEF
VARARG_METHODDEF
VARARG_WITH_DEFAULT_METHODDEF
VARARG_WITH_ONLY_DEFAULTS_METHODDEF
GH_32092_OOB_METHODDEF
GH_32092_KW_PASS_METHODDEF
GH_99233_REFCOUNT_METHODDEF
GH_99240_DOUBLE_FREE_METHODDEF
CLONE_F1_METHODDEF
CLONE_F2_METHODDEF
CLONE_WITH_CONV_F1_METHODDEF
CLONE_WITH_CONV_F2_METHODDEF
{NULL, NULL}
};
static struct PyModuleDef _testclinic_module = {
PyModuleDef_HEAD_INIT,
.m_name = "_testclinic",
.m_size = 0,
.m_methods = tester_methods,
};
PyMODINIT_FUNC
PyInit__testclinic(void)
{
return PyModule_Create(&_testclinic_module);
}
#undef RETURN_PACKED_ARGS
|