CLN : Remove utf8 coding cookies

On Python 3, the default source file encoding for Python files is utf-8
and because Python 2 is no longer supported, the utf8 coding cookies can
be removed
This commit is contained in:
Sai Rahul Poruri 2020-10-10 15:30:06 +01:00
parent 2ba296039a
commit 9dd2af27de
24 changed files with 0 additions and 24 deletions

View File

@ -1,5 +1,4 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Jupyter Notebook documentation build configuration file, created by
# sphinx-quickstart on Mon Apr 13 09:51:11 2015.

View File

@ -1,4 +1,3 @@
# encoding: utf-8
"""
Utilities for getting information about Jupyter and the system it's running in.
"""

View File

@ -1,4 +1,3 @@
# encoding: utf-8
"""
Timezone utilities

View File

@ -1,4 +1,3 @@
# coding: utf-8
from ..security import passwd, passwd_check
import nose.tools as nt

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""Tornado handlers for WebSocket <-> ZMQ sockets."""
# Copyright (c) Jupyter Development Team.

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""Manager to read and modify config data in JSON files."""
# Copyright (c) Jupyter Development Team.

View File

@ -1,4 +1,3 @@
#encoding: utf-8
"""Tornado handlers for the terminal emulator."""
# Copyright (c) Jupyter Development Team.

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""Utilities for installing extensions"""
# Copyright (c) Jupyter Development Team.

View File

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""Notebook Javascript Test Controller
This module runs one or more subprocesses which will actually run the Javascript

View File

@ -1,4 +1,3 @@
# coding: utf-8
import io
import json
import os

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""Utilities for installing Javascript extensions for the notebook"""
# Copyright (c) Jupyter Development Team.

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""A tornado based Jupyter notebook server."""
# Copyright (c) Jupyter Development Team.

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""Utilities for installing server extensions for the notebook"""
# Copyright (c) Jupyter Development Team.

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""Test the config webservice API."""
import json

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""Test the contents webservice API."""
from contextlib import contextmanager

View File

@ -1,4 +1,3 @@
# encoding: utf-8
"""Tests for file IO"""
# Copyright (c) Jupyter Development Team.

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""Tests for the notebook manager."""
from __future__ import print_function

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""Test the kernel specs webservice API."""
import errno

View File

@ -1,4 +1,3 @@
#encoding: utf-8
"""Tornado handlers for the terminal emulator."""
# Copyright (c) Jupyter Development Team.

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""Test the /files/ handler."""
import io

View File

@ -1,4 +1,3 @@
# coding: utf-8
"""Test installation of notebook extensions"""
# Copyright (c) Jupyter Development Team.

View File

@ -1,4 +1,3 @@
#encoding: utf-8
"""Tornado handlers for viewing HTML files."""
# Copyright (c) Jupyter Development Team.

View File

@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for Jupyter Notebook"""
#-----------------------------------------------------------------------------

View File

@ -1,4 +1,3 @@
# encoding: utf-8
"""
This module defines the things that are used in setup.py for building the notebook