1

I've seen this constuction into Scrapy framework sources: https://github.com/scrapy/scrapy/blob/master/scrapy/exporters.py#L16-L18

Raido
  • 63
  • 2
  • 6

1 Answers1

4

It's defining the modules (items) of a package (module) that get imported when you do:

from package import *
from module import *

See https://docs.python.org/2/tutorial/modules.html#importing-from-a-package for details.

Bernhard
  • 8,583
  • 4
  • 41
  • 42