diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-23 18:36:10 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-23 18:36:10 -0500 |
commit | e11bd3ce73e5d12f6880743d80692a3404bb69b6 (patch) | |
tree | 1bf03b424192cabf2c7172b62ddf1ccd13750b9d /setup.py | |
parent | 3ead7cb4099c8a60f5f71f82cc6e308002c0f4b9 (diff) | |
download | cherrypy-git-e11bd3ce73e5d12f6880743d80692a3404bb69b6.tar.gz |
Move attribute docstring to after the attribute.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -107,7 +107,6 @@ install_requires = [ 'six', ] -"""This section defines feature flags end-users can use in dependencies""" extras_require = { 'doc': [ 'docutils', @@ -130,6 +129,7 @@ extras_require = { # http://docs.cherrypy.org/en/latest/advanced.html?highlight=windows#windows-console-events ':sys_platform == "win32"': ['pypiwin32'], } +"""Feature flags end-users can use in dependencies""" if sys.version_info < (3, 3): extras_require['test_tools'].append( |