Hi,

I finally found that housekeeping was the best solution, as I needed anyway
to add a layer over the basic information kept by SQLite :
- the function ".__doc__" information,
- or even the full function creation script.

** discovery of the day : fibonacci works !**

pydef py_fib(n):
   "fibonacci : example with internal function call (external won't work) "
   fib = lambda n: n if n < 2 else fib(n-1) + fib(n-2)
   return("%s" % fib(n*1));

select py_fib(8), sqlite_version()
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to