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
4ab5ae2a
Kaydet (Commit)
4ab5ae2a
authored
Eki 22, 1998
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Error message goes to stderr
canceled() takes an optional flag so that the canceled flag can be cleared.
üst
d9e5214c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
Switchboard.py
Tools/pynche/Switchboard.py
+8
-4
No files found.
Tools/pynche/Switchboard.py
Dosyayı görüntüle @
4ab5ae2a
...
...
@@ -12,6 +12,7 @@ conform to the following interface:
since this would cause it to get updated twice.
"""
import
sys
from
types
import
DictType
import
marshal
...
...
@@ -33,7 +34,9 @@ class Switchboard:
fp
=
open
(
initfile
)
self
.
__optiondb
=
marshal
.
load
(
fp
)
if
type
(
self
.
__optiondb
)
<>
DictType
:
print
'Problem reading options from file:'
,
initfile
sys
.
stderr
.
write
(
'Problem reading options from file:
%
s
\n
'
%
initfile
)
self
.
__optiondb
=
{}
except
(
IOError
,
EOFError
):
pass
...
...
@@ -76,7 +79,8 @@ class Switchboard:
try
:
fp
=
open
(
self
.
__initfile
,
'w'
)
except
IOError
:
print
'Cannot write options to file:'
,
file
sys
.
stderr
.
write
(
'Cannot write options to file:
%
s
\n
'
%
self
.
__initfile
)
else
:
marshal
.
dump
(
self
.
__optiondb
,
fp
)
finally
:
...
...
@@ -88,8 +92,8 @@ class Switchboard:
if
hasattr
(
v
,
'withdraw'
):
v
.
withdraw
()
def
canceled
(
self
):
self
.
__canceled
=
1
def
canceled
(
self
,
flag
=
1
):
self
.
__canceled
=
flag
def
canceled_p
(
self
):
return
self
.
__canceled
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