diff options
author | Brett Cannon <bcannon@gmail.com> | 2005-02-17 05:17:17 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2005-02-17 05:17:17 (GMT) |
commit | 5bbe6ad2b5834a6f087d30fe9c54604eefc8d2c3 (patch) | |
tree | 97698498cff4446d04d968fdc95715a30eb9a619 /Doc/api | |
parent | 2ca7c190b61b891ef35a5eb7342b423055bb9082 (diff) | |
download | cpython-5bbe6ad2b5834a6f087d30fe9c54604eefc8d2c3.zip cpython-5bbe6ad2b5834a6f087d30fe9c54604eefc8d2c3.tar.gz cpython-5bbe6ad2b5834a6f087d30fe9c54604eefc8d2c3.tar.bz2 |
Fix name for PyDateTime_FromDateAndTime.
Closes bug #1124278.
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/concrete.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 111725f..8c93715 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -2793,7 +2793,7 @@ Macros to create objects: \versionadded{2.4} \end{cfuncdesc} -\begin{cfuncdesc}{PyObject*}{PyDate_FromDateAndTime}{int year, int month, +\begin{cfuncdesc}{PyObject*}{PyDateTime_FromDateAndTime}{int year, int month, int day, int hour, int minute, int second, int usecond} Return a \code{datetime.datetime} object with the specified year, month, day, hour, minute, second and microsecond. |