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
59ce0427
Kaydet (Commit)
59ce0427
authored
Ock 17, 2009
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#4077: No need to append \n when calling Py_FatalError
+ fix a declaration to make it match the one in pythonrun.h
üst
bd55c525
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
ffi.c
Modules/_ctypes/libffi_msvc/ffi.c
+1
-1
exceptions.c
Objects/exceptions.c
+1
-1
ast.c
Python/ast.c
+1
-1
compile.c
Python/compile.c
+1
-1
No files found.
Modules/_ctypes/libffi_msvc/ffi.c
Dosyayı görüntüle @
59ce0427
...
...
@@ -34,7 +34,7 @@
/* ffi_prep_args is called by the assembly routine once stack space
has been allocated for the function's arguments */
extern
void
Py_FatalError
(
char
*
msg
);
extern
void
Py_FatalError
(
c
onst
c
har
*
msg
);
/*@-exportheader@*/
void
ffi_prep_args
(
char
*
stack
,
extended_cif
*
ecif
)
...
...
Objects/exceptions.c
Dosyayı görüntüle @
59ce0427
...
...
@@ -2127,7 +2127,7 @@ _PyExc_Init(void)
PyExc_MemoryErrorInst
=
BaseException_new
(
&
_PyExc_MemoryError
,
NULL
,
NULL
);
if
(
!
PyExc_MemoryErrorInst
)
Py_FatalError
(
"Cannot pre-allocate MemoryError instance
\n
"
);
Py_FatalError
(
"Cannot pre-allocate MemoryError instance"
);
PyExc_RecursionErrorInst
=
BaseException_new
(
&
_PyExc_RuntimeError
,
NULL
,
NULL
);
if
(
!
PyExc_RecursionErrorInst
)
...
...
Python/ast.c
Dosyayı görüntüle @
59ce0427
...
...
@@ -197,7 +197,7 @@ num_stmts(const node *n)
default:
{
char
buf
[
128
];
sprintf
(
buf
,
"Non-statement found: %d %d
\n
"
,
sprintf
(
buf
,
"Non-statement found: %d %d"
,
TYPE
(
n
),
NCH
(
n
));
Py_FatalError
(
buf
);
}
...
...
Python/compile.c
Dosyayı görüntüle @
59ce0427
...
...
@@ -1254,7 +1254,7 @@ get_ref_type(struct compiler *c, PyObject *name)
char
buf
[
350
];
PyOS_snprintf
(
buf
,
sizeof
(
buf
),
"unknown scope for %.100s in %.100s(%s) in %s
\n
"
"symbols: %s
\n
locals: %s
\n
globals: %s
\n
"
,
"symbols: %s
\n
locals: %s
\n
globals: %s"
,
PyString_AS_STRING
(
name
),
PyString_AS_STRING
(
c
->
u
->
u_name
),
PyObject_REPR
(
c
->
u
->
u_ste
->
ste_id
),
...
...
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