Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The default encoding of Python sources is UTF-8 #3696

Merged
merged 1 commit into from Nov 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/conf.py
@@ -1,5 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

extensions = [
'sphinx.ext.autodoc',
Expand Down
1 change: 0 additions & 1 deletion setuptools/command/upload_docs.py
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""upload_docs
Implements a Distutils 'upload_docs' subcommand (upload documentation to
Expand Down
1 change: 0 additions & 1 deletion setuptools/dist.py
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
__all__ = ['Distribution']

import io
Expand Down
4 changes: 1 addition & 3 deletions setuptools/tests/script-with-bom.py
@@ -1,3 +1 @@
# -*- coding: utf-8 -*-

result = 'passed'
result = 'passed'
1 change: 0 additions & 1 deletion setuptools/tests/test_manifest.py
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""sdist tests"""

import contextlib
Expand Down
1 change: 0 additions & 1 deletion setuptools/tests/test_msvc14.py
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""
Tests for msvc support module (msvc14 unit tests).
"""
Expand Down
2 changes: 0 additions & 2 deletions setuptools/tests/test_wheel.py
@@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-

"""wheel tests
"""

Expand Down