Update docstrings to use te attribute names of the new structures returned
by stat and time functions.
This closes SF patch #523271.
diff --git a/Modules/timemodule.c b/Modules/timemodule.c
index 5d7fa51..52308b3 100644
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -285,7 +285,8 @@
 }
 
 static char gmtime_doc[] =
-"gmtime([seconds]) -> (year,month,day,hour,minute,second,weekday,dayofyear,dst)\n\
+"gmtime([seconds]) -> (tm_year, tm_mon, tm_day, tm_hour, tm_min,\n\
+                       tm_sec, tm_wday, tm_yday, tm_isdst)\n\
 \n\
 Convert seconds since the Epoch to a time tuple expressing UTC (a.k.a.\n\
 GMT).  When 'seconds' is not passed in, convert the current time instead.";
@@ -302,7 +303,7 @@
 }
 
 static char localtime_doc[] =
-"localtime([seconds]) -> (year,month,day,hour,minute,second,weekday,dayofyear,dst)\n\
+"localtime([seconds]) -> (tm_year,tm_mon,tm_day,tm_hour,tm_min,tm_sec,tm_wday,tm_yday,tm_isdst)\n\
 \n\
 Convert seconds since the Epoch to a time tuple expressing local time.\n\
 When 'seconds' is not passed in, convert the current time instead.";