Serhiy Storchaka wrote:
27.04.18 02:12, Greg Ewing пише:

    import display, event, mixer in pygame

I read this as

    import display, event, mixer in pygame
    pygame.display = display
    pygame.event = event
    pygame.mixer = mixer
    del display, event, mixer in pygame

It's meant to be shorthand for

   import pygame.display
   import pygame.event
   import pygame.mixer

--
Greg
_______________________________________________
Python-ideas mailing list
Python-ideas@python.org
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to