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
067cbd02
Kaydet (Commit)
067cbd02
authored
Ock 24, 2017
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Warnings could be emitted at compile time.
üst
c3858bd7
4102d25b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
test_compile.py
Lib/test/test_compile.py
+3
-0
NEWS
Misc/NEWS
+3
-0
codeobject.c
Objects/codeobject.c
+3
-3
No files found.
Lib/test/test_compile.py
Dosyayı görüntüle @
067cbd02
...
...
@@ -630,6 +630,7 @@ if 1:
f1
=
ns
[
'f1'
]
f2
=
ns
[
'f2'
]
self
.
assertIsNot
(
f1
.
__code__
,
f2
.
__code__
)
self
.
assertNotEqual
(
f1
.
__code__
,
f2
.
__code__
)
self
.
check_constant
(
f1
,
const1
)
self
.
check_constant
(
f2
,
const2
)
self
.
assertEqual
(
repr
(
f1
()),
repr
(
const1
))
...
...
@@ -638,6 +639,8 @@ if 1:
check_different_constants
(
0
,
0.0
)
check_different_constants
(
+
0.0
,
-
0.0
)
check_different_constants
((
0
,),
(
0.0
,))
check_different_constants
(
'a'
,
b
'a'
)
check_different_constants
((
'a'
,),
(
b
'a'
,))
# check_different_constants() cannot be used because repr(-0j) is
# '(-0-0j)', but when '(-0-0j)' is evaluated to 0j: we loose the sign.
...
...
Misc/NEWS
Dosyayı görüntüle @
067cbd02
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.7.0 alpha 1?
Core and Builtins
-----------------
- Issue #29337: Fixed possible BytesWarning when compare the code objects.
Warnings could be emitted at compile time.
- Issue #29327: Fixed a crash when pass the iterable keyword argument to
sorted().
...
...
Objects/codeobject.c
Dosyayı görüntüle @
067cbd02
...
...
@@ -550,7 +550,7 @@ _PyCode_ConstantKey(PyObject *op)
PyTuple_SET_ITEM
(
tuple
,
i
,
item_key
);
}
key
=
PyTuple_Pack
(
3
,
Py_TYPE
(
op
),
op
,
tuple
);
key
=
PyTuple_Pack
(
2
,
tuple
,
op
);
Py_DECREF
(
tuple
);
}
else
if
(
PyFrozenSet_CheckExact
(
op
))
{
...
...
@@ -584,7 +584,7 @@ _PyCode_ConstantKey(PyObject *op)
if
(
set
==
NULL
)
return
NULL
;
key
=
PyTuple_Pack
(
3
,
Py_TYPE
(
op
),
op
,
set
);
key
=
PyTuple_Pack
(
2
,
set
,
op
);
Py_DECREF
(
set
);
return
key
;
}
...
...
@@ -595,7 +595,7 @@ _PyCode_ConstantKey(PyObject *op)
if
(
obj_id
==
NULL
)
return
NULL
;
key
=
PyTuple_Pack
(
3
,
Py_TYPE
(
op
),
op
,
obj_id
);
key
=
PyTuple_Pack
(
2
,
obj_id
,
op
);
Py_DECREF
(
obj_id
);
}
return
key
;
...
...
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