diff -r d7124524c6a6 Modules/timemodule.c --- a/Modules/timemodule.c Sat Sep 29 19:41:52 2012 -0400 +++ b/Modules/timemodule.c Sun Sep 30 12:03:18 2012 -0700 @@ -689,7 +689,25 @@ \n\ Convert a time tuple to a string according to a format specification.\n\ See the library reference manual for formatting codes. When the time tuple\n\ -is not present, current time as returned by localtime() is used."); +is not present, current time as returned by localtime() is used.\n\ +\n\ +Commonly used format codes:\n\ +\n\ +%Y Year with century as a decimal number.\n\ +%m Month as a decimal number [01,12].\n\ +%d Day of the month as a decimal number [01,31].\n\ +%H Hour (24-hour clock) as a decimal number [00,23].\n\ +%M Minute as a decimal number [00,59].\n\ +%S Second as a decimal number [00,61].\n\ +%z Time zone offset from UTC.\n\ +%a Locale's abbreviated weekday name.\n\ +%A Locale's full weekday name.\n\ +%b Locale's abbreviated month name.\n\ +%B Locale's full month name.\n\ +%c Locale's appropriate date and time representation.\n\ +\n\ +Other codes may be available on your platform. See documentation for\n\ +the C library strftime function.\n"); #endif /* HAVE_STRFTIME */ static PyObject *