[Docstring-checkins] CVS: dps/spec pep-0258.txt,1.3,1.4
Status: Pre-Alpha
Brought to you by:
goodger
From: David G. <go...@us...> - 2002-02-06 03:08:45
|
Update of /cvsroot/docstring/dps/spec In directory usw-pr-cvs1:/tmp/cvs-serv9597/dps/spec Modified Files: pep-0258.txt Log Message: - Updated error handling. Index: pep-0258.txt =================================================================== RCS file: /cvsroot/docstring/dps/spec/pep-0258.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** pep-0258.txt 2001/08/16 02:28:00 1.3 --- pep-0258.txt 2002/02/06 03:08:42 1.4 *************** *** 352,373 **** system warnings: ! - Level-0, "information": A minor issue that can be ignored. ! There is no effect on the processing. Typically level-0 system ! warnings are not reported. ! - Level-1, "warning": An issue that should be addressed. If ignored, there may be unpredictable problems with the output. ! - Level-2, "error": An error that should be addressed. If ignored, the output will contain errors. ! - Level-3, "severe": A severe error that must be addressed. ! Typically level-3 system warnings are turned into exceptions which halt processing. If ignored, the output will contain severe errors. ! Although the warning levels above were devised independently, they ! have a strong correspondence to VMS error condition severity ! levels [9]. The names in quotes were borrowed from VMS. --- 352,379 ---- system warnings: ! - Level-0, "DEBUG": An internal reporting issue. There is no ! effect on the processing. Level-0 system warnings are ! handled separately from the others. ! - Level-1, "INFO": A minor issue that can be ignored. There is no ! effect on the processing. Typically level-1 system warnings are ! not reported. ! ! - Level-2, "WARNING": An issue that should be addressed. If ignored, there may be unpredictable problems with the output. ! - Level-3, "ERROR": An error that should be addressed. If ignored, the output will contain errors. ! - Level-4, "SEVERE": A severe error that must be addressed. ! Typically level-4 system warnings are turned into exceptions which halt processing. If ignored, the output will contain severe errors. ! Although the initial warning levels were devised independently, ! they have a strong correspondence to VMS error condition severity ! levels [9]; the names in quotes for levels 1 through 4 were ! borrowed from VMS. Error handling has since been influenced by ! the log4j project [10]. *************** *** 396,401 **** 5841pro_027.html#error_cond_severity ! [10] http://www.python.org/sigs/doc-sig/ Project Web Site --- 402,409 ---- 5841pro_027.html#error_cond_severity ! [10] http://jakarta.apache.org/log4j/ + [11] http://www.python.org/sigs/doc-sig/ + Project Web Site *************** *** 413,417 **** This document borrows ideas from the archives of the Python ! Doc-SIG [10]. Thanks to all members past & present. --- 421,425 ---- This document borrows ideas from the archives of the Python ! Doc-SIG [11]. Thanks to all members past & present. |