A Flurry of Project Monterey Press Releases from 1998-1999

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News A Flurry of Project Monterey Press Releases from 1998-1999
# 1  
Old 03-17-2009
A Flurry of Project Monterey Press Releases from 1998-1999

In connection with completing our records on Groklaw, we've set up a permanent page for our coverage of Project Monterey, a major theme in the SCO v. IBM litigation. Here are some press releases to add to our collection, which confirm all that we already knew or suspected about Project Monterey.
Why does it matter now? Because eventually, the SCO v. IBM litigation will ramp up again, after the SCO bankruptcy is over, and SCO claims that some of its Project Monterey claims survived the decision in SCO v. Novell that Novell retained the UNIX and UnixWare copyrights in the Novell/Santa Cruz deal in 1995. IBM denies that any of SCO's Project Monterey claims survive. You can fully trace both sides' positions on our new permanent Project Monterey page. It's also worth doing so as to complete and preserve the historical record, which has already partially 'disappeared'.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
PYTHON-COVERAGE(1)					      General Commands Manual						PYTHON-COVERAGE(1)

NAME
python-coverage - measure code coverage of Python program execution SYNOPSIS
python-coverage -x module.py [ARG...] python-coverage -e python-coverage -r [-m] python-coverage -a [file...] DESCRIPTION
python-coverage executes a Python program and measures which of its statements are executed and which are not. It stores the information in the file .coverage in the current working directory. OPTIONS
-e Erase the .coverage file. -x Execute a Python module, giving it the remaining command line arguments. -r Produce a coverage report. -m With -r, show the line numbers that were missed by the execution. -a Annotate source files. For each source file foo, produce foo,cover, with executed lines prefixed by ">" and non-executed by "!". --help Produce a help summary. It might be more helpful than this manual page. AUTHOR
The python-coverage command is a one-line Python script which calls the coverage.py Python module to do all the work. The module was rigi- nally developed by Gareth Rees, and is now developed by Ned Batchelder. The module's home page is http://www.nedbatchelder.com/code/modules/coverage.html. This manual page was cobbled together by Lars Wirzenius for Debian, by copy-pasting from the help texts from the module. PYTHON-COVERAGE(1)