lp://staging/myconnpy/0.1
- Get this branch:
- bzr branch lp://staging/myconnpy/0.1
Branch merges
- Geert JM Vanderkelen: Pending requested
-
Diff: 979 lines (+377/-54) (has conflicts)48 files modifiedChangeLog (+201/-2)
README (+4/-0)
make_release.py (+4/-0)
python2/examples/client.py (+4/-0)
python2/mysql/connector/__init__.py (+1/-1)
python2/mysql/connector/_version.py (+4/-0)
python2/mysql/connector/connection.py (+6/-2)
python2/mysql/connector/constants.py (+1/-1)
python2/mysql/connector/conversion.py (+2/-2)
python2/mysql/connector/cursor.py (+2/-2)
python2/mysql/connector/dbapi.py (+1/-1)
python2/mysql/connector/errors.py (+4/-0)
python2/mysql/connector/mysql.py (+1/-1)
python2/mysql/connector/protocol.py (+1/-1)
python2/mysql/connector/utils.py (+1/-1)
python2/tests/__init__.py (+2/-2)
python2/tests/test_bugs.py (+43/-1)
python2/tests/test_constants.py (+2/-2)
python2/tests/test_conversion.py (+2/-2)
python2/tests/test_cursor.py (+2/-2)
python2/tests/test_examples.py (+2/-2)
python2/tests/test_mysql_datatypes.py (+2/-2)
python2/tests/test_pep249.py (+1/-1)
python2/tests/test_protocol.py (+1/-1)
python2/tests/test_utils.py (+1/-1)
python3/mysql/connector/__init__.py (+1/-1)
python3/mysql/connector/_version.py (+4/-0)
python3/mysql/connector/connection.py (+6/-2)
python3/mysql/connector/constants.py (+1/-1)
python3/mysql/connector/conversion.py (+1/-1)
python3/mysql/connector/cursor.py (+1/-1)
python3/mysql/connector/dbapi.py (+1/-1)
python3/mysql/connector/errors.py (+1/-1)
python3/mysql/connector/mysql.py (+1/-1)
python3/mysql/connector/protocol.py (+1/-1)
python3/mysql/connector/utils.py (+1/-1)
python3/tests/__init__.py (+1/-1)
python3/tests/test_bugs.py (+43/-1)
python3/tests/test_constants.py (+2/-2)
python3/tests/test_conversion.py (+2/-2)
python3/tests/test_cursor.py (+1/-1)
python3/tests/test_examples.py (+2/-2)
python3/tests/test_mysql_datatypes.py (+1/-1)
python3/tests/test_pep249.py (+1/-1)
python3/tests/test_protocol.py (+1/-1)
python3/tests/test_utils.py (+1/-1)
setup.py (+4/-0)
unittests.py (+4/-0)
Branch information
Recent revisions
- 243. By Geert JM Vanderkelen
-
Fix: examples.
config. Config. dbinfo( ) not returning TCP port o Bug lp:586003
o Config.dbinfo() now includes the TCP port
o Adding test case
o Updating ChangeLog - 241. By Geert JM Vanderkelen
-
Copyright change to Oracle
o Change copyright in all files
o Fixing a silly typo - 240. By Geert JM Vanderkelen
-
Critical bug fix: impossible to select big results
o It was impossible to select big result sets.
o Fixed for both Python2 and Python3.
o Added test case for bug lp:586003 and lp:551533 - 237. By Geert JM Vanderkelen
-
Additional fix for bug lp:573274
o A save went wrong after unittesting apparently.
- 236. By Geert JM Vanderkelen
-
Fixes the operation not being encoded to character set
o Forgot to save the encoded operation resulting in encoding errors (for Py2x)
o Trapping Unicode exceptions and raising those back to the application as
ProgrammingError exceptions. - 235. By Geert JM Vanderkelen
-
Adding default collations to constants.
CharacterSet o When retrieving information about a character set, and no collation іs
given, the default collation will be returned. Before we assumed that each
charset had a default collation of 'xyz_general_ci', which is obviously wrong.
o Added unittest for new get_default_collation( )-method.
o Fix in mysql.MySQLBase.get_characters et_info( ) - 234. By Geert JM Vanderkelen
-
Improving DATETIME to datetime.datetime conversion
o The conversion from MySQL's DATETIME to datetime.datetime was still using
the expensive time.strptime() function. We are now parsing the string (buffer)
just like DATE and TIME fields.
o No updates to unittests needed.
Branch metadata
- Branch format:
- Branch format 6
- Repository format:
- Bazaar pack repository format 1 (needs bzr 0.92)