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
3bfc65a2
Kaydet (Commit)
3bfc65a2
authored
Ara 13, 2011
tarafından
Alexandre Vassalotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #13505: Make pickling of bytes object compatible with Python 2.
Initial patch by sbt.
üst
7b7e39a6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
93 additions
and
56 deletions
+93
-56
pickle.py
Lib/pickle.py
+5
-1
pickletools.py
Lib/pickletools.py
+31
-39
pickletester.py
Lib/test/pickletester.py
+9
-3
NEWS
Misc/NEWS
+3
-0
_pickle.c
Modules/_pickle.c
+45
-13
No files found.
Lib/pickle.py
Dosyayı görüntüle @
3bfc65a2
...
@@ -487,7 +487,11 @@ class _Pickler:
...
@@ -487,7 +487,11 @@ class _Pickler:
def
save_bytes
(
self
,
obj
,
pack
=
struct
.
pack
):
def
save_bytes
(
self
,
obj
,
pack
=
struct
.
pack
):
if
self
.
proto
<
3
:
if
self
.
proto
<
3
:
self
.
save_reduce
(
bytes
,
(
list
(
obj
),),
obj
=
obj
)
if
len
(
obj
)
==
0
:
self
.
save_reduce
(
bytes
,
(),
obj
=
obj
)
else
:
self
.
save_reduce
(
codecs
.
encode
,
(
str
(
obj
,
'latin1'
),
'latin1'
),
obj
=
obj
)
return
return
n
=
len
(
obj
)
n
=
len
(
obj
)
if
n
<
256
:
if
n
<
256
:
...
...
Lib/pickletools.py
Dosyayı görüntüle @
3bfc65a2
...
@@ -2083,27 +2083,22 @@ _dis_test = r"""
...
@@ -2083,27 +2083,22 @@ _dis_test = r"""
29: ( MARK
29: ( MARK
30: d DICT (MARK at 29)
30: d DICT (MARK at 29)
31: p PUT 2
31: p PUT 2
34: c GLOBAL '__builtin__ bytes'
34: c GLOBAL '_codecs encode'
53: p PUT 3
50: p PUT 3
56: ( MARK
53: ( MARK
57: ( MARK
54: V UNICODE 'abc'
58: l LIST (MARK at 57)
59: p PUT 4
59: p PUT 4
62: L LONG 97
62: V UNICODE 'latin1'
67: a APPEND
70: p PUT 5
68: L LONG 98
73: t TUPLE (MARK at 53)
73: a APPEND
74: p PUT 6
74: L LONG 99
77: R REDUCE
79: a APPEND
78: p PUT 7
80: t TUPLE (MARK at 56)
81: V UNICODE 'def'
81: p PUT 5
86: p PUT 8
84: R REDUCE
89: s SETITEM
85: p PUT 6
90: a APPEND
88: V UNICODE 'def'
91: . STOP
93: p PUT 7
96: s SETITEM
97: a APPEND
98: . STOP
highest protocol among opcodes = 0
highest protocol among opcodes = 0
Try again with a "binary" pickle.
Try again with a "binary" pickle.
...
@@ -2122,25 +2117,22 @@ Try again with a "binary" pickle.
...
@@ -2122,25 +2117,22 @@ Try again with a "binary" pickle.
14: q BINPUT 1
14: q BINPUT 1
16: } EMPTY_DICT
16: } EMPTY_DICT
17: q BINPUT 2
17: q BINPUT 2
19: c GLOBAL '__builtin__ bytes'
19: c GLOBAL '_codecs encode'
38: q BINPUT 3
35: q BINPUT 3
40: ( MARK
37: ( MARK
41: ] EMPTY_LIST
38: X BINUNICODE 'abc'
42: q BINPUT 4
46: q BINPUT 4
44: ( MARK
48: X BINUNICODE 'latin1'
45: K BININT1 97
59: q BINPUT 5
47: K BININT1 98
61: t TUPLE (MARK at 37)
49: K BININT1 99
62: q BINPUT 6
51: e APPENDS (MARK at 44)
64: R REDUCE
52: t TUPLE (MARK at 40)
65: q BINPUT 7
53: q BINPUT 5
67: X BINUNICODE 'def'
55: R REDUCE
75: q BINPUT 8
56: q BINPUT 6
77: s SETITEM
58: X BINUNICODE 'def'
78: e APPENDS (MARK at 3)
66: q BINPUT 7
79: . STOP
68: s SETITEM
69: e APPENDS (MARK at 3)
70: . STOP
highest protocol among opcodes = 1
highest protocol among opcodes = 1
Exercise the INST/OBJ/BUILD family.
Exercise the INST/OBJ/BUILD family.
...
...
Lib/test/pickletester.py
Dosyayı görüntüle @
3bfc65a2
...
@@ -636,9 +636,15 @@ class AbstractPickleTests(unittest.TestCase):
...
@@ -636,9 +636,15 @@ class AbstractPickleTests(unittest.TestCase):
def
test_bytes
(
self
):
def
test_bytes
(
self
):
for
proto
in
protocols
:
for
proto
in
protocols
:
for
u
in
b
''
,
b
'xyz'
,
b
'xyz'
*
100
:
for
s
in
b
''
,
b
'xyz'
,
b
'xyz'
*
100
:
p
=
self
.
dumps
(
u
)
p
=
self
.
dumps
(
s
)
self
.
assertEqual
(
self
.
loads
(
p
),
u
)
self
.
assertEqual
(
self
.
loads
(
p
),
s
)
for
s
in
[
bytes
([
i
])
for
i
in
range
(
256
)]:
p
=
self
.
dumps
(
s
)
self
.
assertEqual
(
self
.
loads
(
p
),
s
)
for
s
in
[
bytes
([
i
,
i
])
for
i
in
range
(
256
)]:
p
=
self
.
dumps
(
s
)
self
.
assertEqual
(
self
.
loads
(
p
),
s
)
def
test_ints
(
self
):
def
test_ints
(
self
):
import
sys
import
sys
...
...
Misc/NEWS
Dosyayı görüntüle @
3bfc65a2
...
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
...
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #13505: Pickle bytes objects in a way that is compatible with
Python 2 when using protocols <= 2.
- Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix
- Issue #11147: Fix an unused argument in _Py_ANNOTATE_MEMORY_ORDER. (Fix
given by Campbell Barton).
given by Campbell Barton).
...
...
Modules/_pickle.c
Dosyayı görüntüle @
3bfc65a2
...
@@ -369,7 +369,7 @@ typedef struct UnpicklerObject {
...
@@ -369,7 +369,7 @@ typedef struct UnpicklerObject {
char
*
errors
;
/* Name of errors handling scheme to used when
char
*
errors
;
/* Name of errors handling scheme to used when
decoding strings. The default value is
decoding strings. The default value is
"strict". */
"strict". */
Py_ssize_t
*
marks
;
/* Mark stack, used for unpickling container
Py_ssize_t
*
marks
;
/* Mark stack, used for unpickling container
objects. */
objects. */
Py_ssize_t
num_marks
;
/* Number of marks in the mark stack. */
Py_ssize_t
num_marks
;
/* Number of marks in the mark stack. */
Py_ssize_t
marks_size
;
/* Current allocated size of the mark stack. */
Py_ssize_t
marks_size
;
/* Current allocated size of the mark stack. */
...
@@ -1700,26 +1700,58 @@ save_bytes(PicklerObject *self, PyObject *obj)
...
@@ -1700,26 +1700,58 @@ save_bytes(PicklerObject *self, PyObject *obj)
if
(
self
->
proto
<
3
)
{
if
(
self
->
proto
<
3
)
{
/* Older pickle protocols do not have an opcode for pickling bytes
/* Older pickle protocols do not have an opcode for pickling bytes
objects. Therefore, we need to fake the copy protocol (i.e.,
objects. Therefore, we need to fake the copy protocol (i.e.,
the __reduce__ method) to permit bytes object unpickling. */
the __reduce__ method) to permit bytes object unpickling.
Here we use a hack to be compatible with Python 2. Since in Python
2 'bytes' is just an alias for 'str' (which has different
parameters than the actual bytes object), we use codecs.encode
to create the appropriate 'str' object when unpickled using
Python 2 *and* the appropriate 'bytes' object when unpickled
using Python 3. Again this is a hack and we don't need to do this
with newer protocols. */
static
PyObject
*
codecs_encode
=
NULL
;
PyObject
*
reduce_value
=
NULL
;
PyObject
*
reduce_value
=
NULL
;
PyObject
*
bytelist
=
NULL
;
int
status
;
int
status
;
bytelist
=
PySequence_List
(
obj
);
if
(
codecs_encode
==
NULL
)
{
if
(
bytelist
==
NULL
)
PyObject
*
codecs_module
=
PyImport_ImportModule
(
"codecs"
);
return
-
1
;
if
(
codecs_module
==
NULL
)
{
return
-
1
;
}
codecs_encode
=
PyObject_GetAttrString
(
codecs_module
,
"encode"
);
Py_DECREF
(
codecs_module
);
if
(
codecs_encode
==
NULL
)
{
return
-
1
;
}
}
reduce_value
=
Py_BuildValue
(
"(O(O))"
,
(
PyObject
*
)
&
PyBytes_Type
,
if
(
PyBytes_GET_SIZE
(
obj
)
==
0
)
{
bytelist
);
reduce_value
=
Py_BuildValue
(
"(O())"
,
(
PyObject
*
)
&
PyBytes_Type
);
if
(
reduce_value
==
NULL
)
{
Py_DECREF
(
bytelist
);
return
-
1
;
}
}
else
{
static
PyObject
*
latin1
=
NULL
;
PyObject
*
unicode_str
=
PyUnicode_DecodeLatin1
(
PyBytes_AS_STRING
(
obj
),
PyBytes_GET_SIZE
(
obj
),
"strict"
);
if
(
unicode_str
==
NULL
)
return
-
1
;
if
(
latin1
==
NULL
)
{
latin1
=
PyUnicode_InternFromString
(
"latin1"
);
if
(
latin1
==
NULL
)
return
-
1
;
}
reduce_value
=
Py_BuildValue
(
"(O(OO))"
,
codecs_encode
,
unicode_str
,
latin1
);
Py_DECREF
(
unicode_str
);
}
if
(
reduce_value
==
NULL
)
return
-
1
;
/* save_reduce() will memoize the object automatically. */
/* save_reduce() will memoize the object automatically. */
status
=
save_reduce
(
self
,
reduce_value
,
obj
);
status
=
save_reduce
(
self
,
reduce_value
,
obj
);
Py_DECREF
(
reduce_value
);
Py_DECREF
(
reduce_value
);
Py_DECREF
(
bytelist
);
return
status
;
return
status
;
}
}
else
{
else
{
...
@@ -1727,7 +1759,7 @@ save_bytes(PicklerObject *self, PyObject *obj)
...
@@ -1727,7 +1759,7 @@ save_bytes(PicklerObject *self, PyObject *obj)
char
header
[
5
];
char
header
[
5
];
Py_ssize_t
len
;
Py_ssize_t
len
;
size
=
PyBytes_
Size
(
obj
);
size
=
PyBytes_
GET_SIZE
(
obj
);
if
(
size
<
0
)
if
(
size
<
0
)
return
-
1
;
return
-
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