I am running Python 3.5.0b1 (64 bit). When I am trying to compile a source, I get an exception. When importing pygame
ImportError: dynamic module does not define module export function (PyInit_.base)
The exception is raised when init.py reaches this line
from pygame.base import *
which does not like Python 3.5 syntax.
My question is whether there is a way to fix this error without manually adjusting the imports.