Changeset 815
- Timestamp:
- 02/05/08 09:32:55 (1 year ago)
- Files:
-
- trunk/lib/gki.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/gki.py
r808 r815 1045 1045 """A graphics kernel whose only responsibility is to redirect 1046 1046 metacode to a file-like object. Currently doesn't handle WCS 1047 get or set commands. Unclear how important this is.1047 get or set commands. 1048 1048 1049 1049 (This is needed for situations when you append to a graphics … … 1051 1051 1052 1052 def __init__(self, filehandle): 1053 self.createFunctionTables()1054 1053 # Differs from all other constructors in that it takes a 1055 1054 # file-like object as an argument. 1055 GkiKernel.__init__(self) 1056 1056 self.filehandle = filehandle 1057 1057 self.wcs = None 1058 self.returnData = None1059 1058 1060 1059 def append(self, metacode):
