Register a date handler function (takes string, returns 9-tuple date in GMT)
(func)
| 2940 | |
| 2941 | _date_handlers = [] |
| 2942 | def registerDateHandler(func): |
| 2943 | '''Register a date handler function (takes string, returns 9-tuple date in GMT)''' |
| 2944 | _date_handlers.insert(0, func) |
| 2945 | |
| 2946 | # ISO-8601 date parsing routines written by Fazal Majid. |
| 2947 | # The ISO 8601 standard is very convoluted and irregular - a full ISO 8601 |