Whitespace nits.

This commit is contained in:
Alexandre Vassalotti 2008-06-01 04:16:28 +00:00
parent 787f307e35
commit c3e36af722
1 changed files with 2 additions and 0 deletions

View File

@ -98,6 +98,7 @@ Dictionary Objects
Return the object from dictionary *p* which has a key *key*. Return *NULL* if
the key *key* is not present, but *without* setting an exception.
.. cfunction:: PyObject* PyDict_GetItemWithError(PyObject *p, PyObject *key)
Variant of :cfunc:`PyDict_GetItem` that does not suppress
@ -105,6 +106,7 @@ Dictionary Objects
occurred. Return *NULL* **without** an exception set if the key
wasn't present.
.. cfunction:: PyObject* PyDict_GetItemString(PyObject *p, const char *key)
This is the same as :cfunc:`PyDict_GetItem`, but *key* is specified as a