r47088 - improve the new module template
hawkowl-TA+aISz0psMTMxyoc4vAAJOcrHinNvQL0E9HWUfgJXw@public.gmane.org Sat, 26 Mar 2016 10:51:28 -0600 (MDT)
| Newsgroups | gmane.comp.python.twisted.commits |
|---|---|
| Message-ID | <[email protected]> |
Author: hawkowl Date: Sat Mar 26 10:51:24 2016 New Revision: 47088 Modified: branches/codingstandard-twentysixteen-8256/docs/core/development/listings/new_module_template.py Log: improve the new module template Modified: branches/codingstandard-twentysixteen-8256/docs/core/development/listings/new_module_template.py ============================================================================== --- branches/codingstandard-twentysixteen-8256/docs/core/development/listings/new_module_template.py (original) +++ branches/codingstandard-twentysixteen-8256/docs/core/development/listings/new_module_template.py Sat Mar 26 10:51:24 2016 @@ -1,12 +1,12 @@ # -*- test-case-name: <test module> -*- - # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. - """ Docstring goes here. """ +from __future__ import absolute_import, division, print_function + __all__ = []