8000 gh-126890: Restore stripped `ssl` docstrings by ZeroIntensity · Pull Request #127281 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-126890: Restore stripped ssl docstrings #127281

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

Merged
merged 20 commits into from
Dec 2, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Regenerate clinic test file.
  • Loading branch information
ZeroIntensity committed Nov 26, 2024
commit 9ec0ba9eb105c033aa230f67e88aef63423135f6
12 changes: 6 additions & 6 deletions Lib/test/clinic.test.c
Original file line number Diff line number Diff line change
Expand Up @@ -5303,9 +5303,9 @@ Test_meth_coexist_impl(TestObj *self)
Test.property
[clinic start generated code]*/

#if defined(Test_property_HAS_DOCSTR)
#if defined(Test_property_HAS_DOCSTR) && !defined(Test_property_DOCSTR)
# define Test_property_DOCSTR Test_property__doc__
#else
#elif !defined(Test_property_DOCSTR)
# define Test_property_DOCSTR NULL
#endif
#if defined(TEST_PROPERTY_GETSETDEF)
Expand All @@ -5326,16 +5326,16 @@ Test_property_get(TestObj *self, void *Py_UNUSED(context))

static PyObject *
Test_property_get_impl(TestObj *self)
/*[clinic end generated code: output=27b519719d992e03 input=2d92b3449fbc7d2b]*/
/*[clinic end generated code: output=6badc79669979e96 input=2d92b3449fbc7d2b]*/

/*[clinic input]
@setter
Test.property
[clinic start generated code]*/

#if defined(TEST_PROPERTY_HAS_DOCSTR)
#if defined(Test_property_HAS_DOCSTR) && !defined(Test_property_DOCSTR)
# define Test_property_DOCSTR Test_property__doc__
#else
#elif !defined(Test_property_DOCSTR)
# define Test_property_DOCSTR NULL
#endif
#if defined(TEST_PROPERTY_GETSETDEF)
Expand All @@ -5360,7 +5360,7 @@ Test_property_set(TestObj *self, PyObject *value, void *Py_UNUSED(context))

static int
Test_property_set_impl(TestObj *self, PyObject *value)
/*[clinic end generated code: output=d51023f17c4ac3a1 input=3bc3f46a23c83a88]*/
/*[clinic end generated code: output=da7d5420a9ff8507 input=3bc3f46a23c83a88]*/

/*[clinic input]
output push
Expand Down
0