From 077a5e8977c8f2aca61866211de5cf873f09f06f 2017-06-22 07:51:46 From: Marc Richter Date: 2017-06-22 07:51:46 Subject: [PATCH] Update tutorial.rst Removed the underscore from ``data = ['Number of users', 123_456]``, since this leads to an syntax error. --- diff --git a/docs/source/interactive/tutorial.rst b/docs/source/interactive/tutorial.rst index 78bd76a..605d8f4 100644 --- a/docs/source/interactive/tutorial.rst +++ b/docs/source/interactive/tutorial.rst @@ -93,7 +93,7 @@ existing objects, but also to infer completion statically without executing code. There is nothing particular need to get this to work, simply use tab completion on more complex expressions like the following:: - >>> data = ['Number of users', 123_456] + >>> data = ['Number of users', 123456] ... data[0]. IPython and Jedi will be able to infer that ``data[0]`` is actually a string