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
c2e095f6
Kaydet (Commit)
c2e095f6
authored
Ara 07, 2002
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix typo in abstract.c which caused __rpow__ to not be invoked.
Added related testcase. Closes SF bug #643260.
üst
f9229d98
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
test_pow.py
Lib/test/test_pow.py
+5
-0
abstract.c
Objects/abstract.c
+1
-1
No files found.
Lib/test/test_pow.py
Dosyayı görüntüle @
c2e095f6
...
...
@@ -118,3 +118,8 @@ for i in range(-10, 11):
o
=
pow
(
long
(
i
),
j
)
%
k
n
=
pow
(
long
(
i
),
j
,
k
)
if
o
!=
n
:
print
'Integer mismatch:'
,
i
,
j
,
k
class
TestRpow
:
def
__rpow__
(
self
,
other
):
return
None
None
**
TestRpow
()
# Won't fail when __rpow__ invoked. SF bug #643260.
Objects/abstract.c
Dosyayı görüntüle @
c2e095f6
...
...
@@ -468,7 +468,7 @@ ternary_op(PyObject *v,
if
(
mv
!=
NULL
&&
NEW_STYLE_NUMBER
(
v
))
slotv
=
NB_TERNOP
(
mv
,
op_slot
);
if
(
w
->
ob_type
!=
v
->
ob_type
&&
m
v
!=
NULL
&&
NEW_STYLE_NUMBER
(
w
))
{
m
w
!=
NULL
&&
NEW_STYLE_NUMBER
(
w
))
{
slotw
=
NB_TERNOP
(
mw
,
op_slot
);
if
(
slotw
==
slotv
)
slotw
=
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