Issue #9024: Fixed mark-up for PyDateTime_IMPORT macro and added that

it is typically used in module initialization function. Thanks Tim
Golden for the patch.
This commit is contained in:
Alexander Belopolsky 2010-06-26 02:05:19 +00:00
parent 32e0681156
commit caf5db7924
1 changed files with 3 additions and 3 deletions

View File

@ -8,9 +8,9 @@ DateTime Objects
Various date and time objects are supplied by the :mod:`datetime` module.
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 :cfunc:`PyDateTime_IMPORT` must be invoked. The macro puts a
pointer to a C structure into a static variable, ``PyDateTimeAPI``, that is
used by the following macros.
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.
Type-check macros: