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
d7943cb7
Kaydet (Commit)
d7943cb7
authored
May 17, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix spelling
üst
79a922d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
test_py3kwarn.py
Lib/test/test_py3kwarn.py
+1
-1
bltinmodule.c
Python/bltinmodule.c
+1
-1
No files found.
Lib/test/test_py3kwarn.py
Dosyayı görüntüle @
d7943cb7
...
...
@@ -133,7 +133,7 @@ class TestPy3KWarnings(unittest.TestCase):
'Also, note the returned format is different.'
with
catch_warning
()
as
w
:
self
.
assertWarning
(
oct
(
Spam
()),
w
,
expected
)
expected
=
'In 3.x, hex() converts the result of __index__ to hex
i
decimal.'
expected
=
'In 3.x, hex() converts the result of __index__ to hex
a
decimal.'
with
catch_warning
()
as
w
:
self
.
assertWarning
(
hex
(
Spam
()),
w
,
expected
)
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
d7943cb7
...
...
@@ -1186,7 +1186,7 @@ builtin_hex(PyObject *self, PyObject *v)
if
(
nb
!=
NULL
&&
nb
->
nb_hex
!=
NULL
)
{
if
(
PyErr_WarnPy3k
(
"In 3.x, hex() converts "
"the result of __index__ to hex
i
decimal."
,
"the result of __index__ to hex
a
decimal."
,
1
)
<
0
)
return
NULL
;
res
=
(
*
nb
->
nb_hex
)(
v
);
...
...
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