Iva*_*nov 8 python pygame pycharm
I've just installed PyCharm Community Edition 3.4.1 and tried to make a simple pygame project in it. I found that code completion runs in a weird way. In this case:
from pygame import event
event.
Run Code Online (Sandbox Code Playgroud)
when I type event. a completion popup with event methods shows immediately. But in the second case:
import pygame
pygame.event.
Run Code Online (Sandbox Code Playgroud)
a popup contains only object methods.
How can I learn the autocomplete tool to look deeper into the library?