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/sndhdr.py

    r2 r391  
    101101        sample_bits = '?'
    102102    frame_size = sample_size * nchannels
    103     return type, rate, nchannels, data_size/frame_size, sample_bits
     103    return type, rate, nchannels, data_size//frame_size, sample_bits
    104104
    105105tests.append(test_au)
     
    110110        return None
    111111    divisor = get_long_be(h[128+16:128+20])
    112     return 'hcom', 22050/divisor, 1, -1, 8
     112    return 'hcom', 22050//divisor, 1, -1, 8
    113113
    114114tests.append(test_hcom)
Note: See TracChangeset for help on using the changeset viewer.