Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Lib/numbers.py

    r2 r391  
    6464    @abstractproperty
    6565    def imag(self):
    66         """Retrieve the real component of this number.
     66        """Retrieve the imaginary component of this number.
    6767
    6868        This should subclass Real.
     
    304304
    305305    def __index__(self):
    306         """index(self)"""
     306        """Called whenever an index is needed, such as in slicing"""
    307307        return long(self)
    308308
Note: See TracChangeset for help on using the changeset viewer.