Convert python bindings from timespec to time64.

This commit is contained in:
John Ralls
2018-01-20 12:32:42 -08:00
parent cc097a3f35
commit 91f4b19039
7 changed files with 98 additions and 83 deletions

View File

@@ -34,8 +34,8 @@ class TestAccount( AccountSession ):
tx = Transaction(self.book)
tx.BeginEdit()
tx.SetCurrency(self.currency)
tx.SetDateEnteredTS(datetime.now())
tx.SetDatePostedTS(datetime.now())
tx.SetDateEnteredSecs(datetime.now())
tx.SetDatePostedSecs(datetime.now())
s1a = Split(self.book)
s1a.SetParent(tx)