This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Typo in the documentation by C-API DateTime Objects¶
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.5
process
Status: closed Resolution: duplicate
Dependencies: Superseder: Incorrect C Function name for timedelta
View: 31678
Assigned To: docs@python Nosy List: Nukopol, docs@python, xtreak
Priority: normal Keywords:

Created on 2019-08-29 09:01 by Nukopol, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg350758 - (view) Author: Aleksey (Nukopol) Date: 2019-08-29 09:01
In the documentation by Python 3.5 C-API DateTime Objects (https://docs.python.org/3.5/c-api/datetime.html) method PyDateTime_DELTA_GET_MICROSECOND has not "S" in the end of method name. But in the header file "datetime.h", this method has "S" and so named PyDateTime_DELTA_GET_MICROSECONDS.
msg350760 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2019-08-29 09:16
Thanks for the report. This was fixed in 82cd3cede804ca694fb0657fd985d5eff84a414f (https://bugs.python.org/issue31678). It was not merged to 3.5 at that time. Now 3.5 only accepts security fixes so I would propose closing this as duplicate of issue31678.
History
Date User Action Args
2022-04-11 14:59:19adminsetgithub: 82156
2019-08-30 05:50:47xtreaksetstatus: open -> closed
superseder: Incorrect C Function name for timedelta
resolution: duplicate
stage: resolved
2019-08-29 09:16:18xtreaksetnosy: + xtreak
messages: + msg350760
2019-08-29 09:01:20Nukopolcreate