Asterisks in Sphinx Python type signatures are not showing up in the generated doc, but only sometimes:
usb_cdc.c:
//| def enable(*, console: bool = True, data: bool = False) -> None:
//| """Enable or disable each CDC device. Can be called in ``boot.py``, before USB is connected.

But sometimes it shows up:
SPI.c:
//| def configure(self, *, baudrate: int = 100000, polarity: int = 0, phase: int = 0, bits: int = 8) -> None:
//| """Configures the SPI bus. The SPI object must be locked.

Asterisks in Sphinx Python type signatures are not showing up in the generated doc, but only sometimes:
usb_cdc.c:But sometimes it shows up:
SPI.c: