Mercurial > p > mysql-python > mysqldb-2
comparison MySQLdb/constants/FLAG.py @ 14:7773efbe9b30 MySQLdb
Formatting and PyLint fixes. Final score: 8.21/10
author | adustman |
---|---|
date | Mon, 26 Feb 2007 18:08:28 +0000 |
parents | e48810735f11 |
children |
comparison
equal
deleted
inserted
replaced
13:eb90cceaee92 | 14:7773efbe9b30 |
---|---|
1 """MySQL FLAG Constants | 1 """ |
2 MySQL FLAG Constants | |
3 -------------------- | |
2 | 4 |
3 These flags are used along with the FIELD_TYPE to indicate various | 5 These flags are used along with the FIELD_TYPE to indicate various |
4 properties of columns in a result set. | 6 properties of columns in a result set. |
5 | 7 |
6 """ | 8 """ |
9 __revision__ = "$Revision$"[11:-2] | |
10 __author__ = "$Author$"[9:-2] | |
7 | 11 |
8 NOT_NULL = 1 | 12 NOT_NULL = 1 |
9 PRI_KEY = 2 | 13 PRI_KEY = 2 |
10 UNIQUE_KEY = 4 | 14 UNIQUE_KEY = 4 |
11 MULTIPLE_KEY = 8 | 15 MULTIPLE_KEY = 8 |