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
ff931573
Kaydet (Commit)
ff931573
authored
Tem 13, 2008
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport of 64903.
üst
f8f30fad
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
dummy_thread.py
Lib/dummy_thread.py
+3
-6
test_dummy_thread.py
Lib/test/test_dummy_thread.py
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/dummy_thread.py
Dosyayı görüntüle @
ff931573
...
...
@@ -107,18 +107,15 @@ class LockType(object):
aren't triggered and throw a little fit.
"""
if
waitflag
is
None
:
if
waitflag
is
None
or
waitflag
:
self
.
locked_status
=
True
return
Non
e
el
if
not
waitflag
:
return
Tru
e
el
se
:
if
not
self
.
locked_status
:
self
.
locked_status
=
True
return
True
else
:
return
False
else
:
self
.
locked_status
=
True
return
True
__enter__
=
acquire
...
...
Lib/test/test_dummy_thread.py
Dosyayı görüntüle @
ff931573
...
...
@@ -60,6 +60,7 @@ class LockTests(unittest.TestCase):
#Make sure that an unconditional locking returns True.
self
.
failUnless
(
self
.
lock
.
acquire
(
1
)
is
True
,
"Unconditional locking did not return True."
)
self
.
failUnless
(
self
.
lock
.
acquire
()
is
True
)
def
test_uncond_acquire_blocking
(
self
):
#Make sure that unconditional acquiring of a locked lock blocks.
...
...
Misc/NEWS
Dosyayı görüntüle @
ff931573
...
...
@@ -59,6 +59,9 @@ Core and builtins
Library
-------
- Issue #3339: dummy_thread.acquire() could return None which is not a valid
return value.
- Issue #3116 and #1792: Fix quadratic behavior in marshal.dumps().
- Issue #2682: ctypes callback functions no longer contain a cyclic
...
...
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