diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-04 20:00:26 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-04 20:01:04 -0500 |
commit | fbd660af20e62c6d0836147b7eb83aafb4bad2e8 (patch) | |
tree | 3458ffc9024b765c789808b44ec578e98c8e1a65 /src/pyinterp.cc | |
parent | e0ba950327cf70a261cdb5d6d343b2ca28e733f4 (diff) | |
download | fork-ledger-fbd660af20e62c6d0836147b7eb83aafb4bad2e8.tar.gz fork-ledger-fbd660af20e62c6d0836147b7eb83aafb4bad2e8.tar.bz2 fork-ledger-fbd660af20e62c6d0836147b7eb83aafb4bad2e8.zip |
Removed several unneeded Python interface files
Diffstat (limited to 'src/pyinterp.cc')
-rw-r--r-- | src/pyinterp.cc | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/pyinterp.cc b/src/pyinterp.cc index 7c4818ae..005fc57a 100644 --- a/src/pyinterp.cc +++ b/src/pyinterp.cc @@ -44,19 +44,14 @@ char * argv0; void export_account(); void export_amount(); void export_balance(); -void export_chain(); void export_commodity(); void export_expr(); void export_flags(); void export_format(); -void export_global(); void export_item(); void export_journal(); void export_post(); -void export_report(); void export_scope(); -void export_session(); -void export_timelog(); void export_times(); void export_utils(); void export_value(); @@ -67,25 +62,24 @@ void initialize_for_python() export_account(); export_amount(); export_balance(); - export_chain(); export_commodity(); export_expr(); export_flags(); export_format(); - export_global(); export_item(); export_journal(); export_post(); - export_report(); export_scope(); - export_session(); - export_timelog(); export_times(); export_utils(); export_value(); export_xact(); +#if 0 + // jww (2009-11-04): This is not valid unless I export the session object. + // But I think Python scripters will interace with a journal instead. scope().attr("current_session") = python_session; +#endif } struct python_run |