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
6a31bb5c
Kaydet (Commit)
6a31bb5c
authored
Agu 31, 2015
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #24952: Clarify default argument of stack_size() in threading, thread
Patch from Mattip.
üst
fe2f2876
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
2 deletions
+8
-2
thread.rst
Doc/library/thread.rst
+2
-1
threading.rst
Doc/library/threading.rst
+2
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/library/thread.rst
Dosyayı görüntüle @
6a31bb5c
...
...
@@ -98,7 +98,8 @@ It defines the following constant and functions:
Return the thread stack size used when creating new threads. The optional
*size* argument specifies the stack size to be used for subsequently created
threads, and must be 0 (use platform or configured default) or a positive
integer value of at least 32,768 (32kB). If changing the thread stack size is
integer value of at least 32,768 (32kB). If *size* is not specified,
0 is used. If changing the thread stack size is
unsupported, the :exc:`error` exception is raised. If the specified stack size is
invalid, a :exc:`ValueError` is raised and the stack size is unmodified. 32kB
is currently the minimum supported stack size value to guarantee sufficient
...
...
Doc/library/threading.rst
Dosyayı görüntüle @
6a31bb5c
...
...
@@ -194,7 +194,8 @@ This module defines the following functions and objects:
Return the thread stack size used when creating new threads. The optional
*size* argument specifies the stack size to be used for subsequently created
threads, and must be 0 (use platform or configured default) or a positive
integer value of at least 32,768 (32kB). If changing the thread stack size is
integer value of at least 32,768 (32 KiB). If *size* is not specified,
0 is used. If changing the thread stack size is
unsupported, a :exc:`ThreadError` is raised. If the specified stack size is
invalid, a :exc:`ValueError` is raised and the stack size is unmodified. 32kB
is currently the minimum supported stack size value to guarantee sufficient
...
...
Misc/ACKS
Dosyayı görüntüle @
6a31bb5c
...
...
@@ -875,6 +875,7 @@ Nick Mathewson
Simon Mathieu
Laura Matson
Graham Matthews
mattip
Martin Matusiak
Dieter Maurer
Daniel May
...
...
Misc/NEWS
Dosyayı görüntüle @
6a31bb5c
...
...
@@ -163,6 +163,9 @@ IDLE
Documentation
-------------
-
Issue
#
24952
:
Clarify
the
default
size
argument
of
stack_size
()
in
the
"threading"
and
"thread"
modules
.
Patch
from
Mattip
.
-
Issue
#
20769
:
Improve
reload
()
docs
.
Patch
by
Dorian
Pula
.
-
Issue
#
23589
:
Remove
duplicate
sentence
from
the
FAQ
.
Patch
by
Yongzhi
Pan
.
...
...
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