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
864e9ffb
Kaydet (Commit)
864e9ffb
authored
Agu 04, 2001
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Auto-detect hstrerror. Raise socket.herror in PyH_Error. Register the three
exception classes in the module dictionary.
üst
c9908c4f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
5 deletions
+10
-5
socketmodule.c
Modules/socketmodule.c
+4
-2
configure
configure
+2
-2
configure.in
configure.in
+1
-1
pyconfig.h.in
pyconfig.h.in
+3
-0
No files found.
Modules/socketmodule.c
Dosyayı görüntüle @
864e9ffb
...
...
@@ -431,7 +431,7 @@ PyH_Err(int h_error)
v
=
Py_BuildValue
(
"(is)"
,
h_error
,
"host not found"
);
#endif
if
(
v
!=
NULL
)
{
PyErr_SetObject
(
Py
GAI
_Error
,
v
);
PyErr_SetObject
(
Py
H
_Error
,
v
);
Py_DECREF
(
v
);
}
...
...
@@ -2915,13 +2915,16 @@ init_socket(void)
PySocket_Error
=
PyErr_NewException
(
"socket.error"
,
NULL
,
NULL
);
if
(
PySocket_Error
==
NULL
)
return
;
PyDict_SetItemString
(
d
,
"error"
,
PySocket_Error
);
PyH_Error
=
PyErr_NewException
(
"socket.herror"
,
PySocket_Error
,
NULL
);
if
(
PyH_Error
==
NULL
)
return
;
PyDict_SetItemString
(
d
,
"herror"
,
PyH_Error
);
PyGAI_Error
=
PyErr_NewException
(
"socket.gaierror"
,
PySocket_Error
,
NULL
);
if
(
PyGAI_Error
==
NULL
)
return
;
PyDict_SetItemString
(
d
,
"gaierror"
,
PyGAI_Error
);
#ifdef USE_SSL
SSL_load_error_strings
();
SSLeay_add_ssl_algorithms
();
...
...
@@ -2934,7 +2937,6 @@ init_socket(void)
(
PyObject
*
)
&
SSL_Type
)
!=
0
)
return
;
#endif
/* USE_SSL */
PyDict_SetItemString
(
d
,
"error"
,
PySocket_Error
);
PySocketSock_Type
.
ob_type
=
&
PyType_Type
;
PySocketSock_Type
.
tp_doc
=
sockettype_doc
;
Py_INCREF
(
&
PySocketSock_Type
);
...
...
configure
Dosyayı görüntüle @
864e9ffb
#! /bin/sh
# From configure.in Revision: 1.23
6
# From configure.in Revision: 1.23
7
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.13
...
...
@@ -4518,7 +4518,7 @@ echo "$ac_t""$DYNLOADFILE" 1>&6
for
ac_func
in
alarm
chown
clock confstr ctermid ctermid_r execv
\
flock fork fsync fdatasync fpathconf ftime ftruncate
\
getgroups getlogin getpeername getpid getpwent getwd
\
inet_pton
kill link
lstat
mkfifo
mktime mremap
\
hstrerror
inet_pton
kill link
lstat
mkfifo
mktime mremap
\
nice
pathconf pause plock poll pthread_init
\
putenv
readlink
\
select
setegid seteuid setgid
\
...
...
configure.in
Dosyayı görüntüle @
864e9ffb
...
...
@@ -1178,7 +1178,7 @@ AC_MSG_RESULT($DYNLOADFILE)
AC_CHECK_FUNCS(alarm chown clock confstr ctermid ctermid_r execv \
flock fork fsync fdatasync fpathconf ftime ftruncate \
getgroups getlogin getpeername getpid getpwent getwd \
inet_pton kill link lstat mkfifo mktime mremap \
hstrerror
inet_pton kill link lstat mkfifo mktime mremap \
nice pathconf pause plock poll pthread_init \
putenv readlink \
select setegid seteuid setgid \
...
...
pyconfig.h.in
Dosyayı görüntüle @
864e9ffb
...
...
@@ -410,6 +410,9 @@
/* Define if you have the getwd function. */
#undef HAVE_GETWD
/* Define if you have the hstrerror function. */
#undef HAVE_HSTRERROR
/* Define if you have the hypot function. */
#undef HAVE_HYPOT
...
...
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