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
770a2be3
Kaydet (Commit)
770a2be3
authored
Eki 24, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
These are true PyCFunctions, after adding the second argument to oss_self, no need to cast.
üst
09f24bb4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
ossaudiodev.c
Modules/ossaudiodev.c
+5
-5
No files found.
Modules/ossaudiodev.c
Dosyayı görüntüle @
770a2be3
...
...
@@ -470,7 +470,7 @@ oss_close(oss_audio_t *self, PyObject *unused)
}
static
PyObject
*
oss_self
(
PyObject
*
self
)
oss_self
(
PyObject
*
self
,
PyObject
*
unused
)
{
Py_INCREF
(
self
);
return
self
;
...
...
@@ -800,8 +800,8 @@ static PyMethodDef oss_methods[] = {
{
"flush"
,
(
PyCFunction
)
oss_sync
,
METH_VARARGS
},
/* Support for the context manager protocol */
{
"__enter__"
,
(
PyCFunction
)
oss_self
,
METH_NOARGS
},
{
"__exit__"
,
(
PyCFunction
)
oss_exit
,
METH_VARARGS
},
{
"__enter__"
,
oss_self
,
METH_NOARGS
},
{
"__exit__"
,
oss_exit
,
METH_VARARGS
},
{
NULL
,
NULL
}
/* sentinel */
};
...
...
@@ -812,8 +812,8 @@ static PyMethodDef oss_mixer_methods[] = {
{
"fileno"
,
(
PyCFunction
)
oss_mixer_fileno
,
METH_NOARGS
},
/* Support for the context manager protocol */
{
"__enter__"
,
(
PyCFunction
)
oss_self
,
METH_NOARGS
},
{
"__exit__"
,
(
PyCFunction
)
oss_exit
,
METH_VARARGS
},
{
"__enter__"
,
oss_self
,
METH_NOARGS
},
{
"__exit__"
,
oss_exit
,
METH_VARARGS
},
/* Simple ioctl wrappers */
{
"controls"
,
(
PyCFunction
)
oss_mixer_controls
,
METH_VARARGS
},
...
...
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