[Sqlalchemy-tickets] [sqlalchemy] #2868: inappropiate use of table.description
Brought to you by:
zzzeek
|
From: sqlalchemy <mi...@zz...> - 2013-11-21 17:59:57
|
#2868: inappropiate use of table.description
---------------------+---------------------------------------
Reporter: zzzeek | Owner: zzzeek
Type: defect | Status: new
Priority: highest | Milestone: 0.8.xx
Component: schema | Severity: minor - half an hour
Keywords: | Progress State: in progress
---------------------+---------------------------------------
e.g.
{{{
#!python
# coding: utf-8
from sqlalchemy import *
from sqlalchemy.util import ue
m = MetaData()
t = Table(ue('\u6e2c\u8a66'), m, Column(ue('\u6e2c\u8a66_id'), Integer))
print repr(t)
}}}
encode error!
--
Ticket URL: <http://www.sqlalchemy.org/trac/ticket/2868>
sqlalchemy <http://www.sqlalchemy.org/>
The Database Toolkit for Python
|