Ignore:
Timestamp:
Mar 19, 2014, 11:11:30 AM (11 years ago)
Author:
dmik
Message:

python: Update vendor to 2.7.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/vendor/current/Lib/sndhdr.py

    r2 r388  
    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.