Skip to content

Commit d55b493

Browse files
committed
Code block
All blank lines removed.
1 parent da8c792 commit d55b493

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/sphinx/source/refcount.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Here is an example of a normal ``PyObject`` creation and deallocation:
3434
.. code-block:: c
3535
:linenos:
3636
37+
#include "Python.h"
3738
void print_hello_world(void) {
3839
PyObject *pObj = NULL:
39-
4040
pObj = PyBytes_FromString("Hello world\n"); /* Object creation, ref count = 1. */
4141
PyObject_Print(pLast, stdout, 0);
4242
Py_DECREF(pObj); /* ref count becomes 0, object deallocated.

0 commit comments

Comments
 (0)