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
625fb648
Kaydet (Commit)
625fb648
authored
Ock 08, 2017
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #28815: Merge test tweak from 3.5
üst
0b64a0fc
8cbd46f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
test_socket.py
Lib/test/test_socket.py
+3
-7
No files found.
Lib/test/test_socket.py
Dosyayı görüntüle @
625fb648
...
...
@@ -4780,14 +4780,10 @@ def isTipcAvailable():
return
False
try
:
f
=
open
(
"/proc/modules"
)
except
IOError
as
e
:
except
(
FileNotFoundError
,
IsADirectoryError
,
PermissionError
)
:
# It's ok if the file does not exist, is a directory or if we
# have not the permission to read it. In any other case it's a
# real error, so raise it again.
if
e
.
errno
in
(
errno
.
ENOENT
,
errno
.
EISDIR
,
errno
.
EACCES
):
return
False
else
:
raise
# have not the permission to read it.
return
False
with
f
:
for
line
in
f
:
if
line
.
startswith
(
"tipc "
):
...
...
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