Mercurial > p > mysql-python > mysqldb-2
comparison MySQLdb/cursors.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 | 3b03cb566032 |
children | ffe9e5ca17e0 |
comparison
equal
deleted
inserted
replaced
76:17062a65fde9 | 81:228a45771d14 |
---|---|
4 | 4 |
5 This module implements the Cursor class. You should not try to | 5 This module implements the Cursor class. You should not try to |
6 create Cursors direction; use connection.cursor() instead. | 6 create Cursors direction; use connection.cursor() instead. |
7 | 7 |
8 """ | 8 """ |
9 | |
10 __revision__ = "$Revision$"[11:-2] | |
11 __author__ = "$Author$"[9:-2] | |
12 | 9 |
13 import re | 10 import re |
14 import sys | 11 import sys |
15 import weakref | 12 import weakref |
16 from MySQLdb.converters import get_codec | 13 from MySQLdb.converters import get_codec |