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

Skip to content

Commit 1508538

Browse files
committed
Various status updates.
1 parent fc5ee0f commit 1508538

2 files changed

Lines changed: 12 additions & 42 deletions

File tree

Doc/lib/libundoc.tex

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,14 @@ \chapter{Undocumented Modules}
88

99
\section{Fundamental, and pretty straightforward to document}
1010

11-
UserDict.py -- user-defined wrapper around dictionary objects
12-
13-
UserList.py -- user-defined wrapper around list objects
14-
1511
ni.py -- New import scheme with package support
1612

17-
site.py -- easy access to site-specific modules
18-
1913

2014
\section{Frameworks; somewhat harder to document, but
2115
well worth the effort}
2216

2317
Tkinter.py -- Interface to Tcl/Tk for graphical user interfaces;
24-
Fredrik is working on this one!
18+
Fredrik Lundh is working on this one!
2519

2620
BaseHTTPServer.py -- HTTP server base class
2721

@@ -31,8 +25,6 @@ \section{Frameworks; somewhat harder to document, but
3125

3226
SocketServer.py -- Generic socket server classes
3327

34-
anydbm.py -- Generic interface to all dbm clones
35-
3628

3729
\section{Stuff useful to a lot of people, including the CGI crowd}
3830

@@ -71,15 +63,15 @@ \section{Miscellaneous useful utilities}
7163

7264
popen2.py -- improved popen? (read AND write simultaneously) (hmm)
7365

74-
random.py -- random numbers, layered on top of whrandom.py
75-
7666
statcache.py -- Maintain a cache of file stats
7767

7868
colorsys.py -- Conversion between RGB and other color systems
7969

8070
commands.py -- executing commands and looking at their output and
8171
status
8272

73+
dbhash.py -- (g)dbm-like wrapper for bsdhash.hashopen
74+
8375
dumbdbm.py -- A dumb and slow but simple dbm clone (anydbm's last
8476
resort)
8577

@@ -91,8 +83,6 @@ \section{Miscellaneous useful utilities}
9183

9284
cmd.py -- build line-oriented command interpreters (used by pdb)
9385

94-
whichdb.py -- Guess which db package to use to open a db file
95-
9686
bdb.py -- A generic Python debugger base class (used by pdb)
9787

9888
ihooks.py -- Import hook support (for ni and rexec)
@@ -110,8 +100,6 @@ \section{Parsing Python}
110100

111101
tokenize.py -- regular expression that recognizes Python tokens
112102

113-
AST.py -- see parser module documentation
114-
115103
pyclbr.py -- Parse a Python file and retrieve classes and methods
116104

117105

@@ -171,13 +159,13 @@ \section{Oddities}
171159

172160
find.py -- find files matching pattern in directory tree
173161

174-
fpformat.py -- General floating point formatting functions
162+
fpformat.py -- General floating point formatting functions -- obsolete
175163

176164
grep.py -- grep
177165

178166
mutex.py -- Mutual exclusion -- for use with module sched
179167

180-
packmail.py -- create a self-unpacking shell archive
168+
packmail.py -- create a self-unpacking \Unix{} shell archive
181169

182170
poly.py -- Polynomials
183171

@@ -196,10 +184,7 @@ \section{Obsolete}
196184

197185
addpack.py -- standard support for "packages" (use ni instead)
198186

199-
dbhash.py -- (g)dbm-compatible interface to bsdhash.hashopen (use
200-
bsddb instead)
201-
202-
fmt.py -- obsolete text formatting abstractions
187+
fmt.py -- text formatting abstractions (too slow)
203188

204189
Para.py -- helper for fmt.py
205190

Doc/libundoc.tex

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,14 @@ \chapter{Undocumented Modules}
88

99
\section{Fundamental, and pretty straightforward to document}
1010

11-
UserDict.py -- user-defined wrapper around dictionary objects
12-
13-
UserList.py -- user-defined wrapper around list objects
14-
1511
ni.py -- New import scheme with package support
1612

17-
site.py -- easy access to site-specific modules
18-
1913

2014
\section{Frameworks; somewhat harder to document, but
2115
well worth the effort}
2216

2317
Tkinter.py -- Interface to Tcl/Tk for graphical user interfaces;
24-
Fredrik is working on this one!
18+
Fredrik Lundh is working on this one!
2519

2620
BaseHTTPServer.py -- HTTP server base class
2721

@@ -31,8 +25,6 @@ \section{Frameworks; somewhat harder to document, but
3125

3226
SocketServer.py -- Generic socket server classes
3327

34-
anydbm.py -- Generic interface to all dbm clones
35-
3628

3729
\section{Stuff useful to a lot of people, including the CGI crowd}
3830

@@ -71,15 +63,15 @@ \section{Miscellaneous useful utilities}
7163

7264
popen2.py -- improved popen? (read AND write simultaneously) (hmm)
7365

74-
random.py -- random numbers, layered on top of whrandom.py
75-
7666
statcache.py -- Maintain a cache of file stats
7767

7868
colorsys.py -- Conversion between RGB and other color systems
7969

8070
commands.py -- executing commands and looking at their output and
8171
status
8272

73+
dbhash.py -- (g)dbm-like wrapper for bsdhash.hashopen
74+
8375
dumbdbm.py -- A dumb and slow but simple dbm clone (anydbm's last
8476
resort)
8577

@@ -91,8 +83,6 @@ \section{Miscellaneous useful utilities}
9183

9284
cmd.py -- build line-oriented command interpreters (used by pdb)
9385

94-
whichdb.py -- Guess which db package to use to open a db file
95-
9686
bdb.py -- A generic Python debugger base class (used by pdb)
9787

9888
ihooks.py -- Import hook support (for ni and rexec)
@@ -110,8 +100,6 @@ \section{Parsing Python}
110100

111101
tokenize.py -- regular expression that recognizes Python tokens
112102

113-
AST.py -- see parser module documentation
114-
115103
pyclbr.py -- Parse a Python file and retrieve classes and methods
116104

117105

@@ -171,13 +159,13 @@ \section{Oddities}
171159

172160
find.py -- find files matching pattern in directory tree
173161

174-
fpformat.py -- General floating point formatting functions
162+
fpformat.py -- General floating point formatting functions -- obsolete
175163

176164
grep.py -- grep
177165

178166
mutex.py -- Mutual exclusion -- for use with module sched
179167

180-
packmail.py -- create a self-unpacking shell archive
168+
packmail.py -- create a self-unpacking \Unix{} shell archive
181169

182170
poly.py -- Polynomials
183171

@@ -196,10 +184,7 @@ \section{Obsolete}
196184

197185
addpack.py -- standard support for "packages" (use ni instead)
198186

199-
dbhash.py -- (g)dbm-compatible interface to bsdhash.hashopen (use
200-
bsddb instead)
201-
202-
fmt.py -- obsolete text formatting abstractions
187+
fmt.py -- text formatting abstractions (too slow)
203188

204189
Para.py -- helper for fmt.py
205190

0 commit comments

Comments
 (0)