From 8b6a137ed9dec5c494ee53676c02d8c6a2a5146d Mon Sep 17 00:00:00 2001 From: rasbt Date: Sun, 15 Jun 2014 23:26:19 -0400 Subject: [PATCH] contain method --- tutorials/key_differences_between_python_2_and_3.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/key_differences_between_python_2_and_3.ipynb b/tutorials/key_differences_between_python_2_and_3.ipynb index a1afba9..c830a92 100644 --- a/tutorials/key_differences_between_python_2_and_3.ipynb +++ b/tutorials/key_differences_between_python_2_and_3.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:a91d66ae5e233f325b262961102505a8bdaee3ad1a251f061dee9cd68c0aaeac" + "signature": "sha256:6381ed57a43484d7eb056ed84635101d586f95e11bbc8904b58f8d2c3c5693c3" }, "nbformat": 3, "nbformat_minor": 0, @@ -900,7 +900,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Another thing worth mentioning is that `range` got a \"new\" `__contains__` method in Python 3.x (thanks to [yegle](), who pointed this out). The `__contains__` method can speedup \"look-ups\" in Python 3.x `range` significantly for integer and bolean types.\n" + "Another thing worth mentioning is that `range` got a \"new\" `__contains__` method in Python 3.x (thanks to [Yuchen Ying](https://github.com/yegle), who pointed this out). The `__contains__` method can speedup \"look-ups\" in Python 3.x `range` significantly for integer and bolean types.\n" ] }, {