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
3a4586a9
Kaydet (Commit)
3a4586a9
authored
Kas 08, 2013
tarafından
Charles-François Natali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #18923: Update subprocess to use the new selectors module.
üst
2ce6c44a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
subprocess.py
Lib/subprocess.py
+0
-0
test_subprocess.py
Lib/test/test_subprocess.py
+6
-4
No files found.
Lib/subprocess.py
Dosyayı görüntüle @
3a4586a9
This diff is collapsed.
Click to expand it.
Lib/test/test_subprocess.py
Dosyayı görüntüle @
3a4586a9
...
...
@@ -11,6 +11,7 @@ import errno
import
tempfile
import
time
import
re
import
selectors
import
sysconfig
import
warnings
import
select
...
...
@@ -2179,15 +2180,16 @@ class CommandTests(unittest.TestCase):
os
.
rmdir
(
dir
)
@unittest.skipUnless
(
getattr
(
subprocess
,
'_has_poll'
,
False
),
"
poll system call not supported
"
)
@unittest.skipUnless
(
hasattr
(
selectors
,
'PollSelector'
),
"
Test needs selectors.PollSelector
"
)
class
ProcessTestCaseNoPoll
(
ProcessTestCase
):
def
setUp
(
self
):
subprocess
.
_has_poll
=
False
self
.
orig_selector
=
subprocess
.
_PopenSelector
subprocess
.
_PopenSelector
=
selectors
.
SelectSelector
ProcessTestCase
.
setUp
(
self
)
def
tearDown
(
self
):
subprocess
.
_
has_poll
=
True
subprocess
.
_
PopenSelector
=
self
.
orig_selector
ProcessTestCase
.
tearDown
(
self
)
...
...
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