Message153659
Any news on this?
Just as a note, pickletools.py also does not reflect the current behaviour; pickle types STRING, BINSTRING and SHORT_BINSTRING are all defined with stack_after=[pystring]:
[1, line 992]
I(name='STRING',
code='S',
arg=stringnl,
stack_before=[],
stack_after=[pystring],
proto=0,
doc=(...)
)
although the doc=... does describe it will be decoded, the object type of pystring is still defined as bytes:
[1, line 747]
pystring = StackObject(
name='string',
obtype=bytes,
doc="A Python (8-bit) string object.")
[1] http://hg.python.org/cpython/file/98df29d51e12/Lib/pickletools.py |
|
Date |
User |
Action |
Args |
2012-02-18 23:37:08 | valhallasw | set | recipients:
+ valhallasw, gvanrossum, loewis, georg.brandl, jcea, ggenellina, pitrou, alexandre.vassalotti, RonnyPfannschmidt, jdharper |
2012-02-18 23:37:08 | valhallasw | set | messageid: <1329608228.22.0.131066835216.issue6784@psf.upfronthosting.co.za> |
2012-02-18 23:37:07 | valhallasw | link | issue6784 messages |
2012-02-18 23:37:07 | valhallasw | create | |
|