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
0e547b66
Kaydet (Commit)
0e547b66
authored
Haz 10, 2013
tarafından
Richard Oudkerk
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #18174: Fix fd leaks in tests.
üst
409f9023
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
test_openpty.py
Lib/test/test_openpty.py
+2
-0
test_subprocess.py
Lib/test/test_subprocess.py
+2
-1
test_uuid.py
Lib/test/test_uuid.py
+1
-0
No files found.
Lib/test/test_openpty.py
Dosyayı görüntüle @
0e547b66
...
...
@@ -10,6 +10,8 @@ if not hasattr(os, "openpty"):
class
OpenptyTest
(
unittest
.
TestCase
):
def
test
(
self
):
master
,
slave
=
os
.
openpty
()
self
.
addCleanup
(
os
.
close
,
master
)
self
.
addCleanup
(
os
.
close
,
slave
)
if
not
os
.
isatty
(
slave
):
self
.
fail
(
"Slave-end of pty is not a terminal."
)
...
...
Lib/test/test_subprocess.py
Dosyayı görüntüle @
0e547b66
...
...
@@ -1263,7 +1263,8 @@ class POSIXProcessTestCase(BaseTestCase):
self
.
stderr
.
fileno
()),
msg
=
"At least one fd was closed early."
)
finally
:
map
(
os
.
close
,
devzero_fds
)
for
fd
in
devzero_fds
:
os
.
close
(
fd
)
@unittest.skipIf
(
not
os
.
path
.
exists
(
"/dev/zero"
),
"/dev/zero required."
)
def
test_preexec_errpipe_does_not_double_close_pipes
(
self
):
...
...
Lib/test/test_uuid.py
Dosyayı görüntüle @
0e547b66
...
...
@@ -458,6 +458,7 @@ class TestUUID(unittest.TestCase):
else
:
os
.
close
(
fds
[
1
])
self
.
addCleanup
(
os
.
close
,
fds
[
0
])
parent_value
=
uuid
.
uuid4
()
.
hex
os
.
waitpid
(
pid
,
0
)
child_value
=
os
.
read
(
fds
[
0
],
100
)
.
decode
(
'latin-1'
)
...
...
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