stats.py (1758:74acd5b23964) stats.py (1772:a3a83e812a5e)
1#!/usr/bin/env python
2
3# Copyright (c) 2003-2004 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
1#!/usr/bin/env python
2
3# Copyright (c) 2003-2004 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29#Permission is granted to use, copy, create derivative works and
30#redistribute this software and such derivative works for any purpose,
31#so long as the copyright notice above, this grant of permission, and
32#the disclaimer below appear in all copies made; and so long as the
33#name of The University of Michigan is not used in any advertising or
34#publicity pertaining to the use or distribution of this software
35#without specific, written prior authorization.
36#
37#THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE
38#UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND WITHOUT
39#WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER EXPRESS OR
40#IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF
41#MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS OF
42#THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR ANY DAMAGES,
43#INCLUDING DIRECT, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
44#DAMAGES, WITH RESPECT TO ANY CLAIM ARISING OUT OF OR IN CONNECTION
45#WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS BEEN OR IS HEREAFTER
46#ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
47
48from __future__ import division
49import re, sys, math
50
51
52def usage():
53 print '''\
54Usage: %s [-E] [-F] [-d <db> ] [-g <get> ] [-h <host>] [-p]
55 [-s <system>] [-r <runs> ] [-T <samples>] [-u <username>]

--- 754 unchanged lines hidden ---
29from __future__ import division
30import re, sys, math
31
32
33def usage():
34 print '''\
35Usage: %s [-E] [-F] [-d <db> ] [-g <get> ] [-h <host>] [-p]
36 [-s <system>] [-r <runs> ] [-T <samples>] [-u <username>]

--- 754 unchanged lines hidden ---