summaryrefslogtreecommitdiff
path: root/src/py_account.cc
Commit message (Collapse)AuthorAgeFilesLines
* Refactor python related types into ledger::python namespaceAlexis Hildebrandt2023-04-121-3/+4
|
* Refactor basic_flags_t to ledger::flags::basic_tAlexis Hildebrandt2023-04-121-0/+1
|
* Update copyright yearAlexis Hildebrandt2023-02-021-1/+1
| | | | [skip ci]
* Update copyright statement for 2022Alexis Hildebrandt2022-07-021-1/+1
|
* fix: Fix #543 by tracking an account's real balanceDaraul2020-04-051-1/+2
| | | | | | | | | | | | | | Without these changes, whether an account's balance is virtual or real is not considered when asserting it's balance. This lead to situations where the user must consider their virtual postings when attemping to assert the real balance of the account. See test/regress/543_a.test for that testcase, taken from the original issue. This commit also includes other, fringe, situations that I noticed while working on the fix. It essentially just adds a separate attribute to the account class(?) that hold's the account's "real" balance, which is only updated when the user attempts an assertion on a real account. The virtual account's balance is updated the way it always was.
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2018-01-271-1/+1
| | | | [ci skip]
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2017-01-051-1/+1
| | | | [ci skip]
* [misc] Update year in copyright notice to 2016Alexis Hildebrandt2016-01-021-1/+1
| | | | [ci skip]
* Bump copyright notice to 2015Alexis Hildebrandt2014-12-271-1/+1
| | | | | | The following script makes it a no-brainer: % NEXT_YEAR=2015; ag -l 'Copyright.*Wiegley' \ | xargs sed -i '' -e "s/\(Copyright.*\)-20[0-9]\{2\}/\1-${NEXT_YEAR}/"
* Improve Embedded Python SupportELIPTUS2014-11-121-2/+25
| | | | | Discussion: https://groups.google.com/d/msg/ledger-cli/kq9sKoRX9vw/fmyhvPslzokJ
* Bump copyright information to 2014Alexis Hildebrandt2014-02-021-1/+1
|
* Bump copyright information to 2013John Wiegley2013-02-181-1/+1
|
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Fixed many Clang type conversion warnings with static_castJohn Wiegley2012-02-171-2/+2
|
* Disable unused codeJohn Wiegley2012-02-171-0/+2
|
* Untabified all source filesJohn Wiegley2010-06-111-32/+32
|
* Updated to Boost 1.43John Wiegley2010-05-271-3/+3
|
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Fixed Ledger/Python byte vs. char Unicode bridgeJohn Wiegley2009-11-201-1/+7
|
* Simplified passing of scope objects in PythonJohn Wiegley2009-11-051-5/+5
|
* Made many object methods in Python propertiesJohn Wiegley2009-11-051-4/+6
|
* Simplified usage of Boost.Python in several casesJohn Wiegley2009-11-051-2/+2
|
* Transactions, etc., are now accessed by iteratorsJohn Wiegley2009-11-051-2/+7
|
* Added Python interface for account_tJohn Wiegley2009-11-031-0/+222