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
3685a432
Kaydet (Commit)
3685a432
authored
Haz 20, 2001
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ANSIfied function headers to shut up compiler warnings on OSX/Mach-o.
üst
6b9289ff
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
Qdmodule.c
Mac/Modules/qd/Qdmodule.c
+1
-1
qdsupport.py
Mac/Modules/qd/qdsupport.py
+1
-1
Sndmodule.c
Mac/Modules/snd/Sndmodule.c
+1
-1
sndsupport.py
Mac/Modules/snd/sndsupport.py
+1
-1
No files found.
Mac/Modules/qd/Qdmodule.c
Dosyayı görüntüle @
3685a432
...
...
@@ -521,7 +521,7 @@ typedef struct QDGlobalsAccessObject {
PyObject_HEAD
}
QDGlobalsAccessObject
;
static
PyObject
*
QDGA_New
()
static
PyObject
*
QDGA_New
(
void
)
{
QDGlobalsAccessObject
*
it
;
it
=
PyObject_NEW
(
QDGlobalsAccessObject
,
&
QDGlobalsAccess_Type
);
...
...
Mac/Modules/qd/qdsupport.py
Dosyayı görüntüle @
3685a432
...
...
@@ -450,7 +450,7 @@ class QDGlobalsAccessObjectDefinition(ObjectDefinition):
pass
def
outputNew
(
self
):
Output
()
Output
(
"
%
sPyObject *
%
s_New()"
,
self
.
static
,
self
.
prefix
)
Output
(
"
%
sPyObject *
%
s_New(
void
)"
,
self
.
static
,
self
.
prefix
)
OutLbrace
()
Output
(
"
%
s *it;"
,
self
.
objecttype
)
Output
(
"it = PyObject_NEW(
%
s, &
%
s);"
,
self
.
objecttype
,
self
.
typename
)
...
...
Mac/Modules/snd/Sndmodule.c
Dosyayı görüntüle @
3685a432
...
...
@@ -351,7 +351,7 @@ typedef struct SPBObject {
SPB
ob_spb
;
}
SPBObject
;
static
PyObject
*
SPBObj_New
()
static
PyObject
*
SPBObj_New
(
void
)
{
SPBObject
*
it
;
it
=
PyObject_NEW
(
SPBObject
,
&
SPB_Type
);
...
...
Mac/Modules/snd/sndsupport.py
Dosyayı görüntüle @
3685a432
...
...
@@ -244,7 +244,7 @@ class SpbObjectDefinition(ObjectDefinition):
def
outputNew
(
self
):
Output
()
Output
(
"
%
sPyObject *
%
s_New()"
,
self
.
static
,
self
.
prefix
)
Output
(
"
%
sPyObject *
%
s_New(
void
)"
,
self
.
static
,
self
.
prefix
)
OutLbrace
()
Output
(
"
%
s *it;"
,
self
.
objecttype
)
self
.
outputCheckNewArg
()
...
...
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