Changeset 1435 for trunk/python
- Timestamp:
- 08/28/08 13:56:32 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/scantable.py
r1402 r1435 39 39 Scantable.__init__(self, filename) 40 40 else: 41 if isinstance(filename, str): 41 if isinstance(filename, str):# or \ 42 # (isinstance(filename, list) or isinstance(filename, tuple)) \ 43 # and isinstance(filename[-1], str): 42 44 import os.path 43 45 filename = os.path.expandvars(filename) … … 1666 1668 1667 1669 def _add_history(self, funcname, parameters): 1670 if not rcParams['scantable.history']: 1671 return 1668 1672 # create date 1669 1673 sep = "##"
Note:
See TracChangeset
for help on using the changeset viewer.