Mercurial > p > mysql-python > mysqldb-2
annotate MySQLdb/constants/REFRESH.py @ 69:18e5892a5aed MySQLdb
Defer incrementing reference to the decoder stack until later so we don't have to
dec-ref if an error happens. Merge of change 630 on 1.2br.
author | kylev |
---|---|
date | Fri, 24 Jul 2009 00:27:38 +0000 |
parents | 7773efbe9b30 |
children |
rev | line source |
---|---|
14 | 1 """ |
2 MySQL REFRESH Constants | |
3 ----------------------- | |
0 | 4 |
5 These constants seem to mostly deal with things internal to the | |
6 MySQL server. Forget you saw this. | |
7 """ | |
14 | 8 __revision__ = "$Revision$"[11:-2] |
9 __author__ = "$Author$"[9:-2] | |
0 | 10 |
11 GRANT = 1 | |
12 LOG = 2 | |
13 TABLES = 4 | |
14 HOSTS = 8 | |
15 STATUS = 16 | |
16 THREADS = 32 | |
17 SLAVE = 64 | |
18 MASTER = 128 | |
19 READ_LOCK = 16384 | |
20 FAST = 32768 |