summaryrefslogtreecommitdiff
path: root/src/pyinterp.cc
Commit message (Collapse)AuthorAgeFilesLines
* Added #if's for building optimized with ClangJohn Wiegley2012-03-071-0/+2
|
* Corrected several compile and link problemsJohn Wiegley2012-03-061-0/+1
|
* This now works: ledger --import os eval 'os.path.isdir("/tmp")'John Wiegley2012-03-021-57/+86
|
* Allow --options to be added by the user in PythonJohn Wiegley2012-03-011-1/+10
|
* Fixes to value_t to Python conversionJohn Wiegley2012-03-011-5/+3
|
* Added a new 'python' directiveJohn Wiegley2012-03-011-24/+53
|
* Use filesystem::complete not absolute with Boost < 1.46John Wiegley2012-03-011-0/+4
|
* Started writing Python unit testsJohn Wiegley2012-03-011-0/+2
|
* Refactored the notion of "the current parsing context"John Wiegley2012-03-011-7/+28
|
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Fixed Python initialization problem with --importJohn Wiegley2012-02-291-10/+12
|
* Cleanup whitespaceJohn Wiegley2011-08-181-5/+5
|
* Support Boost 1.46 and Boost.Filesystem v3John Wiegley2011-02-281-1/+7
|
* Completely reworked argument passing in expressionsJohn Wiegley2010-06-131-1/+1
|
* Untabified all source filesJohn Wiegley2010-06-111-54/+54
|
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Added another catch handler for Python exceptionsJohn Wiegley2009-11-141-0/+4
|
* Reordered the export_ calls in pyinterp.ccJohn Wiegley2009-11-121-6/+6
|
* Fixes to Python importing; removed "hello" precommandJohn Wiegley2009-11-101-45/+124
|
* Check for Python options before functionsJohn Wiegley2009-11-081-0/+3
|
* Make sure to clean up memory after a Python exceptionJohn Wiegley2009-11-071-2/+12
|
* Python vars of unconvertable type return NULL_VALUEJohn Wiegley2009-11-071-7/+0
|
* Simplified passing of scope objects in PythonJohn Wiegley2009-11-051-40/+63
|
* Segregated symbols into 5 separate namespacesJohn Wiegley2009-11-041-22/+24
| | | | | | | | | | | | | | | | | | | | | The different namespaces are: Function Value expression functions, which receive a "context" Option Command-line options Precommand Commands which are invoked before reading the journal Command Commands which are invoked after reading the journal Directive Directives that occur at column 0 in a data file This greatly eases the ability for Python uses to add intercept hooks to change how the basic Ledger module functions. An example of what should be possible soon: import ledger def my_foo_handler(value): print "--foo received:", value ledger.add_handler(ledger.Option, "foo=", my_foo_handler)
* Removed several unneeded Python interface filesJohn Wiegley2009-11-041-10/+4
|
* Changed two callout commentsJohn Wiegley2009-11-031-1/+1
|
* Added Python interface for account_tJohn Wiegley2009-11-031-0/+2
|
* Renamed Python global "session" to "current_session"John Wiegley2009-11-021-1/+1
|
* Fixed many compiler warnings from g++ 4.4John Wiegley2009-10-251-1/+1
|
* Enabled use of pre-compiled headers by defaultJohn Wiegley2009-03-101-0/+2
|
* Disabled warning on not finding ledger/__init__.pyJohn Wiegley2009-03-091-1/+4
| | | | | This warning is completely harmless, and was downgraded to a debug message.
* Fixed a few minor cases of uninitialized variablesJohn Wiegley2009-03-081-2/+2
|
* Added a "python" command, which invokes Py_MainJohn Wiegley2009-03-031-0/+41
|
* Added a warning_() macroJohn Wiegley2009-02-261-3/+1
|
* Marked all strings needing internationalizationJohn Wiegley2009-02-251-13/+12
| | | | | | | | | | | | | | | | These strings are now collected automagically in the file po/ledger.pot. If you'd like to produce a translation, just run this command after building Ledger: msginit -l LOCALE -o LANG.po -i po/ledger.pot Where LOCALE is a string like de or en_GB, and LANG is a short descriptive word for your language. Then send me this .po file so I can commit it to the Ledger sources (alternatively, you could maintain the file in a fork on GitHub), and setup the build script to format and install your new message catalog during a "make install".
* Added a new level of Python integrationJohn Wiegley2009-02-241-21/+77
|
* Moved python/*.cc files into src/John Wiegley2009-02-241-0/+296
This is because soon, I intend to have real Python source files in python/.