Exa-Networks / exaproxy

Performant Content Modifying Non-Caching Proxy [stable - accepting patches for bug fixes only]
Other
145 stars 36 forks source link

Do not import * in lib.exaproxy.util.interfaces #26

Closed ema closed 10 years ago

ema commented 10 years ago

Wildcard imports should be avoided for many reasons, such as making code checkers like pyflakes work properly.

Also see: https://docs.python.org/2/tutorial/modules.html#importing-from-a-package

thomas-mangin commented 10 years ago

Not really a bug but indeed more in line with PEP8