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
a92941ff
Kaydet (Commit)
a92941ff
authored
Eyl 19, 2017
tarafından
Victor Stinner
Kaydeden (comit)
GitHub
Eyl 19, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
pythoninfo: ignore OSError(ENOSYS) on getrandom() (#3655)
üst
865e4b4f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
pythoninfo.py
Lib/test/pythoninfo.py
+12
-5
No files found.
Lib/test/pythoninfo.py
Dosyayı görüntüle @
a92941ff
...
...
@@ -2,6 +2,7 @@
Collect various informations about Python to help debugging test failures.
"""
from
__future__
import
print_function
import
errno
import
re
import
sys
import
traceback
...
...
@@ -223,11 +224,17 @@ def collect_os(info_add):
if
hasattr
(
os
,
'getrandom'
):
# PEP 524: Check if system urandom is initialized
try
:
os
.
getrandom
(
1
,
os
.
GRND_NONBLOCK
)
state
=
'ready (initialized)'
except
BlockingIOError
as
exc
:
state
=
'not seeded yet (
%
s)'
%
exc
info_add
(
'os.getrandom'
,
state
)
try
:
os
.
getrandom
(
1
,
os
.
GRND_NONBLOCK
)
state
=
'ready (initialized)'
except
BlockingIOError
as
exc
:
state
=
'not seeded yet (
%
s)'
%
exc
info_add
(
'os.getrandom'
,
state
)
except
OSError
as
exc
:
# Python was compiled on a more recent Linux version
# than the current Linux kernel: ignore OSError(ENOSYS)
if
exc
.
errno
!=
errno
.
ENOSYS
:
raise
def
collect_readline
(
info_add
):
...
...
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