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
7cf8bebb
Kaydet (Commit)
7cf8bebb
authored
Ock 21, 2017
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #29331: Simplified argument parsing in sorted() and list.sort().
üst
5e65cd39
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
24 deletions
+20
-24
listobject.c
Objects/listobject.c
+15
-15
bltinmodule.c
Python/bltinmodule.c
+5
-9
No files found.
Objects/listobject.c
Dosyayı görüntüle @
7cf8bebb
...
...
@@ -1912,7 +1912,7 @@ reverse_sortslice(sortslice *s, Py_ssize_t n)
* duplicated).
*/
static
PyObject
*
listsort
(
PyListObject
*
self
,
PyObject
*
args
,
PyObject
*
kwds
)
listsort
_impl
(
PyListObject
*
self
,
PyObject
*
keyfunc
,
int
reverse
)
{
MergeState
ms
;
Py_ssize_t
nremaining
;
...
...
@@ -1922,24 +1922,11 @@ listsort(PyListObject *self, PyObject *args, PyObject *kwds)
PyObject
**
saved_ob_item
;
PyObject
**
final_ob_item
;
PyObject
*
result
=
NULL
;
/* guilty until proved innocent */
int
reverse
=
0
;
PyObject
*
keyfunc
=
NULL
;
Py_ssize_t
i
;
static
char
*
kwlist
[]
=
{
"key"
,
"reverse"
,
0
};
PyObject
**
keys
;
assert
(
self
!=
NULL
);
assert
(
PyList_Check
(
self
));
if
(
args
!=
NULL
)
{
if
(
!
PyArg_ParseTupleAndKeywords
(
args
,
kwds
,
"|Oi:sort"
,
kwlist
,
&
keyfunc
,
&
reverse
))
return
NULL
;
if
(
Py_SIZE
(
args
)
>
0
)
{
PyErr_SetString
(
PyExc_TypeError
,
"must use keyword argument for key function"
);
return
NULL
;
}
}
if
(
keyfunc
==
Py_None
)
keyfunc
=
NULL
;
...
...
@@ -2088,6 +2075,19 @@ keyfunc_fail:
#undef IFLT
#undef ISLT
static
PyObject
*
listsort
(
PyListObject
*
self
,
PyObject
*
args
,
PyObject
*
kwds
)
{
static
char
*
kwlist
[]
=
{
"key"
,
"reverse"
,
0
};
PyObject
*
keyfunc
=
NULL
;
int
reverse
=
0
;
if
(
!
PyArg_ParseTupleAndKeywords
(
args
,
kwds
,
"|$Oi:sort"
,
kwlist
,
&
keyfunc
,
&
reverse
))
return
NULL
;
return
listsort_impl
(
self
,
keyfunc
,
reverse
);
}
int
PyList_Sort
(
PyObject
*
v
)
{
...
...
@@ -2095,7 +2095,7 @@ PyList_Sort(PyObject *v)
PyErr_BadInternalCall
();
return
-
1
;
}
v
=
listsort
((
PyListObject
*
)
v
,
(
PyObject
*
)
NULL
,
(
PyObject
*
)
NULL
);
v
=
listsort
_impl
((
PyListObject
*
)
v
,
NULL
,
0
);
if
(
v
==
NULL
)
return
-
1
;
Py_DECREF
(
v
);
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
7cf8bebb
...
...
@@ -2126,15 +2126,11 @@ PyDoc_STRVAR(builtin_sorted__doc__,
static
PyObject
*
builtin_sorted
(
PyObject
*
self
,
PyObject
**
args
,
Py_ssize_t
nargs
,
PyObject
*
kwnames
)
{
PyObject
*
newlist
,
*
v
,
*
seq
,
*
keyfunc
=
NULL
;
PyObject
*
callable
;
static
const
char
*
const
kwlist
[]
=
{
""
,
"key"
,
"reverse"
,
0
};
/* args 1-3 should match listsort in Objects/listobject.c */
static
_PyArg_Parser
parser
=
{
"O|Oi:sorted"
,
kwlist
,
0
};
int
reverse
;
if
(
!
_PyArg_ParseStackAndKeywords
(
args
,
nargs
,
kwnames
,
&
parser
,
&
seq
,
&
keyfunc
,
&
reverse
))
PyObject
*
newlist
,
*
v
,
*
seq
,
*
callable
;
/* Keyword arguments are passed through list.sort() which will check
them. */
if
(
!
_PyArg_UnpackStack
(
args
,
nargs
,
"sorted"
,
1
,
1
,
&
seq
))
return
NULL
;
newlist
=
PySequence_List
(
seq
);
...
...
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