Update of /cvsroot/docstring/dps/dps
In directory usw-pr-cvs1:/tmp/cvs-serv29005/dps/dps
Modified Files:
__init__.py
Log Message:
- Added docstring.
Index: __init__.py
===================================================================
RCS file: /cvsroot/docstring/dps/dps/__init__.py,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** __init__.py 2001/07/22 22:35:43 1.1.1.1
--- __init__.py 2002/01/16 02:51:47 1.2
***************
*** 1,3 ****
#! /usr/bin/env python
! # $Id$
! # by David Goodger
--- 1,45 ----
#! /usr/bin/env python
!
! """
! :Author: David Goodger
! :Contact: go...@us...
! :Revision: $Revision$
! :Date: $Date$
! :Copyright: This module has been placed in the public domain.
!
! This is the Docstring Processing System (DPS) Python package.
!
! Package Structure
! =================
!
! Modules:
!
! - __init__.py: Contains package docstring only (this text).
!
! - nodes.py: DPS document tree (doctree) node class library.
!
! - roman.py: Conversion to and from Roman numerals. Courtesy of Mark
! Pilgrim (http://diveintopython.org/).
!
! - statemachine.py: A finite state machine specialized for
! regular-expression-based text filters.
!
! - urischemes.py: Contains a complete mapping of known URI addressing
! scheme names to descriptions.
!
! - utils.py: Miscellaneous utilities.
!
! Subpackages:
!
! - languages: Language-specific mappings of terms.
!
! - parsers: Syntax-specific input parser modules or packages.
!
! - readers: Context-specific input handlers which understand the data
! source and manage a parser.
!
! - transforms: Modules used by readers and writers to modify DPS
! doctrees.
!
! - writers: Format-specific output translators.
! """
|