Ignore:
Timestamp:
04/08/05 15:02:07 (19 years ago)
Author:
mar637
Message:

Fix for asap0002

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Release-1-fixes/python/__init__.py

    r559 r583  
    244244    globs = sys.modules['__main__'].__dict__.iteritems()
    245245    print "The user created scantables are:"
    246     x = map(lambda x: x[0], filter(lambda x: isinstance(x[1], t), globs))
    247     print x
     246    sts = map(lambda x: x[0], filter(lambda x: isinstance(x[1], t), globs))
     247    print filter(lambda x: not x.startswith('_'), sts)
    248248
    249249def commands():
Note: See TracChangeset for help on using the changeset viewer.