Mercurial > p > mysql-python > mysqldb-2
comparison MySQLdb/times.py @ 81:228a45771d14 MySQLdb
Remove $Revision$ and $Author$ refs as hg doesn't use them.
author | Andy Dustman <adustman@users.sourceforge.net> |
---|---|
date | Mon, 22 Feb 2010 22:58:16 -0500 |
parents | 98d968f5af11 |
children | 566baac88764 |
comparison
equal
deleted
inserted
replaced
76:17062a65fde9 | 81:228a45771d14 |
---|---|
4 | 4 |
5 This module provides some help functions for dealing with MySQL data. | 5 This module provides some help functions for dealing with MySQL data. |
6 Most of these you will not have to use directly. | 6 Most of these you will not have to use directly. |
7 | 7 |
8 Uses Python datetime module to handle time-releated columns.""" | 8 Uses Python datetime module to handle time-releated columns.""" |
9 | |
10 __revision__ = "$Revision$"[11:-2] | |
11 __author__ = "$Author$"[9:-2] | |
12 | 9 |
13 from time import localtime | 10 from time import localtime |
14 from datetime import date, datetime, time, timedelta | 11 from datetime import date, datetime, time, timedelta |
15 | 12 |
16 # These are required for DB-API (PEP-249) | 13 # These are required for DB-API (PEP-249) |