[Python-checkins] bpo-31678: Fix typo in PyDateTime_DELTA_GET_MICROSECONDS (GH-3869)

Berker Peksag webhook-mailer at python.org
Sat Nov 4 06:45:54 EDT 2017


https://github.com/python/cpython/commit/f9387469e82eccb6e0471037033f921be7f59909
commit: f9387469e82eccb6e0471037033f921be7f59909
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Berker Peksag <berker.peksag at gmail.com>
date: 2017-11-04T13:45:51+03:00
summary:

bpo-31678: Fix typo in PyDateTime_DELTA_GET_MICROSECONDS (GH-3869)

(cherry picked from commit 82cd3cede804ca694fb0657fd985d5eff84a414f)

files:
M Doc/c-api/datetime.rst

diff --git a/Doc/c-api/datetime.rst b/Doc/c-api/datetime.rst
index 39542bd17a3..305e990368c 100644
--- a/Doc/c-api/datetime.rst
+++ b/Doc/c-api/datetime.rst
@@ -188,7 +188,7 @@ not be *NULL*, and the type is not checked:
    .. versionadded:: 3.3
 
 
-.. c:function:: int PyDateTime_DELTA_GET_MICROSECOND(PyDateTime_Delta *o)
+.. c:function:: int PyDateTime_DELTA_GET_MICROSECONDS(PyDateTime_Delta *o)
 
    Return the number of microseconds, as an int from 0 through 999999.
 



More information about the Python-checkins mailing list