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
bee64533
Kaydet (Commit)
bee64533
authored
Nis 27, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use a try-except so that the pickle file is written even when we die
because of an unexpected exception.
üst
e86271af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
14 deletions
+18
-14
webchecker.py
Tools/webchecker/webchecker.py
+18
-14
No files found.
Tools/webchecker/webchecker.py
Dosyayı görüntüle @
bee64533
...
...
@@ -183,24 +183,28 @@ def main():
for
arg
in
args
:
c
.
addroot
(
arg
)
if
not
norun
:
try
:
if
not
norun
:
try
:
c
.
run
()
except
KeyboardInterrupt
:
if
verbose
>
0
:
print
"[run interrupted]"
try
:
c
.
r
un
()
c
.
r
eport
()
except
KeyboardInterrupt
:
if
verbose
>
0
:
print
"[r
un
interrupted]"
print
"[r
eport
interrupted]"
try
:
c
.
report
()
except
KeyboardInterrupt
:
if
verbose
>
0
:
print
"[report interrupted]"
if
c
.
save_pickle
(
dumpfile
):
if
dumpfile
==
DUMPFILE
:
print
"Use ``
%
s -R'' to restart."
%
sys
.
argv
[
0
]
else
:
print
"Use ``
%
s -R -d
%
s'' to restart."
%
(
sys
.
argv
[
0
],
dumpfile
)
finally
:
if
c
.
save_pickle
(
dumpfile
):
if
dumpfile
==
DUMPFILE
:
print
"Use ``
%
s -R'' to restart."
%
sys
.
argv
[
0
]
else
:
print
"Use ``
%
s -R -d
%
s'' to restart."
%
(
sys
.
argv
[
0
],
dumpfile
)
def
load_pickle
(
dumpfile
=
DUMPFILE
,
verbose
=
VERBOSE
):
...
...
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