diff -r d755ae8df565 pep-0008.txt --- a/pep-0008.txt Sat May 28 11:32:59 2016 -0700 +++ b/pep-0008.txt Thu Jun 02 17:19:11 2016 -0700 @@ -365,8 +365,6 @@ You should put a blank line between each group of imports. - Put any relevant ``__all__`` specification after the imports. - - Absolute imports are recommended, as they are usually more readable and tend to be better behaved (or at least give better error messages) if the import system is incorrectly configured (such as @@ -415,6 +413,14 @@ public and internal interfaces still apply. +Dunder Variables +---------------- + +All relevant dunder variables (e.g. ``__all__``, ``__author__``, +``__version__``, etc) should be placed after the module docstring and +before any imports, separated by a blank line above and below. + + String Quotes =============