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
fcc51767
Kaydet (Commit)
fcc51767
authored
Ock 27, 2004
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
update signature of the socket constructor
(could someone backport this to Python 2.3.x please?)
üst
76beca95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
libsocket.tex
Doc/lib/libsocket.tex
+7
-5
No files found.
Doc/lib/libsocket.tex
Dosyayı görüntüle @
fcc51767
...
...
@@ -276,12 +276,14 @@ for that service. The protocol name should be \code{'tcp'} or
\code
{
'udp'
}
.
\end{funcdesc}
\begin{funcdesc}
{
socket
}{
family, type
\optional
{
, proto
}}
\begin{funcdesc}
{
socket
}{
\optional
{
family
\optional
{
,
type
\optional
{
, proto
}}}}
Create a new socket using the given address family, socket type and
protocol number. The address family should be
\constant
{
AF
_
INET
}
,
\constant
{
AF
_
INET6
}
or
\constant
{
AF
_
UNIX
}
. The socket type should be
\constant
{
SOCK
_
STREAM
}
,
\constant
{
SOCK
_
DGRAM
}
or perhaps one of the other
\samp
{
SOCK
_}
constants.
The protocol number is usually zero and may be omitted in that case.
protocol number. The address family should be
\constant
{
AF
_
INET
}
(the
default),
\constant
{
AF
_
INET6
}
or
\constant
{
AF
_
UNIX
}
. The socket type
should be
\constant
{
SOCK
_
STREAM
}
(the default),
\constant
{
SOCK
_
DGRAM
}
or perhaps one of the other
\samp
{
SOCK
_}
constants. The protocol
number is usually zero and may be omitted in that case.
\end{funcdesc}
\begin{funcdesc}
{
ssl
}{
sock
\optional
{
, keyfile, certfile
}}
...
...
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