Skip to content

Commit f1b1dc9

Browse files
committed
sync
1 parent 857e476 commit f1b1dc9

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Lib/test/clinic.test.c

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5364,9 +5364,9 @@ Test.property
53645364
#endif
53655365
#if defined(TEST_PROPERTY_GETSETDEF)
53665366
# undef TEST_PROPERTY_GETSETDEF
5367-
# define TEST_PROPERTY_GETSETDEF {"property", (getter)Test_property_get, (setter)Test_property_set, Test_property_DOCSTR},
5367+
# define TEST_PROPERTY_GETSETDEF {"property", Test_property_get, Test_property_set, Test_property_DOCSTR},
53685368
#else
5369-
# define TEST_PROPERTY_GETSETDEF {"property", (getter)Test_property_get, NULL, Test_property_DOCSTR},
5369+
# define TEST_PROPERTY_GETSETDEF {"property", Test_property_get, NULL, Test_property_DOCSTR},
53705370
#endif
53715371

53725372
static PyObject *
@@ -5380,7 +5380,7 @@ Test_property_get(PyObject *self, void *Py_UNUSED(context))
53805380

53815381
static PyObject *
53825382
Test_property_get_impl(TestObj *self)
5383-
/*[clinic end generated code: output=b38d68abd3466a6e input=2d92b3449fbc7d2b]*/
5383+
/*[clinic end generated code: output=4d600bc77ca96957 input=2d92b3449fbc7d2b]*/
53845384

53855385
/*[clinic input]
53865386
@setter
@@ -5392,9 +5392,9 @@ Test.property
53925392
#endif
53935393
#if defined(TEST_PROPERTY_GETSETDEF)
53945394
# undef TEST_PROPERTY_GETSETDEF
5395-
# define TEST_PROPERTY_GETSETDEF {"property", (getter)Test_property_get, (setter)Test_property_set, Test_property_DOCSTR},
5395+
# define TEST_PROPERTY_GETSETDEF {"property", Test_property_get, Test_property_set, Test_property_DOCSTR},
53965396
#else
5397-
# define TEST_PROPERTY_GETSETDEF {"property", NULL, (setter)Test_property_set, NULL},
5397+
# define TEST_PROPERTY_GETSETDEF {"property", NULL, Test_property_set, NULL},
53985398
#endif
53995399

54005400
static int
@@ -5412,7 +5412,7 @@ Test_property_set(PyObject *self, PyObject *value, void *Py_UNUSED(context))
54125412

54135413
static int
54145414
Test_property_set_impl(TestObj *self, PyObject *value)
5415-
/*[clinic end generated code: output=49f925ab2a33b637 input=3bc3f46a23c83a88]*/
5415+
/*[clinic end generated code: output=5d1024e9700a89dd input=3bc3f46a23c83a88]*/
54165416

54175417
/*[clinic input]
54185418
@setter
@@ -5424,9 +5424,9 @@ Test.setter_first_with_docstr
54245424
#endif
54255425
#if defined(TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF)
54265426
# undef TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF
5427-
# define TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF {"setter_first_with_docstr", (getter)Test_setter_first_with_docstr_get, (setter)Test_setter_first_with_docstr_set, Test_setter_first_with_docstr_DOCSTR},
5427+
# define TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF {"setter_first_with_docstr", Test_setter_first_with_docstr_get, Test_setter_first_with_docstr_set, Test_setter_first_with_docstr_DOCSTR},
54285428
#else
5429-
# define TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF {"setter_first_with_docstr", NULL, (setter)Test_setter_first_with_docstr_set, NULL},
5429+
# define TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF {"setter_first_with_docstr", NULL, Test_setter_first_with_docstr_set, NULL},
54305430
#endif
54315431

54325432
static int
@@ -5444,7 +5444,7 @@ Test_setter_first_with_docstr_set(PyObject *self, PyObject *value, void *Py_UNUS
54445444

54455445
static int
54465446
Test_setter_first_with_docstr_set_impl(TestObj *self, PyObject *value)
5447-
/*[clinic end generated code: output=5aaf44373c0af545 input=31a045ce11bbe961]*/
5447+
/*[clinic end generated code: output=b3e243759a22bb02 input=31a045ce11bbe961]*/
54485448

54495449
/*[clinic input]
54505450
@getter
@@ -5465,9 +5465,9 @@ PyDoc_STRVAR(Test_setter_first_with_docstr__doc__,
54655465
#endif
54665466
#if defined(TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF)
54675467
# undef TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF
5468-
# define TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF {"setter_first_with_docstr", (getter)Test_setter_first_with_docstr_get, (setter)Test_setter_first_with_docstr_set, Test_setter_first_with_docstr_DOCSTR},
5468+
# define TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF {"setter_first_with_docstr", Test_setter_first_with_docstr_get, Test_setter_first_with_docstr_set, Test_setter_first_with_docstr_DOCSTR},
54695469
#else
5470-
# define TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF {"setter_first_with_docstr", (getter)Test_setter_first_with_docstr_get, NULL, Test_setter_first_with_docstr_DOCSTR},
5470+
# define TEST_SETTER_FIRST_WITH_DOCSTR_GETSETDEF {"setter_first_with_docstr", Test_setter_first_with_docstr_get, NULL, Test_setter_first_with_docstr_DOCSTR},
54715471
#endif
54725472

54735473
static PyObject *
@@ -5481,7 +5481,7 @@ Test_setter_first_with_docstr_get(PyObject *self, void *Py_UNUSED(context))
54815481

54825482
static PyObject *
54835483
Test_setter_first_with_docstr_get_impl(TestObj *self)
5484-
/*[clinic end generated code: output=fe6e3aa844a24920 input=10af4e43b3cb34dc]*/
5484+
/*[clinic end generated code: output=968a7642c38ef6e6 input=10af4e43b3cb34dc]*/
54855485

54865486
/*[clinic input]
54875487
output push

0 commit comments

Comments
 (0)