Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d341500 commit d358afeCopy full SHA for d358afe
1 file changed
Doc/ext/ext.tex
@@ -1,6 +1,6 @@
1
\documentclass{manual}
2
3
-% XXX PM Modulator
+% XXX PM explain how to add new types to Python
4
5
\title{Extending and Embedding the Python Interpreter}
6
@@ -942,6 +942,11 @@ \section{The \cfunction{Py_BuildValue()} Function
942
\item[\samp{S} (object) {[PyObject *]}]
943
Same as \samp{O}.
944
945
+\item[\samp{N} (object) {[PyObject *]}]
946
+Same as \samp{O}, except it doesn't increment the reference count on
947
+the object. Useful when the object is created by a call to an object
948
+constructor in the argument list.
949
+
950
\item[\samp{O\&} (object) {[\var{converter}, \var{anything}]}]
951
Convert \var{anything} to a Python object through a \var{converter}
952
function. The function is called with \var{anything} (which should be
0 commit comments