@@ -479,15 +479,15 @@ \section{Build and C API Changes}
479479 values from extension functions: \csimplemacro {Py_RETURN_NONE},
480480 \csimplemacro {Py_RETURN_TRUE}, and \csimplemacro {Py_RETURN_FALSE}.
481481
482- \item A new function, \cfunction {PyTuple_Pack(N, obj1, obj2, ... ,
483- objN)}, constructs tuples from a variable length argument list of
484- Python objects.
482+ \item A new function, \cfunction {PyTuple_Pack(\var {N}, \var { obj1} ,
483+ \var {obj2}, ..., \var { objN} )}, constructs tuples from a variable
484+ length argument list of Python objects.
485485
486- \item A new function, \cfunction {PyDict_Contains(d, k )}, implements
487- fast dictionary lookups without masking exceptions raised during the
488- look-up process.
486+ \item A new function, \cfunction {PyDict_Contains(\var {d}, \var {k} )},
487+ implements fast dictionary lookups without masking exceptions raised
488+ during the look-up process.
489489
490- \item A new method flag, \code {METH_COEXISTS}, allows a function
490+ \item A new method flag, \constant {METH_COEXISTS}, allows a function
491491 defined in slots to co-exist with a PyCFunction having the same name.
492492 This can halve the access to time to a method such as
493493 \method {set.__contains__()}
0 commit comments