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
c46864e9
Kaydet (Commit)
c46864e9
authored
Haz 14, 1999
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Misc. changes related to the new sections.
üst
21572fdc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
12 deletions
+14
-12
lib.tex
Doc/lib/lib.tex
+3
-0
libbasehttp.tex
Doc/lib/libbasehttp.tex
+11
-3
libundoc.tex
Doc/lib/libundoc.tex
+0
-9
No files found.
Doc/lib/lib.tex
Dosyayı görüntüle @
c46864e9
...
@@ -75,6 +75,7 @@ add new extensions to Python and how to embed it in other applications.
...
@@ -75,6 +75,7 @@ add new extensions to Python and how to embed it in other applications.
\input
{
libuserdict
}
\input
{
libuserdict
}
\input
{
liboperator
}
\input
{
liboperator
}
\input
{
libtraceback
}
\input
{
libtraceback
}
\input
{
liblinecache
}
\input
{
libpickle
}
\input
{
libpickle
}
\input
{
libcopyreg
}
% really copy_reg
\input
{
libcopyreg
}
% really copy_reg
\input
{
libshelve
}
\input
{
libshelve
}
...
@@ -184,6 +185,8 @@ add new extensions to Python and how to embed it in other applications.
...
@@ -184,6 +185,8 @@ add new extensions to Python and how to embed it in other applications.
\input
{
liburlparse
}
\input
{
liburlparse
}
\input
{
libsocksvr
}
\input
{
libsocksvr
}
\input
{
libbasehttp
}
\input
{
libbasehttp
}
\input
{
libsimplehttp
}
\input
{
libcgihttp
}
\input
{
netdata
}
\input
{
netdata
}
\input
{
libsgmllib
}
\input
{
libsgmllib
}
...
...
Doc/lib/libbasehttp.tex
Dosyayı görüntüle @
c46864e9
...
@@ -15,9 +15,8 @@
...
@@ -15,9 +15,8 @@
This module defines two classes for implementing HTTP servers
This module defines two classes for implementing HTTP servers
(web servers). Usually, this module isn't used directly, but is used
(web servers). Usually, this module isn't used directly, but is used
as a basis for building functioning web servers. See the
as a basis for building functioning web servers. See the
\module
{
SimpleHTTPServer
}
and
\module
{
CGIHTTPServer
}
modules.
\module
{
SimpleHTTPServer
}
\refstmodindex
{
SimpleHTTPServer
}
and
\refstmodindex
{
SimpleHTTPServer
}
\refmodule
{
CGIHTTPServer
}
\refstmodindex
{
CGIHTTPServer
}
modules.
\refstmodindex
{
CGIHTTPServer
}
The first class,
\class
{
HTTPServer
}
, is a
The first class,
\class
{
HTTPServer
}
, is a
\class
{
SocketServer.TCPServer
}
subclass. It creates and listens at the
\class
{
SocketServer.TCPServer
}
subclass. It creates and listens at the
...
@@ -221,3 +220,12 @@ Returns the current date and time, formatted for logging.
...
@@ -221,3 +220,12 @@ Returns the current date and time, formatted for logging.
Returns the client address, formatted for logging. A name lookup
Returns the client address, formatted for logging. A name lookup
is performed on the client's IP address.
is performed on the client's IP address.
\end{methoddesc}
\end{methoddesc}
\begin{seealso}
\seemodule
{
CGIHTTPServer
}{
Extended request handler that supports CGI
scripts.
}
\seemodule
{
SimpleHTTPServer
}{
Basic request handler that limits response
to files actually under the document root.
}
\end{seealso}
Doc/lib/libundoc.tex
Dosyayı görüntüle @
c46864e9
...
@@ -23,12 +23,6 @@ on-line reference material.
...
@@ -23,12 +23,6 @@ on-line reference material.
\item
[Tkdnd.py]
\item
[Tkdnd.py]
--- Drag-and-drop support for
\module
{
Tkinter
}
.
--- Drag-and-drop support for
\module
{
Tkinter
}
.
\item
[CGIHTTPServer.py]
--- CGI-savvy HTTP Server
\item
[SimpleHTTPServer.py]
--- Simple HTTP Server
\item
[test]
\item
[test]
--- Regression testing framework. This is used for the Python
--- Regression testing framework. This is used for the Python
regression test, but is useful for other Python libraries as well.
regression test, but is useful for other Python libraries as well.
...
@@ -53,9 +47,6 @@ Some of these are very old and/or not very robust; marked with ``hmm''.
...
@@ -53,9 +47,6 @@ Some of these are very old and/or not very robust; marked with ``hmm''.
\item
[dircmp.py]
\item
[dircmp.py]
--- class to build directory diff tools on
--- class to build directory diff tools on
\item
[linecache.py]
--- Cache lines from files (used by pdb)
\item
[pipes.py]
\item
[pipes.py]
--- Conversion pipeline templates (hmm)
--- Conversion pipeline templates (hmm)
...
...
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