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
17911286
Unverified
Kaydet (Commit)
17911286
authored
Haz 25, 2019
tarafından
Raymond Hettinger
Kaydeden (comit)
GitHub
Haz 25, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-36546: Mark first argument as position only (GH-14363)
üst
3f5b9088
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
statistics.py
Lib/statistics.py
+1
-1
2019-06-25-05-07-48.bpo-36546.RUcxaK.rst
...S.d/next/Library/2019-06-25-05-07-48.bpo-36546.RUcxaK.rst
+4
-0
No files found.
Lib/statistics.py
Dosyayı görüntüle @
17911286
...
@@ -603,7 +603,7 @@ def multimode(data):
...
@@ -603,7 +603,7 @@ def multimode(data):
# options make for easier choices and that external packages can be
# options make for easier choices and that external packages can be
# used for anything more advanced.
# used for anything more advanced.
def
quantiles
(
dist
,
*
,
n
=
4
,
method
=
'exclusive'
):
def
quantiles
(
dist
,
/
,
*
,
n
=
4
,
method
=
'exclusive'
):
'''Divide *dist* into *n* continuous intervals with equal probability.
'''Divide *dist* into *n* continuous intervals with equal probability.
Returns a list of (n - 1) cut points separating the intervals.
Returns a list of (n - 1) cut points separating the intervals.
...
...
Misc/NEWS.d/next/Library/2019-06-25-05-07-48.bpo-36546.RUcxaK.rst
0 → 100644
Dosyayı görüntüle @
17911286
The *dist* argument for statistics.quantiles() is now positional only. The
current name doesn't reflect that the argument can be either a dataset or a
distribution. Marking the parameter as positional avoids confusion and
makes it possible to change the name later.
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