Elaborate datetime.timedelta docstring (GH-7458)

(cherry picked from commit d6a61f2326)

Co-authored-by: Chris Barker <Chris.Barker@noaa.gov>
This commit is contained in:
Miss Islington (bot) 2018-10-19 16:02:13 -07:00 committed by GitHub
parent 6665802549
commit ef7f29f66c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -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 */