mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Package docstring.
This commit is contained in:
parent
13634cf7a4
commit
e85c350600
2 changed files with 23 additions and 0 deletions
13
Lib/xml/__init__.py
Normal file
13
Lib/xml/__init__.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
"""Core XML support for Python.
|
||||
|
||||
This package contains three sub-packages:
|
||||
|
||||
dom -- The W3C Document Object Model. This supports DOM Level 1 +
|
||||
Namespaces.
|
||||
|
||||
parser -- Python wrappers for XML parsers (currently only supports Expat).
|
||||
|
||||
sax -- The Simple API for XML, developed by XML-Dev, led by David
|
||||
Megginson. This supports the SAX 2 API.
|
||||
|
||||
"""
|
10
Lib/xml/dom/__init__.py
Normal file
10
Lib/xml/dom/__init__.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
"""W3C Document Object Model implementation for Python.
|
||||
|
||||
The Python mapping of the Document Object Model is documented in <...>.
|
||||
|
||||
This package contains the following modules:
|
||||
|
||||
minidom -- A simple implementation of the Level 1 DOM with namespace
|
||||
support added (based on the Level 2 specification).
|
||||
|
||||
"""
|
Loading…
Add table
Add a link
Reference in a new issue