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
407c2ac4
Kaydet (Commit)
407c2ac4
authored
Ock 02, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#16747: merge with 3.2.
üst
22ebb2d6
d581fff6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
glossary.rst
Doc/glossary.rst
+11
-11
No files found.
Doc/glossary.rst
Dosyayı görüntüle @
407c2ac4
...
...
@@ -367,17 +367,17 @@ Glossary
slowly
.
See
also
:
term
:`
interactive
`.
iterable
An
object
capable
of
returning
its
members
one
at
a
time
.
Examples
of
iterables
include
all
sequence
types
(
such
as
:
class
:`
list
`,
:
class
:`
str
`,
and
:
class
:`
tuple
`)
and
some
non
-
sequence
types
like
:
class
:`
dict
`
and
:
class
:`
file
`
and
objects
of
any
classes
you
define
with
an
:
meth
:`
__iter__
`
or
:
meth
:`
__getitem__
`
method
.
Iterables
can
be
used
in
a
:
keyword
:`
for
`
loop
and
in
many
other
places
where
a
sequence
is
needed
(:
func
:`
zip
`,
:
func
:`
map
`,
...).
When
an
iterable
object
is
passed
as
an
argument
to
the
built
-
in
function
:
func
:`
iter
`,
it
returns
an
iterator
for
the
object
.
This
iterator
is
good
for
one
pass
o
ver
the
set
of
values
.
When
using
iterables
,
it
is
usually
not
necessary
to
call
:
func
:`
iter
`
or
deal
with
iterator
objects
yourself
.
The
``
for
``
An
object
capable
of
returning
its
members
one
at
a
time
.
Examples
of
iterables
include
all
sequence
types
(
such
as
:
class
:`
list
`,
:
class
:`
str
`,
and
:
class
:`
tuple
`)
and
some
non
-
sequence
types
like
:
class
:`
dict
`,
:
term
:`
file
objects
<
file
object
>`,
and
objects
of
any
classes
you
define
with
an
:
meth
:`
__iter__
`
or
:
meth
:`
__getitem__
`
method
.
Iterables
can
be
used
in
a
:
keyword
:`
for
`
loop
and
in
many
other
places
where
a
sequence
is
needed
(:
func
:`
zip
`,
:
func
:`
map
`,
...).
When
an
iterable
object
is
passed
as
an
argument
to
the
built
-
in
function
:
func
:`
iter
`,
it
returns
an
iterator
for
the
object
.
This
iterator
is
good
for
one
pass
over
the
set
o
f
values
.
When
using
iterables
,
it
is
usually
not
necessary
to
call
:
func
:`
iter
`
or
deal
with
iterator
objects
yourself
.
The
``
for
``
statement
does
that
automatically
for
you
,
creating
a
temporary
unnamed
variable
to
hold
the
iterator
for
the
duration
of
the
loop
.
See
also
:
term
:`
iterator
`,
:
term
:`
sequence
`,
and
:
term
:`
generator
`.
...
...
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