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
5629268e
Kaydet (Commit)
5629268e
authored
Haz 29, 2009
tarafından
Alexandre Vassalotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make b64encode raises properly a TypeError when altchars is not bytes.
üst
70f52768
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
base64.py
Lib/base64.py
+2
-2
No files found.
Lib/base64.py
Dosyayı görüntüle @
5629268e
...
@@ -58,8 +58,8 @@ def b64encode(s, altchars=None):
...
@@ -58,8 +58,8 @@ def b64encode(s, altchars=None):
encoded
=
binascii
.
b2a_base64
(
s
)[:
-
1
]
encoded
=
binascii
.
b2a_base64
(
s
)[:
-
1
]
if
altchars
is
not
None
:
if
altchars
is
not
None
:
if
not
isinstance
(
altchars
,
bytes_types
):
if
not
isinstance
(
altchars
,
bytes_types
):
altchars
=
TypeError
(
"expected bytes, not
%
s"
raise
TypeError
(
"expected bytes, not
%
s"
%
altchars
.
__class__
.
__name__
)
%
altchars
.
__class__
.
__name__
)
assert
len
(
altchars
)
==
2
,
repr
(
altchars
)
assert
len
(
altchars
)
==
2
,
repr
(
altchars
)
return
_translate
(
encoded
,
{
'+'
:
altchars
[
0
:
1
],
'/'
:
altchars
[
1
:
2
]})
return
_translate
(
encoded
,
{
'+'
:
altchars
[
0
:
1
],
'/'
:
altchars
[
1
:
2
]})
return
encoded
return
encoded
...
...
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