27.04.18 02:12, Greg Ewing пише:
Chris Angelico wrote:
+0 for an easier way to import multiple submodules at once. It's not
something I've personally had a need for, but it's a sane and logical
thing to do.

Maybe:

    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

_______________________________________________
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