-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
bpo-38600: Change the mark up of NULL in the C API documentation. #16950
Conversation
Replace all *NULL* with ``NULL``.
@@ -150,7 +150,7 @@ PyAPI_FUNC(PyObject *) PyObject_CallNoArgs(PyObject *func); | |||
/* Call a callable Python object 'callable' with arguments given by the | |||
tuple 'args' and keywords arguments given by the dictionary 'kwargs'. | |||
|
|||
'args' must not be *NULL*, use an empty tuple if no arguments are |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this replacement intentional? This seems to be outside the docs.
Thanks @serhiy-storchaka for the PR 🌮🎉.. I'm working now to backport this PR to: 3.7, 3.8. |
Sorry, @serhiy-storchaka, I could not cleanly backport this to |
Sorry @serhiy-storchaka, I had trouble checking out the |
…n. (pythonGH-16950) Replace all *NULL* with ``NULL``.. (cherry picked from commit 25fc088) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
…n. (pythonGH-16950) Replace all *NULL* with ``NULL``.. (cherry picked from commit 25fc088) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
GH-16999 is a backport of this pull request to the 3.8 branch. |
GH-17000 is a backport of this pull request to the 3.7 branch. |
…thonGH-16950) Replace all *NULL* with ``NULL``.
…thonGH-16950) Replace all *NULL* with ``NULL``.
Replace all
*NULL*
with``NULL``
.https://bugs.python.org/issue38600