Changeset 247

Show
Ignore:
Timestamp:
Sat Apr 15 16:45:43 2006
Author:
drew
Message:

- added cover.py - deals with annotations generated by coverage (http://www.nedbatchelder.com/code/modules/coverage.html)

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/utiltests.py

    r246 r247  
    9 9 import xix.utils.binder  
    10 10 import xix.utils.mock  
    11   import xix.utils.misc.cover  
      11 import xix.utils.cover  
    11 11 import xix.utils.tools.options  
    12 12 import xix.utils.tools.parse  
     
    26 26     xix.utils.binder,  
    27 27     xix.utils.mock,  
    28       xix.utils.misc.cover,  
      28     xix.utils.cover,  
    28 28     xix.utils.tools.options,  
    29 29     xix.utils.tools.parse,  
  • trunk/xix/utils/__init__.py

    r159 r247  
    1   '''The Kitchen Sink  
      1 '''More batteries for python apps.  
    1 1  
    2 2 $License$  
     
    6 6 '''  
    7 7  
    8   __all__ = ['aspout', 'source', 'console', 'config', 'rules']  
      8 #__all__ = ['aspout', 'source', 'console', 'config', 'rules']  
    8 8  
    9 9 #import xix.utils.string  
    10   import xix.utils.config  
      10 #import xix.utils.config  
    10 10 #import xix.utils.rules # we can't load this here due to config setup dependency  
    11 11