Remove encoding cookie from Python source files

Unnecessary since dropping Python 2. Python now decodes files as utf-8
by default.
This commit is contained in:
Jon Dufresne 2020-12-24 09:35:33 -08:00
parent 2e38024991
commit ba40f58ecc
8 changed files with 0 additions and 14 deletions

View File

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
#
# pip documentation build configuration file, created by # pip documentation build configuration file, created by
# sphinx-quickstart on Tue Apr 22 22:08:49 2008 # sphinx-quickstart on Tue Apr 22 22:08:49 2008
# #

View File

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
import logging import logging
import os import os
import shutil import shutil

View File

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
import csv import csv
import distutils import distutils
import glob import glob

View File

@ -1,5 +1,4 @@
# flake8: noqa # flake8: noqa
# -*- coding: utf-8 -*-
# Author: Aziz Köksal # Author: Aziz Köksal
import glob import glob
import os import os

View File

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
import locale import locale
import os import os
import sys import sys

View File

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
""" """
util tests util tests

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import locale import locale
import sys import sys
from logging import DEBUG, ERROR, INFO, WARNING from logging import DEBUG, ERROR, INFO, WARNING

View File

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
"""Tests for wheel binary packages and .dist-info.""" """Tests for wheel binary packages and .dist-info."""
import csv import csv
import logging import logging