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
207fe011
Kaydet (Commit)
207fe011
authored
Eyl 03, 2013
tarafından
Eli Bendersky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #18912: Fix indentation in docstring
Contributed by Jeroen Van Goey
üst
e8de2966
c554f725
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
ACKS
Misc/ACKS
+1
-0
itertoolsmodule.c
Modules/itertoolsmodule.c
+4
-4
No files found.
Misc/ACKS
Dosyayı görüntüle @
207fe011
...
@@ -445,6 +445,7 @@ Yannick Gingras
...
@@ -445,6 +445,7 @@ Yannick Gingras
Matt Giuca
Matt Giuca
Wim Glenn
Wim Glenn
Michael Goderbauer
Michael Goderbauer
Jeroen Van Goey
Christoph Gohlke
Christoph Gohlke
Tim Golden
Tim Golden
Guilherme Gonçalves
Guilherme Gonçalves
...
...
Modules/itertoolsmodule.c
Dosyayı görüntüle @
207fe011
...
@@ -3978,10 +3978,10 @@ PyDoc_STRVAR(count_doc,
...
@@ -3978,10 +3978,10 @@ PyDoc_STRVAR(count_doc,
Return a count object whose .__next__() method returns consecutive values.
\n
\
Return a count object whose .__next__() method returns consecutive values.
\n
\
Equivalent to:
\n\n
\
Equivalent to:
\n\n
\
def count(firstval=0, step=1):
\n
\
def count(firstval=0, step=1):
\n
\
x = firstval
\n
\
x = firstval
\n
\
while 1:
\n
\
while 1:
\n
\
yield x
\n
\
yield x
\n
\
x += step
\n
"
);
x += step
\n
"
);
static
PyTypeObject
count_type
=
{
static
PyTypeObject
count_type
=
{
PyVarObject_HEAD_INIT
(
NULL
,
0
)
PyVarObject_HEAD_INIT
(
NULL
,
0
)
...
...
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