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
3e2b7171
Kaydet (Commit)
3e2b7171
authored
Kas 09, 2010
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #10359: Remove ";" after function definition, invalid in ISO C
üst
572895b8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
test_build_ext.py
Lib/distutils/tests/test_build_ext.py
+1
-1
_testcapimodule.c
Modules/_testcapimodule.c
+1
-1
weakrefobject.c
Objects/weakrefobject.c
+1
-1
import.c
Python/import.c
+1
-1
No files found.
Lib/distutils/tests/test_build_ext.py
Dosyayı görüntüle @
3e2b7171
...
...
@@ -318,7 +318,7 @@ class BuildExtTestCase(TempdirManager,
def
test_get_outputs
(
self
):
tmp_dir
=
self
.
mkdtemp
()
c_file
=
os
.
path
.
join
(
tmp_dir
,
'foo.c'
)
self
.
write_file
(
c_file
,
'void PyInit_foo(void) {}
;
\n
'
)
self
.
write_file
(
c_file
,
'void PyInit_foo(void) {}
\n
'
)
ext
=
Extension
(
'foo'
,
[
c_file
],
optional
=
False
)
dist
=
Distribution
({
'name'
:
'xx'
,
'ext_modules'
:
[
ext
]})
...
...
Modules/_testcapimodule.c
Dosyayı görüntüle @
3e2b7171
...
...
@@ -1792,7 +1792,7 @@ test_unicode_compare_with_ascii(PyObject *self) {
return
NULL
;
}
Py_RETURN_NONE
;
}
;
}
/* This is here to provide a docstring for test_descr. */
static
PyObject
*
...
...
Objects/weakrefobject.c
Dosyayı görüntüle @
3e2b7171
...
...
@@ -583,7 +583,7 @@ proxy_iternext(PyWeakReference *proxy)
}
WRAP_METHOD
(
proxy_bytes
,
"__bytes__"
)
;
WRAP_METHOD
(
proxy_bytes
,
"__bytes__"
)
static
PyMethodDef
proxy_methods
[]
=
{
...
...
Python/import.c
Dosyayı görüntüle @
3e2b7171
...
...
@@ -3101,7 +3101,7 @@ imp_make_magic(long magic)
buf
[
3
]
=
(
char
)
((
magic
>>
24
)
&
0xff
);
return
PyBytes_FromStringAndSize
(
buf
,
4
);
}
;
}
static
PyObject
*
imp_get_magic
(
PyObject
*
self
,
PyObject
*
noargs
)
...
...
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