diff -r 044383f39525 -r be27ed110b50 buildframework/helium/external/python/bin/coverage.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/buildframework/helium/external/python/bin/coverage.py Wed Oct 28 14:39:48 2009 +0000 @@ -0,0 +1,8 @@ +#!/usr/bin/env python +"A script for invoking coverage from the command line." + +import sys +del sys.path[0] # Otherwise "import coverage" finds this file! +import coverage + +coverage.the_coverage.command_line(sys.argv[1:])