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
5dba6f74
Kaydet (Commit)
5dba6f74
authored
Kas 20, 2006
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Jython compatibility fix: if uu.decode() opened its output file, be sure to
close it.
üst
1e753863
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
uu.py
Lib/uu.py
+4
-0
No files found.
Lib/uu.py
Dosyayı görüntüle @
5dba6f74
...
...
@@ -114,6 +114,7 @@ def decode(in_file, out_file=None, mode=None, quiet=0):
#
# Open the output file
#
opened
=
False
if
out_file
==
'-'
:
out_file
=
sys
.
stdout
elif
isinstance
(
out_file
,
basestring
):
...
...
@@ -123,6 +124,7 @@ def decode(in_file, out_file=None, mode=None, quiet=0):
except
AttributeError
:
pass
out_file
=
fp
opened
=
True
#
# Main decoding loop
#
...
...
@@ -140,6 +142,8 @@ def decode(in_file, out_file=None, mode=None, quiet=0):
s
=
in_file
.
readline
()
if
not
s
:
raise
Error
(
'Truncated input file'
)
if
opened
:
out_file
.
close
()
def
test
():
"""uuencode/uudecode main program"""
...
...
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