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
928051fb
Kaydet (Commit)
928051fb
authored
Şub 15, 2002
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
The "%" character does not need to be escaped in verbatim environments.
This closes SF bug #517811.
üst
7bc6f7ac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
email.tex
Doc/lib/email.tex
+3
-3
No files found.
Doc/lib/email.tex
Dosyayı görüntüle @
928051fb
...
...
@@ -353,7 +353,7 @@ fp.close()
# me == the sender's email address
# you == the recipient's email address
msg['Subject'] = 'The contents of
\%
s'
\
%
textfile
msg['Subject'] = 'The contents of
%s'
% textfile
msg['From'] = me
msg['To'] = you
...
...
@@ -480,7 +480,7 @@ def main():
# Create the enclosing (outer) message
outer = MIMEBase('multipart', 'mixed')
outer['Subject'] = 'Contents of directory
\%
s'
\
%
os.path.abspath(dir)
outer['Subject'] = 'Contents of directory
%s'
% os.path.abspath(dir)
outer['To'] = sender
outer['From'] = COMMASPACE.join(recips)
outer.preamble = 'You will not see this in a MIME-aware mail reader.
\n
'
...
...
@@ -617,7 +617,7 @@ def main():
if not ext:
# Use a generic bag-of-bits extension
ext = '.bin'
filename = 'part-
\%
03d
\%
s'
\
%
(counter, ext)
filename = 'part-
%03d%s'
% (counter, ext)
counter += 1
fp = open(os.path.join(dir, filename), 'wb')
fp.write(part.get
_
payload(decode=1))
...
...
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