diff --git a/tests/circuitpython-manual/synthio/wave/audioop.py b/tests/circuitpython-manual/synthio/wave/audioop.py index 6ec637a3a1..cab2fb4a7a 100644 --- a/tests/circuitpython-manual/synthio/wave/audioop.py +++ b/tests/circuitpython-manual/synthio/wave/audioop.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2023 Guido van Rossum and others. +# +# SPDX-License-Identifier: PSF-2.0 + import struct diff --git a/tests/circuitpython-manual/synthio/wave/chunk.py b/tests/circuitpython-manual/synthio/wave/chunk.py index eea83c42d6..c1e6364b0f 100644 --- a/tests/circuitpython-manual/synthio/wave/chunk.py +++ b/tests/circuitpython-manual/synthio/wave/chunk.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2023 Guido van Rossum and others. +# +# SPDX-License-Identifier: PSF-2.0 + """Simple class to read IFF chunks. An IFF chunk (used in formats such as AIFF, TIFF, RMFF (RealMedia File diff --git a/tests/circuitpython-manual/synthio/wave/wave.py b/tests/circuitpython-manual/synthio/wave/wave.py index 903295a4ba..dc6d5407a7 100644 --- a/tests/circuitpython-manual/synthio/wave/wave.py +++ b/tests/circuitpython-manual/synthio/wave/wave.py @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2023 Guido van Rossum and others. +# +# SPDX-License-Identifier: PSF-2.0 + """Stuff to parse WAVE files. Usage.