Mercurial > p > mysql-python > mysqldb-2
annotate MySQLdb/constants/REFRESH.py @ 77:6cc22ee607da MySQLdb
Copy compile -arch args to link args so we work on OS X
author | kylev@localhost6.localdomain6 |
---|---|
date | Thu, 17 Jun 2010 00:41:20 -0700 |
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 |