8000 gh-111178: fix incorrect function signatures in docs by picnixz · Pull Request #132395 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-111178: fix incorrect function signatures in docs #132395

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 4 commits into from
Apr 11, 2025
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
Update Doc/whatsnew/3.9.rst
  • Loading branch information
picnixz authored Apr 11, 2025
commit e193e507e2156fda908198570ba621f405b63bfd
3 changes: 2 additions & 1 deletion Doc/whatsnew/3.9.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,8 @@ Changes in the C API
.. code-block:: c

int
foo_traverse(PyObject *self, visitproc visit, void *arg) {
foo_traverse(PyObject *self, visitproc visit, void *arg)
{
// Rest of the traverse function
#if PY_VERSION_HEX >= 0x03090000
// This was not needed before Python 3.9 (Python issue 35810 and 40217)
Expand Down
Loading
0