You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/notebooks/Writing Python 2-3 compatible code.ipynb
+5-5
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,9 @@
15
15
"- **Author:** Ed Schofield.\n",
16
16
"- **Licence:** Creative Commons Attribution.\n",
17
17
"\n",
18
-
"A PDF version is here: http://python-future.org/compatible_idioms.pdf\n",
18
+
"A PDF version is here: https://python-future.org/compatible_idioms.pdf\n",
19
19
"\n",
20
-
"This notebook shows you idioms for writing future-proof code that is compatible with both versions of Python: 2 and 3. It accompanies Ed Schofield's talk at PyCon AU 2014, \"Writing 2/3 compatible code\". (The video is here: <http://www.youtube.com/watch?v=KOqk8j11aAI&t=10m14s>.)\n",
20
+
"This notebook shows you idioms for writing future-proof code that is compatible with both versions of Python: 2 and 3. It accompanies Ed Schofield's talk at PyCon AU 2014, \"Writing 2/3 compatible code\". (The video is here: <https://www.youtube.com/watch?v=KOqk8j11aAI&t=10m14s>.)\n",
21
21
"\n",
22
22
"Minimum versions:\n",
23
23
"\n",
@@ -48,7 +48,7 @@
48
48
" futurize # pip install future\n",
49
49
" pasteurize # pip install future\n",
50
50
"\n",
51
-
"See http://python-future.org and https://pythonhosted.org/six/ for more information."
51
+
"See https://python-future.org and https://pythonhosted.org/six/ for more information."
52
52
]
53
53
},
54
54
{
@@ -756,7 +756,7 @@
756
756
"cell_type": "markdown",
757
757
"metadata": {},
758
758
"source": [
759
-
"See http://python-future.org/unicode_literals.html for more discussion on which style to use."
759
+
"See https://python-future.org/unicode_literals.html for more discussion on which style to use."
760
760
]
761
761
},
762
762
{
@@ -2812,7 +2812,7 @@
2812
2812
"cell_type": "markdown",
2813
2813
"metadata": {},
2814
2814
"source": [
2815
-
"``urllib`` is the hardest module to use from Python 2/3 compatible code. You may like to use Requests (http://python-requests.org) instead."
2815
+
"``urllib`` is the hardest module to use from Python 2/3 compatible code. You may like to use Requests (https://python-requests.org) instead."
0 commit comments