12 lines
227 B
Python
12 lines
227 B
Python
# SPDX-FileCopyrightText: 2023 Guido van Rossum <guido@cwi.nl> and others.
|
|
#
|
|
# SPDX-License-Identifier: PSF-2.0
|
|
|
|
import struct
|
|
|
|
|
|
def byteswap(data, sampwidth):
|
|
print(data)
|
|
raise
|
|
ch = "I" if sampwidth == 16 else "H"
|