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
0a3eaf08
Kaydet (Commit)
0a3eaf08
authored
Nis 29, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Quickly renamed.
üst
fb221562
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
cgen.py
Modules/cgen.py
+13
-13
cstubs
Modules/cstubs
+0
-0
No files found.
Modules/cgen.py
Dosyayı görüntüle @
0a3eaf08
...
...
@@ -230,10 +230,10 @@ def generate(type, func, database):
# Stub header
#
print
print
'static
o
bject *'
print
'static
PyO
bject *'
print
'gl_'
+
func
+
'(self, args)'
print
'
\t
o
bject *self;'
print
'
\t
o
bject *args;'
print
'
\t
PyO
bject *self;'
print
'
\t
PyO
bject *args;'
print
'{'
#
# Declare return value if any
...
...
@@ -317,11 +317,11 @@ def generate(type, func, database):
print
'
\t
if ((arg'
+
`i+1`
,
'='
,
if
a_factor
:
print
'('
+
a_type
+
'(*)['
+
a_factor
+
'])'
,
print
'NEW('
+
a_type
,
','
,
print
'
PyMem_
NEW('
+
a_type
,
','
,
if
a_factor
:
print
a_factor
,
'*'
,
print
a_sub
,
')) == NULL)'
print
'
\t\t
return
err_nomem
();'
print
'
\t\t
return
PyErr_NoMemory
();'
print
'
\t
if'
,
if
a_factor
or
a_sub
:
# Get a fixed-size array array
print
'(!geti'
+
xtype
+
'array(args,'
,
...
...
@@ -368,7 +368,7 @@ def generate(type, func, database):
for
i
in
range
(
len
(
database
)):
a_type
,
a_mode
,
a_factor
,
a_sub
=
database
[
i
]
if
a_mode
==
's'
and
a_sub
and
not
isnum
(
a_sub
):
print
'
\t
DEL(arg'
+
`i+1`
+
');'
print
'
\t
PyMem_
DEL(arg'
+
`i+1`
+
');'
#
# Return
#
...
...
@@ -388,19 +388,19 @@ def generate(type, func, database):
print
'
\t
return'
,
print
mkobject
(
a_type
,
'arg'
+
`i+1`
)
+
';'
else
:
print
'
\t
{
object *v = newtupleobject
('
,
print
'
\t
{
PyObject *v = PyTuple_New
('
,
print
n_out_args
,
');'
print
'
\t
if (v == NULL) return NULL;'
i_out
=
0
if
type
<>
'void'
:
print
'
\t
settuplei
tem(v,'
,
print
'
\t
PyTuple_SetI
tem(v,'
,
print
`i_out`
+
','
,
print
mkobject
(
type
,
'retval'
)
+
');'
i_out
=
i_out
+
1
for
i
in
range
(
len
(
database
)):
a_type
,
a_mode
,
a_factor
,
a_sub
=
database
[
i
]
if
a_mode
==
'r'
:
print
'
\t
settuplei
tem(v,'
,
print
'
\t
PyTuple_SetI
tem(v,'
,
print
`i_out`
+
','
,
s
=
mkobject
(
a_type
,
'arg'
+
`i+1`
)
print
s
+
');'
...
...
@@ -413,8 +413,8 @@ def generate(type, func, database):
# Return None or return value
#
if
type
==
'void'
:
print
'
\t
INCREF(
None);'
print
'
\t
return None;'
print
'
\t
Py_INCREF(Py_
None);'
print
'
\t
return
Py_
None;'
else
:
print
'
\t
return'
,
mkobject
(
type
,
'retval'
)
+
';'
#
...
...
@@ -527,7 +527,7 @@ while 1:
print
print
'static struct
methodlist
gl_methods[] = {'
print
'static struct
PyMethodDef
gl_methods[] = {'
for
func
in
functions
:
print
'
\t
{"'
+
func
+
'", gl_'
+
func
+
'},'
print
'
\t
{NULL, NULL} /* Sentinel */'
...
...
@@ -536,5 +536,5 @@ print
print
'void'
print
'initgl()'
print
'{'
print
'
\t
initm
odule("gl", gl_methods);'
print
'
\t
Py_InitM
odule("gl", gl_methods);'
print
'}'
Modules/cstubs
Dosyayı görüntüle @
0a3eaf08
This diff is collapsed.
Click to expand it.
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