[Python-checkins] Elaborate datetime.timedelta docstring (GH-7458)

Miss Islington (bot) webhook-mailer at python.org
Fri Oct 19 19:02:17 EDT 2018


https://github.com/python/cpython/commit/ef7f29f66c8c8c51405f61cea8a7803987deee50
commit: ef7f29f66c8c8c51405f61cea8a7803987deee50
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-10-19T16:02:13-07:00
summary:

Elaborate datetime.timedelta docstring (GH-7458)

(cherry picked from commit d6a61f232619f8a8e6efacc3da5a02abaf25f090)

Co-authored-by: Chris Barker <Chris.Barker at noaa.gov>

files:
M Modules/_datetimemodule.c

diff --git a/Modules/_datetimemodule.c b/Modules/_datetimemodule.c
index 41b95b919394..81a0b1f16811 100644
--- a/Modules/_datetimemodule.c
+++ b/Modules/_datetimemodule.c
@@ -2640,7 +2640,11 @@ static PyMethodDef delta_methods[] = {
 };
 
 static const char delta_doc[] =
-PyDoc_STR("Difference between two datetime values.");
+PyDoc_STR("Difference between two datetime values.\n\n"
+          "timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, "
+          "minutes=0, hours=0, weeks=0)\n\n"
+          "All arguments are optional and default to 0.\n"
+          "Arguments may be integers or floats, and may be positive or negative.");
 
 static PyNumberMethods delta_as_number = {
     delta_add,                                  /* nb_add */



More information about the Python-checkins mailing list