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
fb01d4b1
Kaydet (Commit)
fb01d4b1
authored
Ara 17, 1996
tarafından
Roger E. Masse
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added a test script for the fcntl C module.
üst
4004e214
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
0 deletions
+32
-0
test_fcntl.py
Lib/test/test_fcntl.py
+31
-0
testall.py
Lib/test/testall.py
+1
-0
No files found.
Lib/test/test_fcntl.py
0 → 100755
Dosyayı görüntüle @
fb01d4b1
#! /usr/bin/env python
"""Test program for the fcntl C module.
Roger E. Masse
"""
import
struct
import
fcntl
import
FCNTL
import
os
verbose
=
0
if
__name__
==
'__main__'
:
verbose
=
1
filename
=
'/tmp/delete-me'
# the example from the library docs
f
=
open
(
filename
,
'w'
)
rv
=
fcntl
.
fcntl
(
f
.
fileno
(),
FCNTL
.
O_NDELAY
,
1
)
if
verbose
:
print
'Status from fnctl with O_NDELAY: '
,
rv
lockdata
=
struct
.
pack
(
'hhllhh'
,
FCNTL
.
F_WRLCK
,
0
,
0
,
0
,
0
,
0
)
if
verbose
:
print
'struct.pack: '
,
lockdata
rv
=
fcntl
.
fcntl
(
f
.
fileno
(),
FCNTL
.
F_SETLKW
,
lockdata
)
if
verbose
:
print
'String from fcntl with F_SETLKW: '
,
rv
f
.
close
()
os
.
unlink
(
filename
)
Lib/test/testall.py
Dosyayı görüntüle @
fb01d4b1
...
...
@@ -26,6 +26,7 @@ tests = ['test_grammar',
'test_dl'
,
'test_thread'
,
'test_xdr'
,
'test_fcntl'
,
]
if
__name__
==
'__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