Home | Trees | Indices | Help |
---|
|
1 ######################################################################## 2 # 3 # File: result_reader.py 4 # Author: Nathaniel Smith 5 # Date: 2003-06-23 6 # 7 # Contents: 8 # QMTest ResultReader class. 9 # 10 # Copyright (c) 2003 by CodeSourcery, LLC. All rights reserved. 11 # 12 # For license terms see the file COPYING. 13 # 14 ######################################################################## 15 16 ######################################################################## 17 # Imports 18 ######################################################################## 19 20 import qm.extension 21 22 ######################################################################## 23 # Classes 24 ######################################################################## 2527 """A 'ResultReader' provides access to stored test results. 28 29 For instance, a 'ResultReader' may load 'Result's from a pickle 30 file or an XML file. 31 32 This is an abstract class. 33 34 See also 'ResultStream'.""" 35 36 kind = "result_reader" 37 42 4364 65 ######################################################################## 66 # Local Variables: 67 # mode: python 68 # indent-tabs-mode: nil 69 # fill-column: 72 70 # End: 7145 """Return this run's dictionary of annotations.""" 46 47 # For backwards compatibility, don't raise an exception. 48 return {}49 5052 """Return the next 'Result' from this reader. 53 54 returns -- A 'Result', or 'None' if there are no more results. 55 """ 56 57 raise NotImplementedError58 59
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Dec 23 12:30:47 2011 | http://epydoc.sourceforge.net |