Skip to content

Commit 67ad5a1

Browse files
committed
Merge remote-tracking branch 'origin/master' into 5798-json-logging
2 parents 6a883e0 + 158cc00 commit 67ad5a1

30 files changed

+3
-46
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ before_install:
2424
- nvm use 6.9.2
2525
- node --version
2626
- npm --version
27-
- npm upgrade -g npm
27+
- npm install -g npm
2828
- npm install
2929
- |
3030
if [[ $GROUP == js* ]]; then

docs/source/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/env python3
2-
# -*- coding: utf-8 -*-
32
#
43
# Jupyter Notebook documentation build configuration file, created by
54
# sphinx-quickstart on Mon Apr 13 09:51:11 2015.

docs/source/examples/Notebook/What is the Jupyter Notebook.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
"cell_type": "markdown",
136136
"metadata": {},
137137
"source": [
138-
"When you run the notebook web application on your computer, notebook documents are just **files on your local filesystem with a `.ipynb` extension**. This allows you to use familiar workflows for organizing your notebooks into folders and sharing them with others."
138+
"When you run the notebook web application on your computer, notebook documents are just **files on your local filesystem with a** `.ipynb` **extension**. This allows you to use familiar workflows for organizing your notebooks into folders and sharing them with others."
139139
]
140140
},
141141
{
@@ -148,7 +148,7 @@
148148
"* **Markdown cells:** Narrative text with embedded LaTeX equations\n",
149149
"* **Raw cells:** Unformatted text that is included, without modification, when notebooks are converted to different formats using nbconvert\n",
150150
"\n",
151-
"Internally, notebook documents are **[JSON](https://en.wikipedia.org/wiki/JSON) data** with **binary values [base64](https://en.wikipedia.org/wiki/Base64)** encoded. This allows them to be **read and manipulated programmatically** by any programming language. Because JSON is a text format, notebook documents are version control friendly.\n",
151+
"Internally, notebook documents are [JSON](https://en.wikipedia.org/wiki/JSON) **data** with **binary values** [base64](https://en.wikipedia.org/wiki/Base64) encoded. This allows them to be **read and manipulated programmatically** by any programming language. Because JSON is a text format, notebook documents are version control friendly.\n",
152152
"\n",
153153
"**Notebooks can be exported** to different static formats including HTML, reStructeredText, LaTeX, PDF, and slide shows ([reveal.js](https://revealjs.com)) using Jupyter's `nbconvert` utility.\n",
154154
"\n",

notebook/__main__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from __future__ import absolute_import
21

32
if __name__ == '__main__':
43
from notebook import notebookapp as app

notebook/_sysinfo.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
# encoding: utf-8
21
"""
32
Utilities for getting information about Jupyter and the system it's running in.
43
"""
54

65
# Copyright (c) Jupyter Development Team.
76
# Distributed under the terms of the Modified BSD License.
87

9-
from __future__ import absolute_import
10-
118
import os
129
import platform
1310
import pprint

notebook/_tz.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# encoding: utf-8
21
"""
32
Timezone utilities
43

notebook/auth/tests/test_security.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
from ..security import passwd, passwd_check
32
import nose.tools as nt
43

notebook/base/zmqhandlers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
"""Tornado handlers for WebSocket <-> ZMQ sockets."""
32

43
# Copyright (c) Jupyter Development Team.

notebook/config_manager.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# coding: utf-8
21
"""Manager to read and modify config data in JSON files."""
32

43
# Copyright (c) Jupyter Development Team.

notebook/edit/handlers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#encoding: utf-8
21
"""Tornado handlers for the terminal emulator."""
32

43
# Copyright (c) Jupyter Development Team.

0 commit comments

Comments
 (0)