diff -r 212a69cc4d44 -r 52284710c0b4 iro/model/__init__.py --- a/iro/model/__init__.py Thu Mar 29 17:33:10 2012 +0200 +++ b/iro/model/__init__.py Thu Mar 29 18:27:15 2012 +0200 @@ -1,3 +1,8 @@ +"""The model pakcage represents all data, that is stored either in database or in objects. + +before using the model, you have to use, you have to set the Engine with :func:`dbdefer.setEngine` and set the Threadpool with :func:`dbdefer.setPool` (see :func:`iro.main.runReactor` for initalizing this module). +""" + import schema import user import utils @@ -6,7 +11,3 @@ from dbdefer import setEngine from pool import setPool - - - -