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
baf2663e
Kaydet (Commit)
baf2663e
authored
Tem 19, 2000
tarafından
Thomas Wouters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Enable extra testing now that os.isatty() is in. (Also tests os.isatty ;P)
üst
616607a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
10 deletions
+8
-10
test_openpty.py
Lib/test/test_openpty.py
+4
-5
test_pty.py
Lib/test/test_pty.py
+4
-5
No files found.
Lib/test/test_openpty.py
Dosyayı görüntüle @
baf2663e
...
...
@@ -12,11 +12,10 @@ try:
except
AttributeError
:
raise
ImportError
,
"No openpty() available."
## # Please uncomment these if os.isatty() is added.
## if not os.isatty(master):
## raise TestFailed, "Master-end of pty is not a terminal."
## if not os.isatty(slave):
## raise TestFailed, "Slave-end of pty is not a terminal."
if
not
os
.
isatty
(
master
):
raise
TestFailed
,
"Master-end of pty is not a terminal."
if
not
os
.
isatty
(
slave
):
raise
TestFailed
,
"Slave-end of pty is not a terminal."
os
.
write
(
slave
,
'Ping!'
)
print
os
.
read
(
master
,
1024
)
...
...
Lib/test/test_pty.py
Dosyayı görüntüle @
baf2663e
...
...
@@ -27,11 +27,10 @@ except OSError:
# " An optional feature could not be imported " ... ?
raise
ImportError
,
"Pseudo-terminals (seemingly) not functional."
## # Please uncomment these if os.isatty() is added.
## if not os.isatty(master_fd):
## raise TestFailed, "master_fd is not a tty"
## if not os.isatty(slave_fd):
## raise TestFailed, "slave_fd is not a tty"
if
not
os
.
isatty
(
master_fd
):
raise
TestFailed
,
"master_fd is not a tty"
if
not
os
.
isatty
(
slave_fd
):
raise
TestFailed
,
"slave_fd is not a tty"
debug
(
"Writing to slave_fd"
)
os
.
write
(
slave_fd
,
TEST_STRING_1
)
# should check return value
...
...
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