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
4320f54e
Kaydet (Commit)
4320f54e
authored
Nis 22, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.4 (#22785)
üst
7563043b
ac22c6b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
rangeobject.c
Objects/rangeobject.c
+5
-1
No files found.
Objects/rangeobject.c
Dosyayı görüntüle @
4320f54e
...
@@ -139,7 +139,11 @@ PyDoc_STRVAR(range_doc,
...
@@ -139,7 +139,11 @@ PyDoc_STRVAR(range_doc,
"range(stop) -> range object
\n
\
"range(stop) -> range object
\n
\
range(start, stop[, step]) -> range object
\n
\
range(start, stop[, step]) -> range object
\n
\
\n
\
\n
\
Return a sequence of numbers from start to stop by step."
);
Return an object that produces a sequence of integers from start (inclusive)
\n
\
to stop (exclusive) by step. range(i, j) produces i, i+1, i+2, ..., j-1.
\n
\
start defaults to 0, and stop is omitted! range(4) produces 0, 1, 2, 3.
\n
\
These are exactly the valid indices for a list of 4 elements.
\n
\
When step is given, it specifies the increment (or decrement)."
);
static
void
static
void
range_dealloc
(
rangeobject
*
r
)
range_dealloc
(
rangeobject
*
r
)
...
...
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