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
cfdfbb4d
Kaydet (Commit)
cfdfbb4d
authored
Haz 18, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27342: Replaced some Py_XDECREFs with Py_DECREFs.
Patch by Xiang Zhang.
üst
75a25867
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
rangeobject.c
Objects/rangeobject.c
+5
-5
bltinmodule.c
Python/bltinmodule.c
+2
-2
No files found.
Objects/rangeobject.c
Dosyayı görüntüle @
cfdfbb4d
...
...
@@ -129,9 +129,9 @@ range_new(PyTypeObject *type, PyObject *args, PyObject *kw)
return
(
PyObject
*
)
obj
;
/* Failed to create object, release attributes */
Py_
X
DECREF
(
start
);
Py_
X
DECREF
(
stop
);
Py_
X
DECREF
(
step
);
Py_DECREF
(
start
);
Py_DECREF
(
stop
);
Py_DECREF
(
step
);
return
NULL
;
}
...
...
@@ -196,7 +196,7 @@ compute_range_length(PyObject *start, PyObject *stop, PyObject *step)
/* if (lo >= hi), return length of 0. */
cmp_result
=
PyObject_RichCompareBool
(
lo
,
hi
,
Py_GE
);
if
(
cmp_result
!=
0
)
{
Py_
X
DECREF
(
step
);
Py_DECREF
(
step
);
if
(
cmp_result
<
0
)
return
NULL
;
return
PyLong_FromLong
(
0
);
...
...
@@ -225,9 +225,9 @@ compute_range_length(PyObject *start, PyObject *stop, PyObject *step)
return
result
;
Fail:
Py_DECREF
(
step
);
Py_XDECREF
(
tmp2
);
Py_XDECREF
(
diff
);
Py_XDECREF
(
step
);
Py_XDECREF
(
tmp1
);
Py_XDECREF
(
one
);
return
NULL
;
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
cfdfbb4d
...
...
@@ -2711,10 +2711,10 @@ _PyBuiltin_Init(void)
SETBUILTIN
(
"zip"
,
&
PyZip_Type
);
debug
=
PyBool_FromLong
(
Py_OptimizeFlag
==
0
);
if
(
PyDict_SetItemString
(
dict
,
"__debug__"
,
debug
)
<
0
)
{
Py_
X
DECREF
(
debug
);
Py_DECREF
(
debug
);
return
NULL
;
}
Py_
X
DECREF
(
debug
);
Py_DECREF
(
debug
);
return
mod
;
#undef ADD_TO_ALL
...
...
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