If you try to detect the encoding in some files, it will stuck in infinity loop. e.g.: ``` import chardet f = open("/initrd.img","rb") b = f.read() f.close() chardet.detect(b) ```