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
db1bad2d
Kaydet (Commit)
db1bad2d
authored
Kas 05, 2010
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix bootstrap issues when building without threads
üst
39a65915
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
_dummy_thread.py
Lib/_dummy_thread.py
+8
-4
reprlib.py
Lib/reprlib.py
+1
-1
No files found.
Lib/_dummy_thread.py
Dosyayı görüntüle @
db1bad2d
...
...
@@ -16,12 +16,14 @@ Suggested usage is::
__all__
=
[
'error'
,
'start_new_thread'
,
'exit'
,
'get_ident'
,
'allocate_lock'
,
'interrupt_main'
,
'LockType'
]
import
traceback
as
_traceback
import
time
# A dummy value
TIMEOUT_MAX
=
2
**
31
# NOTE: this module can be imported early in the extension building process,
# and so top level imports of other modules should be avoided. Instead, all
# imports are done when needed on a function-by-function basis. Since threads
# are disabled, the import lock should not be an issue anyway (??).
class
error
(
Exception
):
"""Dummy implementation of _thread.error."""
...
...
@@ -52,7 +54,8 @@ def start_new_thread(function, args, kwargs={}):
except
SystemExit
:
pass
except
:
_traceback
.
print_exc
()
import
traceback
traceback
.
print_exc
()
_main
=
True
global
_interrupt
if
_interrupt
:
...
...
@@ -116,6 +119,7 @@ class LockType(object):
return
True
else
:
if
timeout
>
0
:
import
time
time
.
sleep
(
timeout
)
return
False
...
...
Lib/reprlib.py
Dosyayı görüntüle @
db1bad2d
...
...
@@ -6,7 +6,7 @@ import builtins
from
itertools
import
islice
try
:
from
_thread
import
get_ident
except
Attribute
Error
:
except
Import
Error
:
from
_dummy_thread
import
get_ident
def
recursive_repr
(
fillvalue
=
'...'
):
...
...
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