Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
ae4d5c23
Kaydet (Commit)
ae4d5c23
authored
Haz 23, 1999
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Various updates.
üst
66239d55
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
24 deletions
+20
-24
libundoc.tex
Doc/lib/libundoc.tex
+20
-24
No files found.
Doc/lib/libundoc.tex
Dosyayı görüntüle @
ae4d5c23
...
@@ -31,15 +31,11 @@ This is a package rather than a module.
...
@@ -31,15 +31,11 @@ This is a package rather than a module.
\section
{
Miscellaneous useful utilities
}
\section
{
Miscellaneous useful utilities
}
Some of these are very old and/or not very robust; marked with ``hmm
''.
Some of these are very old and/or not very robust; marked with ``hmm
.''
\begin{description}
\begin{description}
\item
[dircmp.py]
\item
[dircmp.py]
--- class to build directory diff tools on
--- class to build directory diff tools on (may become a demo or tool)
\item
[pipes.py]
--- Conversion pipeline templates (hmm, used by
\module
{
toaiff
}
and
\module
{
torgb
}
)
\item
[pty.py]
\item
[pty.py]
--- Pseudo terminal utilities
--- Pseudo terminal utilities
...
@@ -51,7 +47,7 @@ Some of these are very old and/or not very robust; marked with ``hmm''.
...
@@ -51,7 +47,7 @@ Some of these are very old and/or not very robust; marked with ``hmm''.
--- A generic Python debugger base class (used by pdb)
--- A generic Python debugger base class (used by pdb)
\item
[ihooks.py]
\item
[ihooks.py]
--- Import hook support (for
rexec
)
--- Import hook support (for
\refmodule
{
rexec
}
; may become obsolete
)
\end{description}
\end{description}
...
@@ -77,17 +73,14 @@ document these.
...
@@ -77,17 +73,14 @@ document these.
\begin{description}
\begin{description}
\item
[audiodev.py]
\item
[audiodev.py]
--- Plays audio files
--- Platform-independent API for playing audio data
\item
[sunau.py]
--- parse Sun and NeXT audio files
\item
[sunaudio.py]
\item
[sunaudio.py]
--- interpret sun audio headers
--- interpret sun audio headers
(may become obsolete or a tool/demo)
\item
[toaiff.py]
\item
[toaiff.py]
--- Convert "arbitrary" sound files to AIFF files; should probably
--- Convert "arbitrary" sound files to AIFF files; should probably
become a tool or demo
become a tool or demo
. Requires the external program
\program
{
sox
}
.
\end{description}
\end{description}
...
@@ -98,10 +91,11 @@ Some of these may be made into tools or demos in future releases.
...
@@ -98,10 +91,11 @@ Some of these may be made into tools or demos in future releases.
\begin{description}
\begin{description}
\item
[find.py]
\item
[find.py]
--- find files matching pattern in directory tree
--- find files matching pattern in directory tree (may become a demo
or tool, or possibly obsolete)
\item
[grep.py]
\item
[grep.py]
--- grep
--- grep
(may become a demo or tool)
\item
[mutex.py]
\item
[mutex.py]
--- Mutual exclusion --- for use with module sched
--- Mutual exclusion --- for use with module sched
...
@@ -128,15 +122,17 @@ possibly using \envvar{PYTHONPATH}.
...
@@ -128,15 +122,17 @@ possibly using \envvar{PYTHONPATH}.
\begin{description}
\begin{description}
\item
[newdir.py]
\item
[newdir.py]
--- New dir() function (the standard dir() is now just as good)
--- New
\function
{
dir()
}
function (the standard
\function
{
dir()
}
is
now just as good)
\item
[addpack.py]
\item
[addpack.py]
--- standard support for "packages"
--- standard support for "packages"
\item
[codehack.py]
\item
[codehack.py]
--- Extract function name or line number from a function
--- Extract function name or line number from a function
code object (these are now accessible as attributes: co.co
_
name,
code object (these are now accessible as attributes:
func.func
_
name, co.co
_
firstlineno).
\member
{
co.co
_
name
}
,
\member
{
func.func
_
name
}
,
\member
{
co.co
_
firstlineno
}
).
\item
[dump.py]
\item
[dump.py]
--- Print python code that reconstructs a variable
--- Print python code that reconstructs a variable
...
@@ -149,7 +145,7 @@ func.func_name, co.co_firstlineno).
...
@@ -149,7 +145,7 @@ func.func_name, co.co_firstlineno).
\item
[lockfile.py]
\item
[lockfile.py]
--- wrapper around FCNTL file locking (use
--- wrapper around FCNTL file locking (use
\function
{
fcntl.lockf()
}
/
\function
{
flock()
}
intead)
\function
{
fcntl.lockf()
}
/
\function
{
flock()
}
intead
; see
\refmodule
{
fcntl
}
)
\item
[poly.py]
\item
[poly.py]
--- Polynomials
--- Polynomials
...
@@ -176,7 +172,9 @@ func.func_name, co.co_firstlineno).
...
@@ -176,7 +172,9 @@ func.func_name, co.co_firstlineno).
\end{description}
\end{description}
The following modules were documented in previous versions of this
The following modules were documented in previous versions of this
manual, but are now considered obsolete:
manual, but are now considered obsolete. The source for the
documentation is still available as part of the documentation source
archive.
\begin{description}
\begin{description}
\item
[ni]
\item
[ni]
...
@@ -195,9 +193,6 @@ key. (This is an extension module.)
...
@@ -195,9 +193,6 @@ key. (This is an extension module.)
\section
{
Extension modules
}
\section
{
Extension modules
}
\begin{description}
\begin{description}
\item
[cursesmodule.c]
--- Curses interface.
\item
[dlmodule.c]
\item
[dlmodule.c]
--- A highly experimental and dangerous device for calling
--- A highly experimental and dangerous device for calling
arbitrary
\C
{}
functions in arbitrary shared libraries.
arbitrary
\C
{}
functions in arbitrary shared libraries.
...
@@ -211,7 +206,8 @@ platform-independent GUI package). Obsolete; use Tkinter for a
...
@@ -211,7 +206,8 @@ platform-independent GUI package). Obsolete; use Tkinter for a
platform-independent GUI instead.
platform-independent GUI instead.
\end{description}
\end{description}
The following are SGI specific:
The following are SGI specific, and may be out of touch with the
current version of reality.
\begin{description}
\begin{description}
\item
[clmodule.c]
\item
[clmodule.c]
...
...
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