diff options
author | Georg Brandl <georg@python.org> | 2009-07-24 16:46:38 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-07-24 16:46:38 (GMT) |
commit | 36b30b5a4bd87e42c6e8a613b9753db0e9964c95 (patch) | |
tree | 916677243684b74019fffb9b09eeed03939f5109 /Doc/c-api/unicode.rst | |
parent | f0b17335747d335d1b4b5c1b790e1d90e762acdb (diff) | |
download | cpython-36b30b5a4bd87e42c6e8a613b9753db0e9964c95.zip cpython-36b30b5a4bd87e42c6e8a613b9753db0e9964c95.tar.gz cpython-36b30b5a4bd87e42c6e8a613b9753db0e9964c95.tar.bz2 |
Dont put "void" in signature for nullary functions.
Diffstat (limited to 'Doc/c-api/unicode.rst')
-rw-r--r-- | Doc/c-api/unicode.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index 8469ff9..b603734 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -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. |