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
0fbdf261
Kaydet (Commit)
0fbdf261
authored
May 08, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#16523: merge with 3.3.
üst
6f75a3e8
babc8227
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
24 deletions
+43
-24
operator.rst
Doc/library/operator.rst
+33
-14
operator.py
Lib/operator.py
+5
-5
_operator.c
Modules/_operator.c
+5
-5
No files found.
Doc/library/operator.rst
Dosyayı görüntüle @
0fbdf261
...
@@ -249,13 +249,22 @@ lookups. These are useful for making fast field extractors as arguments for
...
@@ -249,13 +249,22 @@ lookups. These are useful for making fast field extractors as arguments for
expect a function argument.
expect a function argument.
.. function:: attrgetter(attr[, args...])
.. function:: attrgetter(attr)
attrgetter(*attrs)
Return a callable object that fetches *attr* from its operand. If more than one
Return a callable object that fetches *attr* from its operand.
attribute is requested, returns a tuple of attributes. After,
If more than one attribute is requested, returns a tuple of attributes.
``f = attrgetter('name')``, the call ``f(b)`` returns ``b.name``. After,
The attribute names can also contain dots. For example:
``f = attrgetter('name', 'date')``, the call ``f(b)`` returns ``(b.name,
b.date)``. Equivalent to::
* After ``f = attrgetter('name')``, the call ``f(b)`` returns ``b.name``.
* After ``f = attrgetter('name', 'date')``, the call ``f(b)`` returns
``(b.name, b.date)``.
* After ``f = attrgetter('name.first', 'name.last')``, the call ``f(b)``
returns ``(r.name.first, r.name.last)``.
Equivalent to::
def attrgetter(*items):
def attrgetter(*items):
if any(not isinstance(item, str) for item in items):
if any(not isinstance(item, str) for item in items):
...
@@ -275,14 +284,19 @@ expect a function argument.
...
@@ -275,14 +284,19 @@ expect a function argument.
return obj
return obj
The attribute names can also contain dots; after ``f = attrgetter('date.month')``,
.. function:: itemgetter(item)
the call ``f(b)`` returns ``b.date.month``.
itemgetter(*items)
.. function:: itemgetter(item[, args...])
Return a callable object that fetches *item* from its operand using the
Return a callable object that fetches *item* from its operand using the
operand's :meth:`__getitem__` method. If multiple items are specified,
operand's :meth:`__getitem__` method. If multiple items are specified,
returns a tuple of lookup values. Equivalent to::
returns a tuple of lookup values. For example:
* After ``f = itemgetter(2)``, the call ``f(r)`` returns ``r[2]``.
* After ``g = itemgetter(2, 5, 3)``, the call ``g(r)`` returns
``(r[2], r[5], r[3])``.
Equivalent to::
def itemgetter(*items):
def itemgetter(*items):
if len(items) == 1:
if len(items) == 1:
...
@@ -321,9 +335,14 @@ expect a function argument.
...
@@ -321,9 +335,14 @@ expect a function argument.
Return a callable object that calls the method *name* on its operand. If
Return a callable object that calls the method *name* on its operand. If
additional arguments and/or keyword arguments are given, they will be given
additional arguments and/or keyword arguments are given, they will be given
to the method as well. After ``f = methodcaller('name')``, the call ``f(b)``
to the method as well. For example:
returns ``b.name()``. After ``f = methodcaller('name', 'foo', bar=1)``, the
call ``f(b)`` returns ``b.name('foo', bar=1)``. Equivalent to::
* After ``f = methodcaller('name')``, the call ``f(b)`` returns ``b.name()``.
* After ``f = methodcaller('name', 'foo', bar=1)``, the call ``f(b)``
returns ``b.name('foo', bar=1)``.
Equivalent to::
def methodcaller(name, *args, **kwargs):
def methodcaller(name, *args, **kwargs):
def caller(obj):
def caller(obj):
...
...
Lib/operator.py
Dosyayı görüntüle @
0fbdf261
...
@@ -223,9 +223,9 @@ def length_hint(obj, default=0):
...
@@ -223,9 +223,9 @@ def length_hint(obj, default=0):
class
attrgetter
:
class
attrgetter
:
"""
"""
Return a callable object that fetches the given attribute(s) from its operand.
Return a callable object that fetches the given attribute(s) from its operand.
After f
=
attrgetter('name'), the call f(r) returns r.name.
After f
=
attrgetter('name'), the call f(r) returns r.name.
After g
=
attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).
After g
=
attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).
After h
=
attrgetter('name.first', 'name.last'), the call h(r) returns
After h
=
attrgetter('name.first', 'name.last'), the call h(r) returns
(r.name.first, r.name.last).
(r.name.first, r.name.last).
"""
"""
def
__init__
(
self
,
attr
,
*
attrs
):
def
__init__
(
self
,
attr
,
*
attrs
):
...
@@ -250,8 +250,8 @@ class attrgetter:
...
@@ -250,8 +250,8 @@ class attrgetter:
class
itemgetter
:
class
itemgetter
:
"""
"""
Return a callable object that fetches the given item(s) from its operand.
Return a callable object that fetches the given item(s) from its operand.
After f
=
itemgetter(2), the call f(r) returns r[2].
After f
=
itemgetter(2), the call f(r) returns r[2].
After g
=itemgetter(2,5,
3), the call g(r) returns (r[2], r[5], r[3])
After g
= itemgetter(2, 5,
3), the call g(r) returns (r[2], r[5], r[3])
"""
"""
def
__init__
(
self
,
item
,
*
items
):
def
__init__
(
self
,
item
,
*
items
):
if
not
items
:
if
not
items
:
...
...
Modules/_operator.c
Dosyayı görüntüle @
0fbdf261
...
@@ -485,8 +485,8 @@ PyDoc_STRVAR(itemgetter_doc,
...
@@ -485,8 +485,8 @@ PyDoc_STRVAR(itemgetter_doc,
"itemgetter(item, ...) --> itemgetter object
\n
\
"itemgetter(item, ...) --> itemgetter object
\n
\
\n
\
\n
\
Return a callable object that fetches the given item(s) from its operand.
\n
\
Return a callable object that fetches the given item(s) from its operand.
\n
\
After f
=
itemgetter(2), the call f(r) returns r[2].
\n
\
After f
=
itemgetter(2), the call f(r) returns r[2].
\n
\
After g
=itemgetter(2,5,
3), the call g(r) returns (r[2], r[5], r[3])"
);
After g
= itemgetter(2, 5,
3), the call g(r) returns (r[2], r[5], r[3])"
);
static
PyTypeObject
itemgetter_type
=
{
static
PyTypeObject
itemgetter_type
=
{
PyVarObject_HEAD_INIT
(
NULL
,
0
)
PyVarObject_HEAD_INIT
(
NULL
,
0
)
...
@@ -737,9 +737,9 @@ PyDoc_STRVAR(attrgetter_doc,
...
@@ -737,9 +737,9 @@ PyDoc_STRVAR(attrgetter_doc,
"attrgetter(attr, ...) --> attrgetter object
\n
\
"attrgetter(attr, ...) --> attrgetter object
\n
\
\n
\
\n
\
Return a callable object that fetches the given attribute(s) from its operand.
\n
\
Return a callable object that fetches the given attribute(s) from its operand.
\n
\
After f
=
attrgetter('name'), the call f(r) returns r.name.
\n
\
After f
=
attrgetter('name'), the call f(r) returns r.name.
\n
\
After g
=
attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).
\n
\
After g
=
attrgetter('name', 'date'), the call g(r) returns (r.name, r.date).
\n
\
After h
=
attrgetter('name.first', 'name.last'), the call h(r) returns
\n
\
After h
=
attrgetter('name.first', 'name.last'), the call h(r) returns
\n
\
(r.name.first, r.name.last)."
);
(r.name.first, r.name.last)."
);
static
PyTypeObject
attrgetter_type
=
{
static
PyTypeObject
attrgetter_type
=
{
...
...
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