Update of /cvsroot/docstring/dps/spec
In directory usw-pr-cvs1:/tmp/cvs-serv29614/dps/spec
Modified Files:
dps-notes.txt
Log Message:
updated
Index: dps-notes.txt
===================================================================
RCS file: /cvsroot/docstring/dps/spec/dps-notes.txt,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** dps-notes.txt 2001/08/15 03:23:44 1.6
--- dps-notes.txt 2001/08/16 02:26:54 1.7
***************
*** 2,7 ****
Notes
=======
! Date: $Date$
! Revision: $Revision$
--- 2,7 ----
Notes
=======
! :Date: $Date$
! :Revision: $Revision$
***************
*** 39,70 ****
- Error Handling
- ==============
-
- Tibs pointed out that the four levels correspond to `VMS severity levels`_:
-
- +-------+-------+--------------+------------------------------------+
- | DPS | VMS | | |
- | Level | Value | Severity | Response |
- +=======+=======+==============+====================================+
- | n/a | 1 | Success | Execution continues, expected |
- | | | | results |
- +-------+-------+--------------+------------------------------------+
- | 0 | 3 | Information | Execution continues, informational |
- | | | | message displayed |
- +-------+-------+--------------+------------------------------------+
- | 1 | 0 | Warning | Execution continues, unpredictable |
- | | | | results |
- +-------+-------+--------------+------------------------------------+
- | 2 | 2 | Error | Execution continues, erroneous |
- | | | | results |
- +-------+-------+--------------+------------------------------------+
- | 3 | 4 | Severe error | Execution terminates, no output |
- +-------+-------+--------------+------------------------------------+
-
- .. _VMS severity levels:
- http://www.openvms.compaq.com:8000/73final/5841/5841pro_027.html#error_cond_severity
-
-
I/O APIs
========
--- 39,42 ----
***************
*** 78,84 ****
We need code that scans a parsed Python module, and returns an ordered
! tree containing the names, docstrings (including additional
! docstrings), and additional info (in parentheses below) of all of the
! following objects:
- packages
--- 50,56 ----
We need code that scans a parsed Python module, and returns an ordered
! tree containing the names, docstrings (including attribute and
! additional docstrings), and additional info (in parentheses below) of
! all of the following objects:
- packages
***************
*** 88,98 ****
- class attributes (+ values)
- instance attributes (+ values)
! - methods (+ formal parameters)
! - functions (+ formal parameters)
In order to evaluate interpreted text cross-references, namespaces for
each of the above will also be required.
! See python-dev/docstring-develp thread "AST mining", started on
2001-08-14.
--- 60,70 ----
- class attributes (+ values)
- instance attributes (+ values)
! - methods (+ formal parameters & defaults)
! - functions (+ formal parameters & defaults)
In order to evaluate interpreted text cross-references, namespaces for
each of the above will also be required.
! See python-dev/docstring-develop thread "AST mining", started on
2001-08-14.
|