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
fdbeb5a4
Kaydet (Commit)
fdbeb5a4
authored
Nis 19, 2002
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#546155, remove posix_int() it is not used
üst
c72737e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
16 deletions
+0
-16
posixmodule.c
Modules/posixmodule.c
+0
-16
No files found.
Modules/posixmodule.c
Dosyayı görüntüle @
fdbeb5a4
...
...
@@ -459,22 +459,6 @@ static PyObject * os2_error(int code)
/* POSIX generic methods */
static
PyObject
*
posix_int
(
PyObject
*
args
,
char
*
format
,
int
(
*
func
)(
int
))
{
int
fd
;
int
res
;
if
(
!
PyArg_ParseTuple
(
args
,
format
,
&
fd
))
return
NULL
;
Py_BEGIN_ALLOW_THREADS
res
=
(
*
func
)(
fd
);
Py_END_ALLOW_THREADS
if
(
res
<
0
)
return
posix_error
();
Py_INCREF
(
Py_None
);
return
Py_None
;
}
static
PyObject
*
posix_fildes
(
PyObject
*
fdobj
,
int
(
*
func
)(
int
))
{
...
...
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