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
a4a8b820
Kaydet (Commit)
a4a8b820
authored
Tem 15, 2005
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bug [ 1238170 ] threading.Thread uses {} as default argument
üst
8bfa8935
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
threading.py
Lib/threading.py
+3
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/threading.py
Dosyayı görüntüle @
a4a8b820
...
...
@@ -374,9 +374,11 @@ class Thread(_Verbose):
__exc_info
=
_sys
.
exc_info
def
__init__
(
self
,
group
=
None
,
target
=
None
,
name
=
None
,
args
=
(),
kwargs
=
{}
,
verbose
=
None
):
args
=
(),
kwargs
=
None
,
verbose
=
None
):
assert
group
is
None
,
"group argument must be None for now"
_Verbose
.
__init__
(
self
,
verbose
)
if
kwargs
is
None
:
kwargs
=
{}
self
.
__target
=
target
self
.
__name
=
str
(
name
or
_newname
())
self
.
__args
=
args
...
...
Misc/NEWS
Dosyayı görüntüle @
a4a8b820
...
...
@@ -168,6 +168,9 @@ Extension Modules
Library
-------
-
Bug
#
1238170
:
threading
.
Thread
.
__init__
no
longer
has
"kwargs={}"
as
a
parameter
,
but
uses
the
usual
"kwargs=None"
.
-
textwrap
now
processes
text
chucks
at
O
(
n
)
speed
instead
of
O
(
n
**
2
).
Patch
#
1209527
(
Contributed
by
Connelly
).
...
...
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