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
4f69b7e3
Kaydet (Commit)
4f69b7e3
authored
Ock 15, 2009
tarafından
Kristján Valur Jónsson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make all the invalid fd tests for os subject to the function being available.
üst
71ba215d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
test_os.py
Lib/test/test_os.py
+12
-6
No files found.
Lib/test/test_os.py
Dosyayı görüntüle @
4f69b7e3
...
...
@@ -547,13 +547,16 @@ class TestInvalidFD(unittest.TestCase):
locals
()[
"test_"
+
f
]
=
get_single
(
f
)
def
test_isatty
(
self
):
self
.
assertEqual
(
os
.
isatty
(
10
),
False
)
if
hasattr
(
os
,
"isatty"
):
self
.
assertEqual
(
os
.
isatty
(
10
),
False
)
def
test_closerange
(
self
):
self
.
assertEqual
(
os
.
closerange
(
10
,
20
),
None
)
if
hasattr
(
os
,
"closerange"
):
self
.
assertEqual
(
os
.
closerange
(
10
,
20
),
None
)
def
test_dup2
(
self
):
self
.
assertRaises
(
OSError
,
os
.
dup2
,
10
,
20
)
if
hasattr
(
os
,
"dup2"
):
self
.
assertRaises
(
OSError
,
os
.
dup2
,
10
,
20
)
def
test_fchmod
(
self
):
if
hasattr
(
os
,
"fchmod"
):
...
...
@@ -573,17 +576,20 @@ class TestInvalidFD(unittest.TestCase):
self
.
assertRaises
(
IOError
,
os
.
ftruncate
,
10
,
0
)
def
test_lseek
(
self
):
self
.
assertRaises
(
OSError
,
os
.
lseek
,
10
,
0
,
0
)
if
hasattr
(
os
,
"lseek"
):
self
.
assertRaises
(
OSError
,
os
.
lseek
,
10
,
0
,
0
)
def
test_read
(
self
):
self
.
assertRaises
(
OSError
,
os
.
read
,
10
,
1
)
if
hasattr
(
os
,
"read"
):
self
.
assertRaises
(
OSError
,
os
.
read
,
10
,
1
)
def
test_tcsetpgrpt
(
self
):
if
hasattr
(
os
,
"tcsetpgrp"
):
self
.
assertRaises
(
OSError
,
os
.
tcsetpgrp
,
10
,
0
)
def
test_write
(
self
):
self
.
assertRaises
(
OSError
,
os
.
write
,
10
,
" "
)
if
hasattr
(
os
,
"write"
):
self
.
assertRaises
(
OSError
,
os
.
write
,
10
,
" "
)
if
sys
.
platform
!=
'win32'
:
class
Win32ErrorTests
(
unittest
.
TestCase
):
...
...
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