Dont put "void" in signature for nullary functions.

This commit is contained in:
Georg Brandl 2009-07-24 16:46:38 +00:00
parent f0b1733574
commit 36b30b5a4b
7 changed files with 10 additions and 9 deletions

View file

@ -98,12 +98,13 @@ access internal read-only data of Unicode objects:
:ctype:`PyUnicodeObject` (not checked).
.. cfunction:: int PyUnicode_ClearFreeList(void)
.. cfunction:: int PyUnicode_ClearFreeList()
Clear the free list. Return the total number of freed items.
.. versionadded:: 2.6
Unicode provides many different character properties. The most often needed ones
are available through these macros which are mapped to C functions depending on
the Python configuration.