diff options
author | Georg Brandl <georg@python.org> | 2011-10-07 09:19:11 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-10-07 09:19:11 (GMT) |
commit | db6c7f5c33ba4808907f227d5996ca70a67e21c6 (patch) | |
tree | 356c65f2a50a335d149bc533c295784f2b361e65 /Doc/c-api/module.rst | |
parent | 59de0ee9e087a819a0a63b31c1391c6eee55b8ef (diff) | |
download | cpython-db6c7f5c33ba4808907f227d5996ca70a67e21c6.zip cpython-db6c7f5c33ba4808907f227d5996ca70a67e21c6.tar.gz cpython-db6c7f5c33ba4808907f227d5996ca70a67e21c6.tar.bz2 |
Update C API docs for PEP 393.
Diffstat (limited to 'Doc/c-api/module.rst')
-rw-r--r-- | Doc/c-api/module.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/module.rst b/Doc/c-api/module.rst index b97c08d..32587be 100644 --- a/Doc/c-api/module.rst +++ b/Doc/c-api/module.rst @@ -87,7 +87,7 @@ There are only a few functions special to module objects. Return the name of the file from which *module* was loaded using *module*'s :attr:`__file__` attribute. If this is not defined, or if it is not a unicode string, raise :exc:`SystemError` and return *NULL*; otherwise return - a reference to a :c:type:`PyUnicodeObject`. + a reference to a Unicode object. .. versionadded:: 3.2 |