eval the expression vs [un]defined

This commit is contained in:
sommersoft 2019-08-29 22:09:45 -05:00
parent 750ffcc81a
commit e618441e18

View File

@ -33,12 +33,12 @@
#include "shared-bindings/audioio/__init__.h" #include "shared-bindings/audioio/__init__.h"
#include "shared-bindings/audioio/AudioOut.h" #include "shared-bindings/audioio/AudioOut.h"
#ifdef CIRCUITPY_AUDIOIO_COMPAT #if CIRCUITPY_AUDIOIO_COMPAT
#include "shared-bindings/audiomixer/Mixer.h" #include "shared-bindings/audiomixer/Mixer.h"
#include "shared-bindings/audiocore/RawSample.h" #include "shared-bindings/audiocore/RawSample.h"
#include "shared-bindings/audiocore/WaveFile.h" #include "shared-bindings/audiocore/WaveFile.h"
#endif #endif
#ifdef CIRCUIPY_AUDIOMIXER #if CIRCUITPY_AUDIOMIXER
#include "shared-bindings/audiomixer/Mixer.h" #include "shared-bindings/audiomixer/Mixer.h"
#endif #endif
@ -63,8 +63,8 @@
//| call :py:meth:`!deinit` or use a context manager. See //| call :py:meth:`!deinit` or use a context manager. See
//| :ref:`lifetime-and-contextmanagers` for more info. //| :ref:`lifetime-and-contextmanagers` for more info.
//| //|
//| Since CircuitPython 5, `Mixer`, `RawSample` and `WaveFile` are moved //| Since CircuitPython 5, `RawSample` and `WaveFile` are moved
//| to :mod:`audiocore`. //| to :mod:`audiocore`, and `Mixer` is moved to :mod:`audiomixer`.
//| //|
//| For compatibility with CircuitPython 4.x, some builds allow the items in //| For compatibility with CircuitPython 4.x, some builds allow the items in
//| `audiocore` to be imported from `audioio`. This will be removed for all //| `audiocore` to be imported from `audioio`. This will be removed for all