New submission from Ultrasick <pyt...@ontheserver.de>: -------------------------------------------------------- # open the file file = open('F:/test.bmp', 'r')
# read the content content = file.read() # close the file file.close() print "len(content): " + str(len(content)) -------------------------------------------------------- Returns len(content): 1522 on my computer. But it should be something like len(content): 1248858 ---------- components: Interpreter Core files: test.bmp messages: 84098 nosy: Ultrasick severity: normal status: open title: file.read() doesn't read the whole file type: behavior versions: Python 2.6 Added file: http://bugs.python.org/file13407/test.bmp _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue5554> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com