diff options
author | John Wiegley <johnw@newartisans.com> | 2004-09-23 21:54:11 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-09-23 21:54:11 -0400 |
commit | 1416f3b97841e27e94220a1f37c70484c25ff37c (patch) | |
tree | c7e18c98656c70b78e02a20f9bae15093ea57051 /python.cc | |
parent | 7a195320498ad75297fcbd47dcf31e7dd6b8d9af (diff) | |
download | fork-ledger-1416f3b97841e27e94220a1f37c70484c25ff37c.tar.gz fork-ledger-1416f3b97841e27e94220a1f37c70484c25ff37c.tar.bz2 fork-ledger-1416f3b97841e27e94220a1f37c70484c25ff37c.zip |
a bit more refactoring
Diffstat (limited to 'python.cc')
-rw-r--r-- | python.cc | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -29,6 +29,7 @@ void export_format(); void export_valexpr(); void export_datetime(); void export_autoxact(); +void export_derive(); void initialize_ledger_for_python() { @@ -50,6 +51,7 @@ void initialize_ledger_for_python() export_valexpr(); export_datetime(); export_autoxact(); + export_derive(); module_initialized = true; } |