Message10465
The documentation fix for bug 463330, describing the
newline added by base64.encode and base64.encodestring
appears to be incorrect!
The "courtesy newline" is appended to the result, not
the input (at line 466 of binsacii.c), so it is *not*
true that
base64.encodestring('hello') ==
base64.encodestring('hello\n')
In fact:
base64.encodestring('hello') == 'aGVsbG8=\n'
base64.encodestring('hello\n') == 'aGVsbG8K\n'
This applies to documentation for 2.2 and 2.2.1, and
actual behaviour has been checked in 2.2 |
|
Date |
User |
Action |
Args |
2007-08-23 14:00:49 | admin | link | issue547037 messages |
2007-08-23 14:00:49 | admin | create | |
|