diff options
author | Brett Cannon <bcannon@gmail.com> | 2005-02-17 05:16:19 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2005-02-17 05:16:19 (GMT) |
commit | 8d751fa05e358e1b7bace33196feb4a45547dab3 (patch) | |
tree | 67891686ab970983dd4d85af6bfaa507c18f7a90 /Doc/api | |
parent | 62f48abab3aac26a60486b737535f513cb3e08bf (diff) | |
download | cpython-8d751fa05e358e1b7bace33196feb4a45547dab3.zip cpython-8d751fa05e358e1b7bace33196feb4a45547dab3.tar.gz cpython-8d751fa05e358e1b7bace33196feb4a45547dab3.tar.bz2 |
Fix name from PyDate_FromDateAndTime to 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. |