2016-12-07 | Paul Boddie | raw annotate files changeset graph | Added support for reading to the end of a stream's input, fixing EOFError raising in fread by returning shorter amounts of data when EOF occurs, only raising an exception if no data was read before EOF occurred. Made the test input longer to exercise tests of reading remaining data. |
1 import operator 2 3 class C: 4 pass 5 6 c = C() 7 print c.__name__ # __main__.C 8 print C.__name__ # __main__.C 9 10 # If it were defined, operator.__name__ would be __builtins__.core.module. 11 12 print operator.__mname__ 13 14 # If it were defined, operator.add.__name__ would be __builtins__.core.function. 15 16 print operator.add.__fname__