Re: [SQLObject] Proposed Plan for Porting to Python 3
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: Oleg B. <ph...@ph...> - 2014-12-11 12:52:06
|
On Wed, Dec 10, 2014 at 12:55:36AM +0100, Oleg Broytman <ph...@ph...> wrote: > There is one sporadic bug related to round number of microseconds > like 83500: some parts of code think it's 0.0835 (83500), and some think > it's 0.835 (835000). See the traceback near the end of > https://travis-ci.org/sqlobject/sqlobject/jobs/42989776 Fixed. The problem was in converter.py: I used "%d" format to convert microseconds to SQL strings where it really must be "%06d". SQLObject 2.0 beta 1 was just released. All tests passed, see https://travis-ci.org/sqlobject/sqlobject/builds/43712156 Oleg. -- Oleg Broytman http://phdru.name/ ph...@ph... Programmers don't die, they just GOSUB without RETURN. |