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
398ef5c0
Kaydet (Commit)
398ef5c0
authored
Ock 20, 2017
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #29327: Fixed a crash when pass the iterable keyword argument to sorted().
üst
a57a8a3e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
test_builtin.py
Lib/test/test_builtin.py
+10
-0
NEWS
Misc/NEWS
+3
-0
bltinmodule.c
Python/bltinmodule.c
+2
-1
No files found.
Lib/test/test_builtin.py
Dosyayı görüntüle @
398ef5c0
...
...
@@ -1627,6 +1627,16 @@ class TestSorted(unittest.TestCase):
self
.
assertEqual
(
data
,
sorted
(
copy
,
reverse
=
1
))
self
.
assertNotEqual
(
data
,
copy
)
def
test_bad_arguments
(
self
):
# Issue #29327: The first argument is positional-only.
sorted
([])
with
self
.
assertRaises
(
TypeError
):
sorted
(
iterable
=
[])
# Other arguments are keyword-only
sorted
([],
key
=
None
)
with
self
.
assertRaises
(
TypeError
):
sorted
([],
None
)
def
test_inputtypes
(
self
):
s
=
'abracadabra'
types
=
[
list
,
tuple
,
str
]
...
...
Misc/NEWS
Dosyayı görüntüle @
398ef5c0
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.6.1 release candidate 1?
Core and Builtins
-----------------
- Issue #29327: Fixed a crash when pass the iterable keyword argument to
sorted().
- Issue #29034: Fix memory leak and use-after-free in os module (path_converter).
- Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception.
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
398ef5c0
...
...
@@ -2123,7 +2123,7 @@ builtin_sorted(PyObject *self, PyObject *args, PyObject *kwds)
{
PyObject
*
newlist
,
*
v
,
*
seq
,
*
keyfunc
=
NULL
,
**
newargs
;
PyObject
*
callable
;
static
char
*
kwlist
[]
=
{
"
iterable
"
,
"key"
,
"reverse"
,
0
};
static
char
*
kwlist
[]
=
{
""
,
"key"
,
"reverse"
,
0
};
int
reverse
;
Py_ssize_t
nargs
;
...
...
@@ -2142,6 +2142,7 @@ builtin_sorted(PyObject *self, PyObject *args, PyObject *kwds)
return
NULL
;
}
assert
(
PyTuple_GET_SIZE
(
args
)
>=
1
);
newargs
=
&
PyTuple_GET_ITEM
(
args
,
1
);
nargs
=
PyTuple_GET_SIZE
(
args
)
-
1
;
v
=
_PyObject_FastCallDict
(
callable
,
newargs
,
nargs
,
kwds
);
...
...
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