annotate bindings/sb-alien/package.lisp @ 662:01af8c56eb8d

added the first three unit tests for python bindings. currently tests have to be manually run like this: >python tests/InitialisationRelated.py ensuring that the python location can see the pyadb library (i.e. it's installed and in the search path or you've move to the local copy's location) This should run all 3 tests with some moderate output. All three tests should succeed.
author map01bf
date Wed, 13 Jan 2010 15:07:58 +0000
parents 368c8c72e723
children
rev   line source
mas01cr@511 1 (cl:defpackage "SB-ADB"
mas01cr@511 2 (:use "CL" "SB-ALIEN")
mas01cr@643 3 (:export
mas01cr@643 4 ;; classes, constructors and accessors
mas01cr@643 5 "ADB" "WITH-ADB"
mas01cr@643 6 "DATUM" "MAKE-DATUM" "DATUM-KEY" "DATUM-DATA" "DATUM-TIMES" "DATUM-POWER"
mas01cr@643 7 "RESULT" "RESULT-KEY" "RESULT-DISTANCE" "RESULT-QPOS" "RESULT-IPOS"
mas01cr@643 8 "RESULTS"
mas01cr@643 9 ;; functions
mas01cr@646 10 "OPEN" "CLOSE" "INSERT" "RETRIEVE" "QUERY" "LISZT")
mas01cr@511 11 (:shadow "OPEN" "CLOSE"))