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
bca22096
Kaydet (Commit)
bca22096
authored
Ock 19, 2013
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Show the function signature in the docstring
üst
86af5815
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
_heapqmodule.c
Modules/_heapqmodule.c
+3
-3
No files found.
Modules/_heapqmodule.c
Dosyayı görüntüle @
bca22096
...
...
@@ -141,7 +141,7 @@ heappush(PyObject *self, PyObject *args)
}
PyDoc_STRVAR
(
heappush_doc
,
"Push item onto heap, maintaining the heap invariant."
);
"
heappush(heap, item) -> None.
Push item onto heap, maintaining the heap invariant."
);
static
PyObject
*
heappop
(
PyObject
*
self
,
PyObject
*
heap
)
...
...
@@ -209,7 +209,7 @@ heapreplace(PyObject *self, PyObject *args)
}
PyDoc_STRVAR
(
heapreplace_doc
,
"Pop and return the current smallest value, and add the new item.
\n
\
"
heapreplace(heap, item) -> value.
Pop and return the current smallest value, and add the new item.
\n
\
\n
\
This is more efficient than heappop() followed by heappush(), and can be
\n
\
more appropriate when using a fixed-size heap. Note that the value
\n
\
...
...
@@ -256,7 +256,7 @@ heappushpop(PyObject *self, PyObject *args)
}
PyDoc_STRVAR
(
heappushpop_doc
,
"Push item on the heap, then pop and return the smallest item
\n
\
"
heappushpop(heap, item) -> value.
Push item on the heap, then pop and return the smallest item
\n
\
from the heap. The combined action runs more efficiently than
\n
\
heappush() followed by a separate call to heappop()."
);
...
...
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