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
655f600b
Kaydet (Commit)
655f600b
authored
May 16, 1994
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Don't use thread.exit_prog(); set a global variable to stop other
thread
üst
dc3c53cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
wpi.py
Demo/threads/wpi.py
+8
-2
No files found.
Demo/threads/wpi.py
Dosyayı görüntüle @
655f600b
# Display digits of pi in a window, calculating in a separate thread.
# Compare ../scripts/pi.py.
import
sys
import
time
import
thread
import
stdwin
from
stdwinevents
import
*
ok
=
1
digits
=
[]
def
worker
():
k
,
a
,
b
,
a1
,
b1
=
2
l
,
4
l
,
1
l
,
12
l
,
4
l
while
1
:
while
ok
:
# Next approximation
p
,
q
,
k
=
k
*
k
,
2
l
*
k
+
1
l
,
k
+
1
l
a
,
b
,
a1
,
b1
=
a1
,
b1
,
p
*
a
+
q
*
a1
,
p
*
b
+
q
*
b1
...
...
@@ -23,11 +26,13 @@ def worker():
d
,
d1
=
a
/
b
,
a1
/
b1
def
main
():
global
ok
digits_seen
=
0
thread
.
start_new_thread
(
worker
,
())
tw
=
stdwin
.
textwidth
(
'0 '
)
lh
=
stdwin
.
lineheight
()
stdwin
.
setdefwinsize
(
20
*
tw
,
20
*
lh
)
stdwin
.
setdefscrollbars
(
0
,
1
)
win
=
stdwin
.
open
(
'digits of pi'
)
options
=
win
.
menucreate
(
'Options'
)
options
.
additem
(
'Auto scroll'
)
...
...
@@ -37,7 +42,8 @@ def main():
win
.
settimer
(
1
)
type
,
w
,
detail
=
stdwin
.
getevent
()
if
type
==
WE_CLOSE
:
thread
.
exit_prog
(
0
)
ok
=
0
sys
.
exit
(
0
)
elif
type
==
WE_DRAW
:
(
left
,
top
),
(
right
,
bottom
)
=
detail
digits_seen
=
len
(
digits
)
...
...
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