diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-06-26 18:57:02 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-06-26 18:57:02 (GMT) |
commit | 1341f57c9f5502ad3cb7247f53d1bca784f296e4 (patch) | |
tree | c5a44d055e3338222094fc3e5e6c9fc501d3ce9c /Doc | |
parent | c1897e716dcd05d258c3b6e41df538c7dccd778a (diff) | |
download | cpython-1341f57c9f5502ad3cb7247f53d1bca784f296e4.zip cpython-1341f57c9f5502ad3cb7247f53d1bca784f296e4.tar.gz cpython-1341f57c9f5502ad3cb7247f53d1bca784f296e4.tar.bz2 |
Merged revisions 82251 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r82251 | alexander.belopolsky | 2010-06-26 14:49:10 -0400 (Sat, 26 Jun 2010) | 1 line
Issue 9024: Added :cdata: tag to PyDateTimeAPI
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/datetime.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/c-api/datetime.rst b/Doc/c-api/datetime.rst index 510ef26..6515bab 100644 --- a/Doc/c-api/datetime.rst +++ b/Doc/c-api/datetime.rst @@ -10,7 +10,8 @@ Before using any of these functions, the header file :file:`datetime.h` must be included in your source (note that this is not included by :file:`Python.h`), and the macro :cmacro:`PyDateTime_IMPORT` must be invoked, usually as part of the module initialisation function. The macro puts a pointer to a C structure -into a static variable, ``PyDateTimeAPI``, that is used by the following macros. +into a static variable, :cdata:`PyDateTimeAPI`, that is used by the following +macros. Type-check macros: |