diff options
| author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-11-23 13:50:59 +0000 |
|---|---|---|
| committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-11-23 13:50:59 +0000 |
| commit | a79f3473bb84ee1cc5af6996d1aee81c99d21175 (patch) | |
| tree | 4295ab19a063ca01210c5a32c22ee4e971f9acd1 | |
| parent | 9b7dc359094217dfaf359c43b0d0ded2eba16f88 (diff) | |
| parent | 069dca9c534bf380659da7fc7a1a83476419a2da (diff) | |
| download | python-setuptools-git-a79f3473bb84ee1cc5af6996d1aee81c99d21175.tar.gz | |
Remove unnecessary `coding` comment (#3696)
| -rw-r--r-- | docs/conf.py | 1 | ||||
| -rw-r--r-- | setuptools/command/upload_docs.py | 1 | ||||
| -rw-r--r-- | setuptools/dist.py | 1 | ||||
| -rw-r--r-- | setuptools/tests/script-with-bom.py | 4 | ||||
| -rw-r--r-- | setuptools/tests/test_manifest.py | 1 | ||||
| -rw-r--r-- | setuptools/tests/test_msvc14.py | 1 | ||||
| -rw-r--r-- | setuptools/tests/test_wheel.py | 2 |
7 files changed, 1 insertions, 10 deletions
diff --git a/docs/conf.py b/docs/conf.py index a9c9800a..64c2625f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,5 +1,4 @@ #!/usr/bin/env python3 -# -*- coding: utf-8 -*- extensions = [ 'sphinx.ext.autodoc', diff --git a/setuptools/command/upload_docs.py b/setuptools/command/upload_docs.py index 3263f07f..63eb28c7 100644 --- a/setuptools/command/upload_docs.py +++ b/setuptools/command/upload_docs.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """upload_docs Implements a Distutils 'upload_docs' subcommand (upload documentation to diff --git a/setuptools/dist.py b/setuptools/dist.py index 82423548..624a67f2 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- __all__ = ['Distribution'] import io diff --git a/setuptools/tests/script-with-bom.py b/setuptools/tests/script-with-bom.py index 22dee0d2..93d28f16 100644 --- a/setuptools/tests/script-with-bom.py +++ b/setuptools/tests/script-with-bom.py @@ -1,3 +1 @@ -# -*- coding: utf-8 -*- - -result = 'passed' +result = 'passed' diff --git a/setuptools/tests/test_manifest.py b/setuptools/tests/test_manifest.py index 9301322f..3a973b01 100644 --- a/setuptools/tests/test_manifest.py +++ b/setuptools/tests/test_manifest.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """sdist tests""" import contextlib diff --git a/setuptools/tests/test_msvc14.py b/setuptools/tests/test_msvc14.py index 1aca12dd..271d6be5 100644 --- a/setuptools/tests/test_msvc14.py +++ b/setuptools/tests/test_msvc14.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- """ Tests for msvc support module (msvc14 unit tests). """ diff --git a/setuptools/tests/test_wheel.py b/setuptools/tests/test_wheel.py index 89d65d0b..b2bbdfae 100644 --- a/setuptools/tests/test_wheel.py +++ b/setuptools/tests/test_wheel.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - """wheel tests """ |
