mirror of
https://github.com/jupyter/notebook.git
synced 2025-04-12 14:00:27 +08:00
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:
parent
2ba296039a
commit
9dd2af27de
@ -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.
|
||||
|
@ -1,4 +1,3 @@
|
||||
# encoding: utf-8
|
||||
"""
|
||||
Utilities for getting information about Jupyter and the system it's running in.
|
||||
"""
|
||||
|
@ -1,4 +1,3 @@
|
||||
# encoding: utf-8
|
||||
"""
|
||||
Timezone utilities
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
from ..security import passwd, passwd_check
|
||||
import nose.tools as nt
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""Tornado handlers for WebSocket <-> ZMQ sockets."""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""Manager to read and modify config data in JSON files."""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
|
@ -1,4 +1,3 @@
|
||||
#encoding: utf-8
|
||||
"""Tornado handlers for the terminal emulator."""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""Utilities for installing extensions"""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
|
@ -1,4 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""Notebook Javascript Test Controller
|
||||
|
||||
This module runs one or more subprocesses which will actually run the Javascript
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
import io
|
||||
import json
|
||||
import os
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""Utilities for installing Javascript extensions for the notebook"""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""A tornado based Jupyter notebook server."""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""Utilities for installing server extensions for the notebook"""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""Test the config webservice API."""
|
||||
|
||||
import json
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""Test the contents webservice API."""
|
||||
|
||||
from contextlib import contextmanager
|
||||
|
@ -1,4 +1,3 @@
|
||||
# encoding: utf-8
|
||||
"""Tests for file IO"""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""Tests for the notebook manager."""
|
||||
from __future__ import print_function
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""Test the kernel specs webservice API."""
|
||||
|
||||
import errno
|
||||
|
@ -1,4 +1,3 @@
|
||||
#encoding: utf-8
|
||||
"""Tornado handlers for the terminal emulator."""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""Test the /files/ handler."""
|
||||
|
||||
import io
|
||||
|
@ -1,4 +1,3 @@
|
||||
# coding: utf-8
|
||||
"""Test installation of notebook extensions"""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
|
@ -1,4 +1,3 @@
|
||||
#encoding: utf-8
|
||||
"""Tornado handlers for viewing HTML files."""
|
||||
|
||||
# Copyright (c) Jupyter Development Team.
|
||||
|
1
setup.py
1
setup.py
@ -1,5 +1,4 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
"""Setup script for Jupyter Notebook"""
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
|
@ -1,4 +1,3 @@
|
||||
# encoding: utf-8
|
||||
"""
|
||||
This module defines the things that are used in setup.py for building the notebook
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user