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
31584cb4
Kaydet (Commit)
31584cb4
authored
Ock 22, 2001
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Finn Bock (SF patch #103349):
Allow pickle.py to be using with Jython unicode strings
üst
f317a18a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
+33
-0
pickle.py
Lib/pickle.py
+33
-0
No files found.
Lib/pickle.py
Dosyayı görüntüle @
31584cb4
...
...
@@ -300,6 +300,39 @@ class Pickler:
memo
[
d
]
=
(
memo_len
,
object
)
dispatch
[
UnicodeType
]
=
save_unicode
if
StringType
==
UnicodeType
:
# This is true for Jython
def
save_string
(
self
,
object
):
d
=
id
(
object
)
memo
=
self
.
memo
unicode
=
object
.
isunicode
()
if
(
self
.
bin
):
if
unicode
:
object
=
object
.
encode
(
"utf-8"
)
l
=
len
(
object
)
s
=
mdumps
(
l
)[
1
:]
if
(
l
<
256
and
not
unicode
):
self
.
write
(
SHORT_BINSTRING
+
s
[
0
]
+
object
)
else
:
if
unicode
:
self
.
write
(
BINUNICODE
+
s
+
object
)
else
:
self
.
write
(
BINSTRING
+
s
+
object
)
else
:
if
unicode
:
object
=
object
.
replace
(
u"
\\
"
,
u"
\\
u005c"
)
object
=
object
.
replace
(
u"
\n
"
,
u"
\\
u000a"
)
object
=
object
.
encode
(
'raw-unicode-escape'
)
self
.
write
(
UNICODE
+
object
+
'
\n
'
)
else
:
self
.
write
(
STRING
+
`object`
+
'
\n
'
)
memo_len
=
len
(
memo
)
self
.
write
(
self
.
put
(
memo_len
))
memo
[
d
]
=
(
memo_len
,
object
)
dispatch
[
StringType
]
=
save_string
def
save_tuple
(
self
,
object
):
write
=
self
.
write
...
...
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