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
a7c65093
Kaydet (Commit)
a7c65093
authored
Agu 01, 2004
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
lock_held() docs: Use True/False instead of 1/0. The LaTeX docs were
already correct, so not changed here.
üst
86c7d2f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
import.c
Python/import.c
+3
-3
No files found.
Python/import.c
Dosyayı görüntüle @
a7c65093
...
...
@@ -2692,9 +2692,9 @@ Create a new module. Do not enter it in sys.modules.\n\
The module name must include the full package name, if any."
);
PyDoc_STRVAR
(
doc_lock_held
,
"lock_held() ->
0 or 1
\n
\
Return
1 if the import lock is currently held
.
\n
\
On platforms without threads, return
0
."
);
"lock_held() ->
boolean
\n
\
Return
True if the import lock is currently held, else False
.
\n
\
On platforms without threads, return
False
."
);
PyDoc_STRVAR
(
doc_acquire_lock
,
"acquire_lock() -> None
\n
\
...
...
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