Skip to content

Commit d224647

Browse files
committed
Add link to memoryview documentation
1 parent 20dea05 commit d224647

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/examples/Widget List.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@
10541054
"#=> ]\n",
10551055
"```\n",
10561056
"\n",
1057-
"The contents of the file uploaded are in the value of the `content` key. They are a memory view:\n",
1057+
"The contents of the file uploaded are in the value of the `content` key. They are a [memory view](https://docs.python.org/3.8/library/stdtypes.html#memory-views):\n",
10581058
"\n",
10591059
"```python\n",
10601060
"[uploaded_file] = uploader.value\n",
@@ -1069,7 +1069,7 @@
10691069
"#=> b'This is the content of example.txt.\\n'\n",
10701070
"```\n",
10711071
"\n",
1072-
"You can get the contents as a string if the file is a text file (more precisely, if the file can be decoded as UTF-8):\n",
1072+
"If the file is a text file, you can get the contents as a string by decoding it:\n",
10731073
"\n",
10741074
"```python\n",
10751075
"import codecs\n",

0 commit comments

Comments
 (0)