Register a date handler function (takes string, returns 9-tuple date in GMT)
(func)
| 3091 | |
| 3092 | _date_handlers = [] |
| 3093 | def registerDateHandler(func): |
| 3094 | '''Register a date handler function (takes string, returns 9-tuple date in GMT)''' |
| 3095 | _date_handlers.insert(0, func) |
| 3096 | |
| 3097 | # ISO-8601 date parsing routines written by Fazal Majid. |
| 3098 | # The ISO 8601 standard is very convoluted and irregular - a full ISO 8601 |
no test coverage detected
searching dependent graphs…