8000 table of contents · ilovejs/python_reference@5985186 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 5985186

Browse files
committed
table of contents
1 parent d490411 commit 5985186

File tree

1 file changed

+79
-1
lines changed

1 file changed

+79
-1
lines changed

tutorials/running_cython.ipynb

Lines changed: 79 additions & 1 deletion
10000
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"name": "",
4-
"signature": "sha256:962f383af4f0226cdba8618e9034a3fda76689d31a32d165b2f89a6dc7ab7389"
4+
"signature": "sha256:c53d1aaf41825ecf8aae8e9e7691d07f984de379cd765b3cabd973cfb29cc420"
55
},
66
"nbformat": 3,
77
"nbformat_minor": 0,
@@ -104,6 +104,42 @@
104104
"<br>"
105105
]
106106
},
107+
{
108+
"cell_type": "heading",
109+
"level": 1,
110+
"metadata": {},
111+
"source": [
112+
"Sections"
113+
]
114+
},
115+
{
116+
"cell_type": "markdown",
117+
"metadata": {},
118+
"source": [
119+
"- [Bubblesort in regular (C)Python](#bubblesort-cpython)\n",
120+
"- [Bubblesort implemented in Cython](#Bubblesort-implemented-in-Cython)\n",
121+
" - [Naive Cython implementation - auto-guessing types](#Naive-Cython-implementation---auto-guessing-types)\n",
122+
" - [Cython with explicit type-declarations](#Cython-with-explicit-type-declarations)\n",
123+
"- [Speed comparison](#Speed-comparison)\n",
124+
"- [How to use Cython without the IPython magic](#How-to-use-Cython-without-the-IPython-magic)"
125+
]
126+
},
127+
{
128+
"cell_type": "markdown",
129+
"metadata": {},
130+
"source": [
131+
"<a name=\"introduction\"></a>\n",
132+
"<br>\n",
133+
"<br>"
134+
]
135+
},
136+
{
137+
"cell_type": "markdown",
138+
"metadata": {},
139+
"source": [
140+
"<a id='bubblesort-cpython'></a>"
141+
]
142+
},
107143
{
108144
"cell_type": "heading",
109145
"level": 2,
@@ -112,6 +148,13 @@
112148
"Bubblesort in regular (C)Python"
113149
]
114150
},
151+
{
152+
"cell_type": "markdown",
153+
"metadata": {},
154+
"source": [
155+
"[[back to top](#Sections)]"
156+
]
157+
},
115158
{
116159
"cell_type": "markdown",
117160
"metadata": {},
@@ -179,6 +222,13 @@
179222
"Bubblesort implemented in Cython"
180223
]
181224
},
225+
{
226+
"cell_type": "markdown",
227+
"metadata": {},
228+
"source": [
229+
"[[back to top](#Sections)]"
230+
]
231+
},
182232
{
183233
"cell_type": "markdown",
184234
"metadata": {},
@@ -213,6 +263,13 @@
213263
"Naive Cython implementation - auto-guessing types"
214264
]
215265
},
266+
{
267+
"cell_type": "markdown",
268+
"metadata": {},
269+
"source": [
270+
"[[back to top](#Sections)]"
271+
]
272+
},
216273
{
217274
"cell_type": "code",
218275
"collapsed": false,
@@ -246,6 +303,13 @@
246303
"Cython with explicit type-declarations"
247304
]
248305
},
306+
{
307+
"cell_type": "markdown",
308+
"metadata": {},
309+
"source": [
310+
"[[back to top](#Sections)]"
311+
]
312+
},
249313
{
250314
"cell_type": "code",
251315
"collapsed": false,
@@ -294,6 +358,13 @@
294358
"Speed comparison"
295359
]
296360
},
361+
{
362+
"cell_type": "markdown",
363+
"metadata": {},
364+
"source": [
365+
"[[back to top](#Sections)]"
366+
]
367+
},
297368
{
298369
"cell_type": "markdown",
299370
"metadata": {},
@@ -838,6 +909,13 @@
838909
"Speed comparison"
839910
]
840911
},
912+
{
913+
"cell_type": "markdown",
914+
"metadata": {},
915+
"source": [
916+
"[[back to top](#Sections)]"
917+
]
918+
},
841919
{
842920
"cell_type": "code",
843921
"collapsed": false,

0 commit comments

Comments
 (0)
0