descriptor ‘seek’ for ‘_io.BytesIO’ objects doesn’t apply to a ‘int’ object

이 에러는 Python2나 구버전의 Python에서 StringsIo를 truncate할 때 발생하는 오류입니다.

b = io.BytesIO()
b.truncate(0)

BytesIO와 StringsIo는 구버전에서는 포지셔 이동없이 truncate가 가능했습니다.

하지만 최신 버전에는 해줘야 합니다.

b = io.BytesIO()
b.seek(0)
b.truncate(0)
Author: 떰학

답글 남기기