[Proctor-checkins] CVS: Proctor/proctorlib coverage.py,1.2,1.3
Status: Alpha
Brought to you by:
doughellmann
|
From: Doug H. <dou...@us...> - 2006-05-01 12:28:35
|
Update of /cvsroot/proctor/Proctor/proctorlib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18609 Modified Files: coverage.py Log Message: Update to latest coverage.py from http://www.nedbatchelder.com/code/modules/coverage.html Index: coverage.py =================================================================== RCS file: /cvsroot/proctor/Proctor/proctorlib/coverage.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** coverage.py 23 Oct 2002 17:18:49 -0000 1.2 --- coverage.py 1 May 2006 12:28:25 -0000 1.3 *************** *** 7,10 **** --- 7,12 ---- # # Gareth Rees, Ravenbrook Limited, 2001-12-04 + # Ned Batchelder, 2004-12-12 + # http://nedbatchelder.com/code/modules/coverage.html # # *************** *** 30,38 **** Erase collected coverage data. [...992 lines suppressed...] + # + # 2005-12-03 NMB coverage.py can now measure itself. + # + # 2005-12-04 NMB Adapted Greg Rogers' patch for using relative filenames, + # and sorting and omitting files to report on. # # C. COPYRIGHT AND LICENCE # # Copyright 2001 Gareth Rees. All rights reserved. + # Copyright 2004-2005 Ned Batchelder. All rights reserved. # # Redistribution and use in source and binary forms, with or without *************** *** 601,605 **** # DAMAGE. # - # - # # $Id$ --- 889,891 ---- |