在我当前的模型用户中,我有一个不能为空的字段“名称”。
我尝试创建一个用户对象,并将其添加到 Pyramid 提供的 DBSession 并与事务一起提交,就像这样。
with transaction.manager:
u = models.User()
models.DBSession.add(u)
对于那些不使用 Pyramid 的人,DBSession 是:
DBSession = scoped_session(sessionmaker(extension=ZopeTransactionExtension()))
现在,在我上面的交易中,我确实有一个验证问题——我需要为用户分配一个名称,但我没有。但是,我没有收到错误消息告诉我“您需要为您的用户分配一个名称!”,而是:
<ipython-input-5-47d9c0e393f7> in <module>()
2 u = models.User()
----> 3 models.DBSession.add(u)
4
/home/user/Projects/env/local/lib/python2.7/site-packages/transaction-1.4.1-py2.7.egg/transaction/_manager.pyc in __exit__(self, t, v, tb)
118 def __exit__(self, t, v, tb):
119 if v is None:
--> 120 self.commit()
121 else:
122 self.abort()
/home/user/Projects/env/local/lib/python2.7/site-packages/transaction-1.4.1-py2.7.egg/transaction/_manager.pyc in commit(self)
109 """ See ITransactionManager.
110 """
--> 111 return self.get().commit()
112
113 def abort(self):
/home/user/Projects/env/local/lib/python2.7/site-packages/transaction-1.4.1-py2.7.egg/transaction/_transaction.py in commit(self)
276 tb = None
277 try:
--> 278 t, v, tb = self._saveAndGetCommitishError()
279 self._callAfterCommitHooks(status=False)
280 reraise(t, v, tb)
/home/user/Projects/env/local/lib/python2.7/site-packages/transaction-1.4.1-py2.7.egg/transaction/_transaction.py in _saveAndGetCommitishError(self)
300 import pdb
301 pdb.set_trace()
--> 302 traceback.print_stack(sys._getframe(1), None, ft)
303 # Append the stack entries from here down to the exception.
304 traceback.print_tb(tb, None, ft)
/usr/lib/python2.7/traceback.py in print_stack(f, limit, file)
267 except ZeroDivisionError:
268 f = sys.exc_info()[2].tb_frame.f_back
--> 269 print_list(extract_stack(f, limit), file)
270
271 def format_stack(f=None, limit=None):
/usr/lib/python2.7/traceback.py in print_list(extracted_list, file)
23 ' File "%s", line %d, in %s' % (filename,lineno,name))
24 if line:
---> 25 _print(file, ' %s' % line.strip())
26
27 def format_list(extracted_list):
/usr/lib/python2.7/traceback.py in _print(file, str, terminator)
11
12 def _print(file, str='', terminator='\n'):
---> 13 file.write(str+terminator)
14
15
TypeError: 'unicode' does not have the buffer interface
我发现手头的问题是,在某处,python 版本 2 vs 3 不兼容,此处显示TypeError: 'str' does not support the buffer interface。我知道 SQLAlchemy 支持 python 3+,所以这就是问题所在。
请注意,如果我正确地进行交易,则不会引发任何错误。
有什么方法可以解决这个问题而不必覆盖 traceback.py 中的代码?