diff options
author | John Wiegley <johnw@newartisans.com> | 2004-09-07 20:03:01 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-09-07 20:03:01 -0400 |
commit | a4c5380a7f0abc2ab0bdc9347bba967a113ad696 (patch) | |
tree | 3ae4fd4c5987f4c960acb6c8aa49b98bb371b8d6 /amounts.py | |
parent | 6126d48e279e04aaa99cc7a17cda7a9803597ac2 (diff) | |
download | fork-ledger-a4c5380a7f0abc2ab0bdc9347bba967a113ad696.tar.gz fork-ledger-a4c5380a7f0abc2ab0bdc9347bba967a113ad696.tar.bz2 fork-ledger-a4c5380a7f0abc2ab0bdc9347bba967a113ad696.zip |
some fixes to value_t in python; still more work to go
Diffstat (limited to 'amounts.py')
-rw-r--r-- | amounts.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -8,8 +8,11 @@ print x y = Amount ("$1000.45") print x + y +y = Amount ("$1000.45") +print x * y + z = Value ("$1000.45") -print y + z +#print z + Value(y) -z += x +z += Value(x) print z |