diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-07 10:32:24 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-07 10:32:24 -0600 |
commit | b1107f85ae07a85124e58a0e379ec2d9ab47d119 (patch) | |
tree | a44d0e10642cc8989b64c2ea89c4bbbf98eb3774 /src/py_balance.cc | |
parent | 7bb83173dae617b8e754fff8e52390ff9664873b (diff) | |
download | fork-ledger-b1107f85ae07a85124e58a0e379ec2d9ab47d119.tar.gz fork-ledger-b1107f85ae07a85124e58a0e379ec2d9ab47d119.tar.bz2 fork-ledger-b1107f85ae07a85124e58a0e379ec2d9ab47d119.zip |
Removed value_t::price and balance_t::price
Diffstat (limited to 'src/py_balance.cc')
-rw-r--r-- | src/py_balance.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/py_balance.cc b/src/py_balance.cc index 6c9ccb24..38941832 100644 --- a/src/py_balance.cc +++ b/src/py_balance.cc @@ -201,8 +201,6 @@ void export_balance() .def("value", py_value_1, args("in_terms_of")) .def("value", py_value_2, args("in_terms_of", "moment")) - .def("price", &balance_t::price) - .def("__nonzero__", &balance_t::is_nonzero) .def("is_nonzero", &balance_t::is_nonzero) .def("is_zero", &balance_t::is_zero) |