annotate MySQLdb/constants/__init__.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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 0
diff changeset
1 """
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 0
diff changeset
2 MySQL Constants
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 0
diff changeset
3 ---------------
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 0
diff changeset
4
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 0
diff changeset
5 Various constants used by the MySQL client/server protocol.
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 0
diff changeset
6 """
0
e48810735f11 Copying 1.2.1 to be the new trunk
adustman
parents:
diff changeset
7 __all__ = ['CR', 'FIELD_TYPE','CLIENT','REFRESH','ER','FLAG']
14
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 0
diff changeset
8 __revision__ = "$Revision$"[11:-2]
7773efbe9b30 Formatting and PyLint fixes. Final score: 8.21/10
adustman
parents: 0
diff changeset
9 __author__ = "$Author$"[9:-2]