Lichen

tests/read_file.py

934:2989aab1b4f7
2021-06-29 Paul Boddie Renamed the utf8string class to unicode, eliminating the unicode function. This means that the simple case of merely returning an object if it is already a Unicode object no longer occurs when using the unicode callable, but such behaviour might be better supported with more general customised instantiation functionality.
     1 try:     2     f = open("tests/read_file.py")  # this file!     3 except IOError, exc:     4     print "I/O error occurred:", exc.value     5     raise     6      7 try:     8     s = f.read(5)     9     print s                         # try:    10     s = f.read(49)    11     print s                         #     f = open("tests/read_file.py")   # this file!    12     s = f.readline()    13     print s                         # except IOError, exc:    14     s = f.read()    15     print s    16 finally:    17     f.close()