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
4207907c
Unverified
Kaydet (Commit)
4207907c
authored
Şub 10, 2019
tarafından
Pablo Galindo
Kaydeden (comit)
GitHub
Şub 10, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix division by 0 when checking for overflow in math.prod (GH-11808)
üst
181835d5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
test_math.py
Lib/test/test_math.py
+4
-0
mathmodule.c
Modules/mathmodule.c
+2
-2
No files found.
Lib/test/test_math.py
Dosyayı görüntüle @
4207907c
...
@@ -1756,6 +1756,10 @@ class IsCloseTests(unittest.TestCase):
...
@@ -1756,6 +1756,10 @@ class IsCloseTests(unittest.TestCase):
with
self
.
assertRaises
(
TypeError
):
with
self
.
assertRaises
(
TypeError
):
prod
([
10
,
20
],
[
30
,
40
])
# start is a keyword-only argument
prod
([
10
,
20
],
[
30
,
40
])
# start is a keyword-only argument
self
.
assertEqual
(
prod
([
0
,
1
,
2
,
3
]),
0
)
self
.
assertEqual
(
prod
([
1
,
0
,
2
,
3
]),
0
)
self
.
assertEqual
(
prod
(
range
(
10
)),
0
)
def
test_main
():
def
test_main
():
from
doctest
import
DocFileSuite
from
doctest
import
DocFileSuite
suite
=
unittest
.
TestSuite
()
suite
=
unittest
.
TestSuite
()
...
...
Modules/mathmodule.c
Dosyayı görüntüle @
4207907c
...
@@ -2561,8 +2561,8 @@ math_prod_impl(PyObject *module, PyObject *iterable, PyObject *start)
...
@@ -2561,8 +2561,8 @@ math_prod_impl(PyObject *module, PyObject *iterable, PyObject *start)
long
x
=
i_result
*
b
;
long
x
=
i_result
*
b
;
/* Continue if there is no overflow */
/* Continue if there is no overflow */
if
(
overflow
==
0
if
(
overflow
==
0
&&
x
<
INT_MAX
&&
x
>
INT
_MIN
&&
x
<
LONG_MAX
&&
x
>
LONG
_MIN
&&
!
(
b
!=
0
&&
x
/
i_result
!=
b
))
{
&&
!
(
b
!=
0
&&
x
/
b
!=
i_result
))
{
i_result
=
x
;
i_result
=
x
;
Py_DECREF
(
item
);
Py_DECREF
(
item
);
continue
;
continue
;
...
...
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