A list of methods available for use with the pygame.display class.
display.init() - None
Description: Initializes the display module
display.quit() - None
Description: Uninitializes the display module
display.get_init() - bool
Description: Returns True if the display module has been initialized
display.set_mode(size, flags=0, depth=0) - Surface
Description: Creates a display Surface and returns it
display.get_surface() - Surface
Description: Returns the display Surface
display.flip() - None
Description: Updates portions of the screen
display.update(rectangle=None) - None
Description: Updates portions of the screen for software displays
display.Info() - VideoInfo
Description: Create a video display information object
pygame.display is a module that allows you to control the display window and screen