Wrong dbapi for Binary in python3
Bug #732134 reported by
Martin Drejer
This bug affects 3 people
Affects | Status | Importance | Assigned to | Milestone | ||
---|---|---|---|---|---|---|
MySQL Connector/Python | Status tracked in Trunk | |||||
0.3 |
In Progress
|
High
|
Geert JM Vanderkelen | |||
Trunk |
In Progress
|
High
|
Geert JM Vanderkelen |
Bug Description
Just downloaded the file http://
Binary = str
In python 3 this should be:
Binary = binary
This avoids the code from wrapping binary data in b'data' when inserted into data.
The path to the file in the archive is:
mysql-connector
To post a comment you must log in.
Oops. Typo...
The line for python3 should of course be:
Binary = bytes