1
2
3
4
5
6
7
8
9 """Dummy report class, to just be there in case if reportlab is not available.
10
11 """
12
13 __docformat__ = 'restructuredtext'
14
15
16 from mvpa.base import warning
17
18 if __debug__:
19 from mvpa.base import debug
20
23
24
26 """Dummy report class which does nothing but complains if used
27
28 """
29
31 """Initialize dummy report
32 """
33 warning("You are using DummyReport - no action will be taken. "
34 "Please install reportlab to enjoy reporting facility "
35 "within PyMVPA")
36
38 """
39 """
40
41 return _dummy
42