(timestamp)
| 17 | "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"] |
| 18 | |
| 19 | def format_date_time(timestamp): |
| 20 | year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp) |
| 21 | return "%s, %02d %3s %4d %02d:%02d:%02d GMT" % ( |
| 22 | _weekdayname[wd], day, _monthname[month], year, hh, mm, ss |
| 23 | ) |
| 24 | |
| 25 | _is_request = { |
| 26 | 'SCRIPT_NAME', 'PATH_INFO', 'QUERY_STRING', 'REQUEST_METHOD', 'AUTH_TYPE', |
no outgoing calls
no test coverage detected
searching dependent graphs…