Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
47a07d43
Commit
47a07d43
authored
Oct 10, 2000
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed lots of small nits caught by Ka-Ping Yee <ping@lfw.org>.
parent
3b467678
Changes
16
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
40 additions
and
38 deletions
+40
-38
Doc/lib/libcmd.tex
Doc/lib/libcmd.tex
+3
-4
Doc/lib/libcurses.tex
Doc/lib/libcurses.tex
+3
-2
Doc/lib/libdis.tex
Doc/lib/libdis.tex
+4
-3
Doc/lib/liberrno.tex
Doc/lib/liberrno.tex
+6
-6
Doc/lib/libgetopt.tex
Doc/lib/libgetopt.tex
+4
-3
Doc/lib/libimghdr.tex
Doc/lib/libimghdr.tex
+4
-3
Doc/lib/libnew.tex
Doc/lib/libnew.tex
+1
-1
Doc/lib/libpprint.tex
Doc/lib/libpprint.tex
+1
-1
Doc/lib/libqueue.tex
Doc/lib/libqueue.tex
+2
-3
Doc/lib/libreadline.tex
Doc/lib/libreadline.tex
+1
-1
Doc/lib/librepr.tex
Doc/lib/librepr.tex
+1
-1
Doc/lib/librlcompleter.tex
Doc/lib/librlcompleter.tex
+2
-2
Doc/lib/librotor.tex
Doc/lib/librotor.tex
+2
-2
Doc/lib/libsignal.tex
Doc/lib/libsignal.tex
+3
-3
Doc/lib/libsndhdr.tex
Doc/lib/libsndhdr.tex
+1
-1
Doc/lib/libsocksvr.tex
Doc/lib/libsocksvr.tex
+2
-2
No files found.
Doc/lib/libcmd.tex
View file @
47a07d43
\section
{
\module
{
cmd
}
---
\section
{
\module
{
cmd
}
---
Build line-oriented command interpreters.
}
Support for line-oriented command interpreters
}
\declaremodule
{
standard
}{
cmd
}
\declaremodule
{
standard
}{
cmd
}
\sectionauthor
{
Eric S. Raymond
}{
esr@snark.thyrsus.com
}
\sectionauthor
{
Eric S. Raymond
}{
esr@snark.thyrsus.com
}
\modulesynopsis
{
Build line-oriented command interpreters.
}
\modulesynopsis
{
Build line-oriented command interpreters; this is used
by module
\module
{
pdb
}
.
}
The
\class
{
Cmd
}
class provides a simple framework for writing
The
\class
{
Cmd
}
class provides a simple framework for writing
...
...
Doc/lib/libcurses.tex
View file @
47a07d43
\section
{
\module
{
curses
}
---
\section
{
\module
{
curses
}
---
Screen painting and input handling for character-cell terminal
s
}
Terminal handling for character-cell display
s
}
\declaremodule
{
standard
}{
curses
}
\declaremodule
{
standard
}{
curses
}
\sectionauthor
{
Moshe Zadka
}{
mzadka@geocities.com
}
\sectionauthor
{
Moshe Zadka
}{
mzadka@geocities.com
}
\sectionauthor
{
Eric Raymond
}{
esr@thyrsus.com
}
\sectionauthor
{
Eric Raymond
}{
esr@thyrsus.com
}
\modulesynopsis
{
An interface to the curses library.
}
\modulesynopsis
{
An interface to the curses library, providing portable
terminal handling.
}
\versionchanged
[Added support for the
\code
{
ncurses
}
library and
\versionchanged
[Added support for the
\code
{
ncurses
}
library and
converted to a package]
{
1.6
}
converted to a package]
{
1.6
}
...
...
Doc/lib/libdis.tex
View file @
47a07d43
\section
{
\module
{
dis
}
---
\section
{
\module
{
dis
}
---
Disassembler.
}
Disassembler for Python byte code
}
\declaremodule
{
standard
}{
dis
}
\modulesynopsis
{
Disassembler.
}
\declaremodule
{
standard
}{
dis
}
\modulesynopsis
{
Disassembler for Python byte code, as stored in code
objects and
\file
{
.pyc
}
/
\file
{
.pyo
}
files.
}
The
\module
{
dis
}
module supports the analysis of Python byte code by
The
\module
{
dis
}
module supports the analysis of Python byte code by
...
...
Doc/lib/liberrno.tex
View file @
47a07d43
\section
{
\module
{
errno
}
---
\section
{
\module
{
errno
}
---
Standard errno system symbols.
}
Standard errno system symbols
}
\declaremodule
{
standard
}{
errno
}
\declaremodule
{
standard
}{
errno
}
\modulesynopsis
{
Standard errno system symbols.
}
\modulesynopsis
{
Standard errno system symbols.
}
This module makes available standard
\code
{
errno
}
system symbols.
This module makes available standard errno system symbols.
The value of each symbol is the corresponding integer value.
The value of each symbol is the corresponding integer value.
The names and descriptions are borrowed from
\file
{
linux/include/errno.h
}
,
The names and descriptions are borrowed from
\file
{
linux/include/errno.h
}
,
which should be pretty all-inclusive.
which should be pretty all-inclusive.
...
@@ -21,8 +20,9 @@ To translate a numeric error code to an error message, use
...
@@ -21,8 +20,9 @@ To translate a numeric error code to an error message, use
\function
{
os.strerror()
}
.
\function
{
os.strerror()
}
.
Of the following list, symbols that are not used on the current
Of the following list, symbols that are not used on the current
platform are not defined by the module. Symbols available can
platform are not defined by the module. The specific list of defined
include:
symbols is available as
\code
{
errno.errorcode.keys()
}
. Symbols
available can include:
\begin{datadesc}
{
EPERM
}
Operation not permitted
\end{datadesc}
\begin{datadesc}
{
EPERM
}
Operation not permitted
\end{datadesc}
\begin{datadesc}
{
ENOENT
}
No such file or directory
\end{datadesc}
\begin{datadesc}
{
ENOENT
}
No such file or directory
\end{datadesc}
...
...
Doc/lib/libgetopt.tex
View file @
47a07d43
\section
{
\module
{
getopt
}
---
\section
{
\module
{
getopt
}
---
Parser for command line options.
}
Parser for command line options
}
\declaremodule
{
standard
}{
getopt
}
\modulesynopsis
{
Parser for command line options.
}
\declaremodule
{
standard
}{
getopt
}
\modulesynopsis
{
Portable parser for command line options; support both
short and long option names.
}
This module helps scripts to parse the command line arguments in
This module helps scripts to parse the command line arguments in
...
...
Doc/lib/libimghdr.tex
View file @
47a07d43
\section
{
\module
{
imghdr
}
---
\section
{
\module
{
imghdr
}
---
Determine the type of an image.
}
Determine the type of an image
}
\declaremodule
{
standard
}{
imghdr
}
\modulesynopsis
{
Determine the type of image contained in a file or byte stream.
}
\declaremodule
{
standard
}{
imghdr
}
\modulesynopsis
{
Determine the type of image contained in a file or
byte stream.
}
The
\module
{
imghdr
}
module determines the type of image contained in a
The
\module
{
imghdr
}
module determines the type of image contained in a
...
...
Doc/lib/libnew.tex
View file @
47a07d43
\section
{
\module
{
new
}
---
\section
{
\module
{
new
}
---
Runtime implementation object creation
}
Creation of runtime internal objects
}
\declaremodule
{
builtin
}{
new
}
\declaremodule
{
builtin
}{
new
}
\sectionauthor
{
Moshe Zadka
}{
mzadka@geocities.com
}
\sectionauthor
{
Moshe Zadka
}{
mzadka@geocities.com
}
...
...
Doc/lib/libpprint.tex
View file @
47a07d43
\section
{
\module
{
pprint
}
---
\section
{
\module
{
pprint
}
---
Data pretty printer
.
}
Data pretty printer
}
\declaremodule
{
standard
}{
pprint
}
\declaremodule
{
standard
}{
pprint
}
\modulesynopsis
{
Data pretty printer.
}
\modulesynopsis
{
Data pretty printer.
}
...
...
Doc/lib/libqueue.tex
View file @
47a07d43
\section
{
\module
{
Queue
}
---
\section
{
\module
{
Queue
}
---
A synchronized queue class.
}
A synchronized queue class
}
\declaremodule
{
standard
}{
Queue
}
\declaremodule
{
standard
}{
Queue
}
\modulesynopsis
{
A synchronized queue class.
}
\modulesynopsis
{
A synchronized queue class.
}
The
\module
{
Queue
}
module implements a multi-producer, multi-consumer
The
\module
{
Queue
}
module implements a multi-producer, multi-consumer
FIFO queue. It is especially useful in threads programming when
FIFO queue. It is especially useful in threads programming when
information must be exchanged safely between multiple threads. The
information must be exchanged safely between multiple threads. The
...
...
Doc/lib/libreadline.tex
View file @
47a07d43
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
\declaremodule
{
builtin
}{
readline
}
\declaremodule
{
builtin
}{
readline
}
\platform
{
Unix
}
\platform
{
Unix
}
\sectionauthor
{
Skip Montanaro
}{
skip@mojam.com
}
\sectionauthor
{
Skip Montanaro
}{
skip@mojam.com
}
\modulesynopsis
{
GNU
Readline in
Python.
}
\modulesynopsis
{
GNU
readline support for
Python.
}
The
\module
{
readline
}
module defines a number of functions used either
The
\module
{
readline
}
module defines a number of functions used either
...
...
Doc/lib/librepr.tex
View file @
47a07d43
\section
{
\module
{
repr
}
---
\section
{
\module
{
repr
}
---
Alternate
\function
{
repr()
}
implementation
.
}
Alternate
\function
{
repr()
}
implementation
}
\sectionauthor
{
Fred L. Drake, Jr.
}{
fdrake@acm.org
}
\sectionauthor
{
Fred L. Drake, Jr.
}{
fdrake@acm.org
}
\declaremodule
{
standard
}{
repr
}
\declaremodule
{
standard
}{
repr
}
...
...
Doc/lib/librlcompleter.tex
View file @
47a07d43
\section
{
\module
{
rlcompleter
}
---
\section
{
\module
{
rlcompleter
}
---
Completion function for readline
}
Completion function for
GNU
readline
}
\declaremodule
{
standard
}{
rlcompleter
}
\declaremodule
{
standard
}{
rlcompleter
}
\platform
{
Unix
}
\platform
{
Unix
}
\sectionauthor
{
Moshe Zadka
}{
mzadka@geocities.com
}
\sectionauthor
{
Moshe Zadka
}{
mzadka@geocities.com
}
\modulesynopsis
{
Python identifier completion
in the
readline library.
}
\modulesynopsis
{
Python identifier completion
for the GNU
readline library.
}
The
\module
{
rlcompleter
}
module defines a completion function for
The
\module
{
rlcompleter
}
module defines a completion function for
the
\refmodule
{
readline
}
module by completing valid Python identifiers
the
\refmodule
{
readline
}
module by completing valid Python identifiers
...
...
Doc/lib/librotor.tex
View file @
47a07d43
\section
{
\module
{
rotor
}
---
\section
{
\module
{
rotor
}
---
Enigma-like encryption and decryption.
}
Enigma-like encryption and decryption
}
\declaremodule
{
builtin
}{
rotor
}
\declaremodule
{
builtin
}{
rotor
}
\modulesynopsis
{
Enigma-like encryption and decryption.
}
\modulesynopsis
{
Enigma-like encryption and decryption.
}
...
...
Doc/lib/libsignal.tex
View file @
47a07d43
\section
{
\module
{
signal
}
---
\section
{
\module
{
signal
}
---
Set handlers for asynchronous events.
}
Set handlers for asynchronous events
}
\declaremodule
{
builtin
}{
signal
}
\declaremodule
{
builtin
}{
signal
}
\modulesynopsis
{
Set handlers for asynchronous events.
}
\modulesynopsis
{
Set handlers for asynchronous events.
}
This module provides mechanisms to use signal handlers in Python.
This module provides mechanisms to use signal handlers in Python.
Some general rules for working with signals and their handlers:
Some general rules for working with signals and their handlers:
...
...
Doc/lib/libsndhdr.tex
View file @
47a07d43
\section
{
\module
{
sndhdr
}
---
\section
{
\module
{
sndhdr
}
---
Determine type of sound file
.
}
Determine type of sound file
}
\declaremodule
{
standard
}{
sndhdr
}
\declaremodule
{
standard
}{
sndhdr
}
\modulesynopsis
{
Determine type of a sound file.
}
\modulesynopsis
{
Determine type of a sound file.
}
...
...
Doc/lib/libsocksvr.tex
View file @
47a07d43
\section
{
\module
{
SocketServer
}
---
\section
{
\module
{
SocketServer
}
---
A framework for network servers.
}
A framework for network servers
}
\declaremodule
{
standard
}{
SocketServer
}
\declaremodule
{
standard
}{
SocketServer
}
\modulesynopsis
{
A framework for network servers.
}
\modulesynopsis
{
A framework for network servers.
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment