* Removed some old-style Python stuff from setup.py

* Added a bit of documentation on ssl parameter to Connection

 * Version 1.1.5
This commit is contained in:
adustman
2004-09-19 21:38:08 +00:00
parent 0af082a686
commit a63002ecb5
4 changed files with 12 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ __revision__ = """$Revision$"""[11:-2]
version_info = (
1,
1,
4,
5,
"final",
1)
if version_info[3] == "final": __version__ = "%d.%d.%d" % version_info[:3]

View File

@@ -61,7 +61,11 @@ class Connection(_mysql.connection):
default encoding is used. If not set at all, character
columns are returned as normal strings.
client_flag -- integer, flags to use or 0 (see MySQL docs or constants/CLIENTS.py)
ssl -- dictionary or mapping, contains SSL connection parameters; see
the MySQL documentation for more details (mysql_ssl_set()).
If this is set, and the client does not support SSL,
UnsupportedError will be raised.
There are a number of undocumented, non-standard methods. See the
documentation for the MySQL C API for some hints on what they do.