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
# sphinx-quickstart on Tue Apr 22 22:08:49 2008
#

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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