From: Brett Cannon Date: Thu, 17 Feb 2005 05:16:19 +0000 (+0000) Subject: Fix name from PyDate_FromDateAndTime to PyDateTime_FromDateAndTime. X-Git-Tag: v2.4.1c1~45 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8d751fa05e358e1b7bace33196feb4a45547dab3;p=thirdparty%2FPython%2Fcpython.git Fix name from PyDate_FromDateAndTime to PyDateTime_FromDateAndTime. Closes bug #1124278. --- diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 111725fc7ae6..8c937159814c 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.