• Alexandre Vassalotti's avatar
    Make C and Python implementations of pickle load STRING opcodes the same way. · 7c5e094c
    Alexandre Vassalotti yazdı
    The C version tried to remove trailing whitespace between the last quote and
    the newline character. I am not sure why it had this because pickle never
    generated such pickles---for this to happen repr(some_string) would need to
    return trailing whitespace. It was maybe there to make it easier for people
    to write pickles in text editors. Anyhow, the Python version doesn't do this
    so there is no point keeping this around anymore.
    
    Also, I've changed the exception raised when a bad pickle is encountered.
    Again this unlikely to make much difference to anyone though it does make
    testing slightly nicer for us.
    7c5e094c
pickle.py 44.5 KB