summaryrefslogtreecommitdiff
path: root/python/py_value.cc
Commit message (Collapse)AuthorAgeFilesLines
* Changed to using rational numbers instead of integer approximations.John Wiegley2009-01-301-0/+2
| | | | | As a result, dependency on the gdtoa was dropped, and dependency on mpfr was added.
* Removed all dependency on gdtoa.John Wiegley2009-01-301-32/+0
|
* Fully exported the value_t type to Python.John Wiegley2009-01-281-12/+283
| | | | | | | | | | Now this code works from a value expression: def myvalue(incoming): import ledger x = ledger.Value("100.23") print x.type() return incoming + x
* Create a py_value module, for translating value_t objects to/from Python.John Wiegley2009-01-231-0/+83