summaryrefslogtreecommitdiff
path: root/src/py_xact.cc
Commit message (Collapse)AuthorAgeFilesLines
* Refactor python related types into ledger::python namespaceAlexis Hildebrandt2023-04-121-2/+3
|
* Update copyright yearAlexis Hildebrandt2023-02-021-1/+1
| | | | [skip ci]
* Python: Transaction.remove_post should call xact_base_t::remove_postDavid Sklar2023-01-101-1/+1
|
* Update copyright statement for 2022Alexis Hildebrandt2022-07-021-1/+1
|
* [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}/"
* Bump copyright information to 2014Alexis Hildebrandt2014-02-021-1/+1
|
* Bump copyright information to 2013John Wiegley2013-02-181-1/+1
|
* Fix crash when accessing the transaction code via post.xact.code using pythonAlexis Hildebrandt2012-11-191-2/+4
| | | | | | | | | | ledger would abort with the following error message: TypeError: No Python class registered for C++ class boost::optional<std::string> The changes pass a CallPolicy to make_getter when adding the transaction code property for python, so that the correct to_python conversion is made. For details see: http://www.boost.org/doc/libs/1_52_0/libs/python/doc/v2/faq.html#topythonconversionfailed
* Started writing Python unit testsJohn Wiegley2012-03-011-0/+8
|
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Fixed problem with the Python buildJohn Wiegley2012-02-291-2/+3
|
* Fixed many Clang type conversion warnings with static_castJohn Wiegley2012-02-171-2/+2
|
* Cleanup whitespaceJohn Wiegley2011-08-181-1/+1
|
* Boost.Python fixes now that item_t is abstractJohn Wiegley2010-07-291-1/+1
|
* Untabified all source filesJohn Wiegley2010-06-111-17/+17
|
* Updated to Boost 1.43John Wiegley2010-05-271-2/+2
|
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Added has_xdata() methods for journal_t and xact_tJohn Wiegley2009-11-121-0/+1
|
* Did away with the "finalizer" abstractionJohn Wiegley2009-11-111-25/+0
| | | | | This was from an earlier time, when it was intended to be used by Python. But it's not needed anymore.
* Redesigned the expr_t, predicate_t, query_t classesJohn Wiegley2009-11-091-1/+1
|
* Simplified passing of scope objects in PythonJohn Wiegley2009-11-051-1/+1
|
* Simplified usage of Boost.Python in several casesJohn Wiegley2009-11-051-2/+2
|
* Moved xdata clearing code into each type properJohn Wiegley2009-11-051-0/+2
|
* Transactions, etc., are now accessed by iteratorsJohn Wiegley2009-11-051-3/+6
|
* Added Python interface for xact_tJohn Wiegley2009-11-031-21/+117
|
* Enabled use of pre-compiled headers by defaultJohn Wiegley2009-03-101-0/+2
|
* Reduced the #include dependency tree to a minimumJohn Wiegley2009-03-041-2/+0
|
* Moved python/*.cc files into src/John Wiegley2009-02-241-0/+76
This is because soon, I intend to have real Python source files in python/.