(file)
| 150 | _AIFC_version = 0xA2805140 # Version 1 of AIFF-C |
| 151 | |
| 152 | def _read_long(file): |
| 153 | try: |
| 154 | return struct.unpack('>l', file.read(4))[0] |
| 155 | except struct.error: |
| 156 | raise EOFError from None |
| 157 | |
| 158 | def _read_ulong(file): |
| 159 | try: |
no test coverage detected