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

Skip to content

Commit cfaf143

Browse files
committed
Added a few new undocumented modules.
1 parent 9e48b27 commit cfaf143

2 files changed

Lines changed: 20 additions & 10 deletions

File tree

Doc/lib/libundoc.tex

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ \section{Stuff useful to a lot of people, including the CGI crowd}
3636

3737
mailbox.py -- handle Unix style, MMDF style, and MH style mailboxes
3838

39+
gzip.py -- compression using zlib (compatible with gzip)
40+
3941

4042
\section{Miscellaneous useful utilities}
4143

@@ -61,9 +63,6 @@ \section{Miscellaneous useful utilities}
6163

6264
colorsys.py -- Conversion between RGB and other color systems
6365

64-
commands.py -- executing commands and looking at their output and
65-
status
66-
6766
dbhash.py -- (g)dbm-like wrapper for bsdhash.hashopen
6867

6968
mhlib.py -- MH interface
@@ -78,6 +77,8 @@ \section{Miscellaneous useful utilities}
7877

7978
ihooks.py -- Import hook support (for ni and rexec)
8079

80+
pprint.py -- support to pretty-print lists, tuples, & dictionaries recursively
81+
8182

8283
\section{Parsing Python}
8384

@@ -89,6 +90,8 @@ \section{Parsing Python}
8990

9091
symbol.py -- Symbols (from ``graminit.h'')
9192

93+
keyword.py -- Keywords (from ``graminit.c'')
94+
9295
tokenize.py -- regular expression that recognizes Python tokens
9396

9497
pyclbr.py -- Parse a Python file and retrieve classes and methods
@@ -116,7 +119,7 @@ \section{Code objects and files, debugger etc.}
116119
repr.py -- Redo the `...` (representation) but with limits on most
117120
sizes (used by pdb)
118121

119-
newdir.py -- New dir() function
122+
copy_reg.py -- helper to provide extensibility for pickle/cPickle
120123

121124

122125
\section{Multimedia}
@@ -141,7 +144,7 @@ \section{Oddities}
141144
These modules are probably also obsolete, or just not very useful.
142145

143146
Queue.py -- A multi-producer, multi-consumer queue
144-
147+
p
145148
bisect.py -- Bisection algorithms
146149

147150
dump.py -- Print python code that reconstructs a variable
@@ -173,6 +176,8 @@ \section{Oddities}
173176

174177
\section{Obsolete}
175178

179+
newdir.py -- New dir() function (the standard dir() is now just as good)
180+
176181
addpack.py -- standard support for "packages" (use ni instead)
177182

178183
fmt.py -- text formatting abstractions (too slow)

Doc/libundoc.tex

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ \section{Stuff useful to a lot of people, including the CGI crowd}
3636

3737
mailbox.py -- handle Unix style, MMDF style, and MH style mailboxes
3838

39+
gzip.py -- compression using zlib (compatible with gzip)
40+
3941

4042
\section{Miscellaneous useful utilities}
4143

@@ -61,9 +63,6 @@ \section{Miscellaneous useful utilities}
6163

6264
colorsys.py -- Conversion between RGB and other color systems
6365

64-
commands.py -- executing commands and looking at their output and
65-
status
66-
6766
dbhash.py -- (g)dbm-like wrapper for bsdhash.hashopen
6867

6968
mhlib.py -- MH interface
@@ -78,6 +77,8 @@ \section{Miscellaneous useful utilities}
7877

7978
ihooks.py -- Import hook support (for ni and rexec)
8079

80+
pprint.py -- support to pretty-print lists, tuples, & dictionaries recursively
81+
8182

8283
\section{Parsing Python}
8384

@@ -89,6 +90,8 @@ \section{Parsing Python}
8990

9091
symbol.py -- Symbols (from ``graminit.h'')
9192

93+
keyword.py -- Keywords (from ``graminit.c'')
94+
9295
tokenize.py -- regular expression that recognizes Python tokens
9396

9497
pyclbr.py -- Parse a Python file and retrieve classes and methods
@@ -116,7 +119,7 @@ \section{Code objects and files, debugger etc.}
116119
repr.py -- Redo the `...` (representation) but with limits on most
117120
sizes (used by pdb)
118121

119-
newdir.py -- New dir() function
122+
copy_reg.py -- helper to provide extensibility for pickle/cPickle
120123

121124

122125
\section{Multimedia}
@@ -141,7 +144,7 @@ \section{Oddities}
141144
These modules are probably also obsolete, or just not very useful.
142145

143146
Queue.py -- A multi-producer, multi-consumer queue
144-
147+
p
145148
bisect.py -- Bisection algorithms
146149

147150
dump.py -- Print python code that reconstructs a variable
@@ -173,6 +176,8 @@ \section{Oddities}
173176

174177
\section{Obsolete}
175178

179+
newdir.py -- New dir() function (the standard dir() is now just as good)
180+
176181
addpack.py -- standard support for "packages" (use ni instead)
177182

178183
fmt.py -- text formatting abstractions (too slow)

0 commit comments

Comments
 (0)