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
f5f9a370
Kaydet (Commit)
f5f9a370
authored
Nis 30, 2004
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add an example application to the docs.
üst
6fbf703f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
2 deletions
+31
-2
libcollections.tex
Doc/lib/libcollections.tex
+31
-2
No files found.
Doc/lib/libcollections.tex
Dosyayı görüntüle @
f5f9a370
...
...
@@ -67,7 +67,7 @@ Deque objects support the following methods:
\begin{methoddesc}
{
rotate
}{
n
}
Rotate the deque
\var
{
n
}
steps to the right. If
\var
{
n
}
is
negative, rotate to the left. Rotating one step to the right
is equivalent to:
\samp
{
d.appendleft(d.pop())
}
.
is equivalent to:
\samp
{
d.appendleft(d.pop())
}
.
\end{methoddesc}
In addition to the above, deques support iteration, pickling,
\samp
{
len(d)
}
,
...
...
@@ -128,5 +128,34 @@ IndexError: pop from an empty deque
>>> d.extendleft('abc') # extendleft() reverses the input order
>>> d
deque(['c', 'b', 'a'])
\end{verbatim}
\end{verbatim}
A roundrobin task server can be built from a
\class
{
deque
}
using
\method
{
popleft()
}
to select the current task and
\method
{
append()
}
to add it back to the tasklist if the input stream is not exhausted:
\begin{verbatim}
def roundrobin(*iterables):
pending = deque(iter(i) for i in iterables)
while pending:
task = pending.popleft()
try:
yield task.next()
except StopIteration:
continue
pending.append(task)
>>> for value in roundrobin('abc', 'd', 'efgh'):
print value
a
d
e
b
f
c
g
h
\end{verbatim}
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