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
b1a6ac4c
Unverified
Kaydet (Commit)
b1a6ac4c
authored
Ock 27, 2018
tarafından
Yury Selivanov
Kaydeden (comit)
GitHub
Ock 27, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-32622: Enforce sendfile fallback policy for FALLBACK transports (#5364)
üst
7c684073
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
base_events.py
Lib/asyncio/base_events.py
+6
-1
test_events.py
Lib/test/test_asyncio/test_events.py
+9
-0
No files found.
Lib/asyncio/base_events.py
Dosyayı görüntüle @
b1a6ac4c
...
...
@@ -1035,7 +1035,12 @@ class BaseEventLoop(events.AbstractEventLoop):
except
events
.
SendfileNotAvailableError
as
exc
:
if
not
fallback
:
raise
# the mode is FALLBACK or fallback is True
if
not
fallback
:
raise
RuntimeError
(
f
"fallback is disabled and native sendfile is not "
f
"supported for transport {transport!r}"
)
return
await
self
.
_sendfile_fallback
(
transport
,
file
,
offset
,
count
)
...
...
Lib/test/test_asyncio/test_events.py
Dosyayı görüntüle @
b1a6ac4c
...
...
@@ -27,6 +27,7 @@ if sys.platform != 'win32':
import
asyncio
from
asyncio
import
base_events
from
asyncio
import
constants
from
asyncio
import
coroutines
from
asyncio
import
events
from
asyncio
import
proactor_events
...
...
@@ -2381,6 +2382,14 @@ class SendfileMixin:
ret
=
self
.
run_loop
(
t
)
self
.
assertEqual
(
ret
,
len
(
self
.
DATA
))
def
test_sendfile_no_fallback_for_fallback_transport
(
self
):
transport
=
mock
.
Mock
()
transport
.
is_closing
.
side_effect
=
lambda
:
False
transport
.
_sendfile_compatible
=
constants
.
_SendfileMode
.
FALLBACK
with
self
.
assertRaisesRegex
(
RuntimeError
,
'fallback is disabled'
):
self
.
loop
.
run_until_complete
(
self
.
loop
.
sendfile
(
transport
,
None
,
fallback
=
False
))
if
sys
.
platform
==
'win32'
:
...
...
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