Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e85c350

Browse files
committed
Package docstring.
1 parent 13634cf commit e85c350

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

Lib/xml/__init__.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
"""Core XML support for Python.
2+
3+
This package contains three sub-packages:
4+
5+
dom -- The W3C Document Object Model. This supports DOM Level 1 +
6+
Namespaces.
7+
8+
parser -- Python wrappers for XML parsers (currently only supports Expat).
9+
10+
sax -- The Simple API for XML, developed by XML-Dev, led by David
11+
Megginson. This supports the SAX 2 API.
12+
13+
"""

Lib/xml/dom/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
"""W3C Document Object Model implementation for Python.
2+
3+
The Python mapping of the Document Object Model is documented in <...>.
4+
5+
This package contains the following modules:
6+
7+
minidom -- A simple implementation of the Level 1 DOM with namespace
8+
support added (based on the Level 2 specification).
9+
10+
"""

0 commit comments

Comments
 (0)