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
97d15b1e
Unverified
Kaydet (Commit)
97d15b1e
authored
Haz 27, 2019
tarafından
Andrew Svetlov
Kaydeden (comit)
GitHub
Haz 27, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace deprecation warning with RuntimeError (GH-14397)
üst
667eaffb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
streams.py
Lib/asyncio/streams.py
+2
-4
test_streams.py
Lib/test/test_asyncio/test_streams.py
+6
-0
No files found.
Lib/asyncio/streams.py
Dosyayı görüntüle @
97d15b1e
...
...
@@ -1293,10 +1293,8 @@ class Stream:
is_server_side
=
False
,
_asyncio_internal
=
False
):
if
not
_asyncio_internal
:
warnings
.
warn
(
f
"{self.__class__} should be instaniated "
"by asyncio internals only, "
"please avoid its creation from user code"
,
DeprecationWarning
)
raise
RuntimeError
(
f
"{self.__class__} should be instantiated "
"by asyncio internals only"
)
self
.
_mode
=
mode
self
.
_transport
=
transport
self
.
_protocol
=
protocol
...
...
Lib/test/test_asyncio/test_streams.py
Dosyayı görüntüle @
97d15b1e
...
...
@@ -1779,6 +1779,12 @@ os.close(fd)
self
.
loop
.
run_until_complete
(
test
())
def
test_stream_ctor_forbidden
(
self
):
with
self
.
assertRaisesRegex
(
RuntimeError
,
"should be instantiated "
"by asyncio internals only"
):
asyncio
.
Stream
(
asyncio
.
StreamMode
.
READWRITE
)
if
__name__
==
'__main__'
:
unittest
.
main
()
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