diff options
author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2022-11-20 19:40:56 +0100 |
---|---|---|
committer | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2022-11-20 19:47:01 +0100 |
commit | 069dca9c534bf380659da7fc7a1a83476419a2da (patch) | |
tree | a031414044ff0d0fd1e5c8a7f0198bdc446b2e2c /setuptools/command | |
parent | 59ee4980a0f49ea610e26a1aca104334ae03d140 (diff) | |
download | python-setuptools-git-069dca9c534bf380659da7fc7a1a83476419a2da.tar.gz |
The default encoding of Python sources is UTF-8
Python 3 assumes the encoding is UTF-8 by default, and so do or should
do tools such as text editors when opening Python files.
No need to explicitly set `*- coding: utf-8 -*-`.
Diffstat (limited to 'setuptools/command')
-rw-r--r-- | setuptools/command/upload_docs.py | 1 |
1 files changed, 0 insertions, 1 deletions
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 |