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
1109fbca
Kaydet (Commit)
1109fbca
authored
Nis 10, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make new gcc -Wall happy
üst
bb3649e2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
7 deletions
+13
-7
fileobject.c
Objects/fileobject.c
+6
-3
funcobject.c
Objects/funcobject.c
+2
-1
longobject.c
Objects/longobject.c
+1
-1
stringobject.c
Objects/stringobject.c
+4
-2
No files found.
Objects/fileobject.c
Dosyayı görüntüle @
1109fbca
...
...
@@ -190,10 +190,12 @@ file_dealloc(f)
(
*
f
->
f_close
)(
f
->
f_fp
);
Py_END_ALLOW_THREADS
}
if
(
f
->
f_name
!=
NULL
)
if
(
f
->
f_name
!=
NULL
)
{
Py_DECREF
(
f
->
f_name
);
if
(
f
->
f_mode
!=
NULL
)
}
if
(
f
->
f_mode
!=
NULL
)
{
Py_DECREF
(
f
->
f_mode
);
}
free
((
char
*
)
f
);
}
...
...
@@ -771,8 +773,9 @@ file_readlines(f, args)
goto
error
;
}
cleanup
:
if
(
big_buffer
)
if
(
big_buffer
)
{
Py_DECREF
(
big_buffer
);
}
return
list
;
}
...
...
Objects/funcobject.c
Dosyayı görüntüle @
1109fbca
...
...
@@ -110,8 +110,9 @@ PyFunction_SetDefaults(op, defaults)
}
if
(
defaults
==
Py_None
)
defaults
=
NULL
;
else
if
(
PyTuple_Check
(
defaults
))
else
if
(
PyTuple_Check
(
defaults
))
{
Py_XINCREF
(
defaults
);
}
else
{
PyErr_SetString
(
PyExc_SystemError
,
"non-tuple default args"
);
return
-
1
;
...
...
Objects/longobject.c
Dosyayı görüntüle @
1109fbca
...
...
@@ -497,7 +497,7 @@ PyLong_FromString(str, pend, base)
static
PyLongObject
*
x_divrem
Py_PROTO
((
PyLongObject
*
,
PyLongObject
*
,
PyLongObject
**
));
static
PyObject
*
long_pos
Py_PROTO
((
PyLongObject
*
));
static
long_divrem
Py_PROTO
((
PyLongObject
*
,
PyLongObject
*
,
static
int
long_divrem
Py_PROTO
((
PyLongObject
*
,
PyLongObject
*
,
PyLongObject
**
,
PyLongObject
**
));
/* Long division with remainder, top-level routine */
...
...
Objects/stringobject.c
Dosyayı görüntüle @
1109fbca
...
...
@@ -1016,14 +1016,16 @@ PyString_Format(format, args)
"not all arguments converted"
);
goto
error
;
}
if
(
args_owned
)
if
(
args_owned
)
{
Py_DECREF
(
args
);
}
_PyString_Resize
(
&
result
,
reslen
-
rescnt
);
return
result
;
error
:
Py_DECREF
(
result
);
if
(
args_owned
)
if
(
args_owned
)
{
Py_DECREF
(
args
);
}
return
NULL
;
}
...
...
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