Changes between Initial Version and Version 1 of Ticket #28414, comment 20
- Timestamp:
- 08/29/19 12:13:13 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28414, comment 20
initial v1 1 1 beware that you cannot concatenate bytes and str, so everything must become bytes. Not the way to go in my opinion.. moreover, not sure that os.* can handle bytes 2 3 EDIT: 4 5 indeed: 6 {{{ 7 sage: os.path.join('home', b'jojo') 8 ... 9 TypeError: Can't mix strings and bytes in path components 10 }}}