This is due to how pygame is created.
:
python\Lib\site-packages\pygame\__init__.py
The file contains the following construction:
try: import pygame.cdrom except (ImportError,IOError):cdrom=MissingModule("cdrom", geterror(), 1)
That allows you to skip import. However, this confuses picharm. Uninstall try + except for the pycharm autocompletion fix.
source share