Commit d6a61f23 authored by Chris Barker's avatar Chris Barker Committed by Victor Stinner

Elaborate datetime.timedelta docstring (GH-7458)

parent 8deab967
...@@ -2641,7 +2641,11 @@ static PyMethodDef delta_methods[] = { ...@@ -2641,7 +2641,11 @@ static PyMethodDef delta_methods[] = {
}; };
static const char delta_doc[] = 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 = { static PyNumberMethods delta_as_number = {
delta_add, /* nb_add */ delta_add, /* nb_add */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment