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
663219a8
Kaydet (Commit)
663219a8
authored
Haz 24, 2003
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
_make_boundary(): A minor optimization suggested by the Timbot.
üst
616a58d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Generator.py
Lib/email/Generator.py
+1
-1
No files found.
Lib/email/Generator.py
Dosyayı görüntüle @
663219a8
...
...
@@ -363,7 +363,7 @@ _fmt = '%%0%dd' % _width
def
_make_boundary
(
text
=
None
):
# Craft a random boundary. If text is given, ensure that the chosen
# boundary doesn't appear in the text.
token
=
random
.
rand
int
(
0
,
sys
.
maxint
-
1
)
token
=
random
.
rand
range
(
sys
.
maxint
)
boundary
=
(
'='
*
15
)
+
(
_fmt
%
token
)
+
'=='
if
text
is
None
:
return
boundary
...
...
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