~ubuntu-branches/ubuntu/feisty/clamav/feisty

« back to all changes in this revision

Viewing changes to libclamav/c++/llvm/utils/lit/lit/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook
  • Date: 2007-02-20 10:33:44 UTC
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20070220103344-zgcu2psnx9d98fpa
Tags: upstream-0.90
ImportĀ upstreamĀ versionĀ 0.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
"""'lit' Testing Tool"""
2
 
 
3
 
from lit import main
4
 
 
5
 
__author__ = 'Daniel Dunbar'
6
 
__email__ = 'daniel@zuster.org'
7
 
__versioninfo__ = (0, 1, 0)
8
 
__version__ = '.'.join(map(str, __versioninfo__))
9
 
 
10
 
__all__ = []