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
94fd53ba
Kaydet (Commit)
94fd53ba
authored
May 15, 2013
tarafından
doko@ubuntu.com
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
- Fix typos in the multiprocessing module.
üst
bcaddf63
9df891ca
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
synchronize.py
Lib/multiprocessing/synchronize.py
+1
-1
NEWS
Misc/NEWS
+2
-0
multiprocessing.c
Modules/_multiprocessing/multiprocessing.c
+1
-1
No files found.
Lib/multiprocessing/synchronize.py
Dosyayı görüntüle @
94fd53ba
...
...
@@ -199,7 +199,7 @@ class Condition(object):
num_waiters
=
(
self
.
_sleeping_count
.
_semlock
.
_get_value
()
-
self
.
_woken_count
.
_semlock
.
_get_value
())
except
Exception
:
num_waiters
=
'unkown'
num_waiters
=
'unk
n
own'
return
'<Condition(
%
s,
%
s)>'
%
(
self
.
_lock
,
num_waiters
)
def
wait
(
self
,
timeout
=
None
):
...
...
Misc/NEWS
Dosyayı görüntüle @
94fd53ba
...
...
@@ -88,6 +88,8 @@ Core and Builtins
Library
-------
- Fix typos in the multiprocessing module.
- Issue #17754: Make ctypes.util.find_library() independent of the locale.
- Issue #17968: Fix memory leak in os.listxattr().
...
...
Modules/_multiprocessing/multiprocessing.c
Dosyayı görüntüle @
94fd53ba
...
...
@@ -44,7 +44,7 @@ _PyMp_SetError(PyObject *Type, int num)
break
;
default:
PyErr_Format
(
PyExc_RuntimeError
,
"unkown error number %d"
,
num
);
"unk
n
own error number %d"
,
num
);
}
return
NULL
;
}
...
...
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