##// END OF EJS Templates
store: slice over a bytestring to get characters instead of ascii values...
store: slice over a bytestring to get characters instead of ascii values On Python 2, >>> a = b'abc' >>> a[1] 'b' Whereas on python 3, >>> a = b'abc' >>> a[1] 98 >>> a[1:2] b'b' This does not change behaviour on python 2.

File last commit:

r16438:28a90cdf default
r31219:f8e06821 default
Show More
__init__.py
0 lines | 0 B | text/x-python | PythonLexer