Changeset 1936 for branches


Ignore:
Timestamp:
09/21/10 18:36:41 (14 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Just restored previous bug fixes that were lost for some reason.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/asap4casa3.1.0/python/scantable.py

    r1931 r1936  
    377377
    378378    def set_spectrum(self, spec, rowno):
    379         """Return the spectrum for the current row in the scantable as a list.
     379        """Set the spectrum for the current row in the scantable.
    380380
    381381        Parameters:
     
    738738        """\
    739739        Get a list of time stamps for the observations.
    740         Return a datetime object for each integration time stamp in the scantable.
     740        Return a datetime object or a string (default) for each
     741        integration time stamp in the scantable.
    741742
    742743        Parameters:
     
    12841285        """\
    12851286        Set or replace the restfrequency specified and
    1286         If the 'freqs' argument holds a scalar,
     1287        if the 'freqs' argument holds a scalar,
    12871288        then that rest frequency will be applied to all the selected
    12881289        data.  If the 'freqs' argument holds
     
    14341435                out += "Function: %s\n  Parameters:" % (func)
    14351436                for i in items:
     1437                    if i == '':
     1438                        continue
    14361439                    s = i.split("=")
    14371440                    out += "\n   %s = %s" % (s[0], s[1])
     
    23062309        """\
    23072310
    2308         Return a scan where all spectra are scaled by the give 'factor'
     2311        Return a scan where all spectra are scaled by the given 'factor'
    23092312
    23102313        Parameters:
Note: See TracChangeset for help on using the changeset viewer.