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/source/examples/Widget List.ipynb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1054,7 +1054,7 @@
1054
1054
"#=> ]\n",
1055
1055
"```\n",
1056
1056
"\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",
1058
1058
"\n",
1059
1059
"```python\n",
1060
1060
"[uploaded_file] = uploader.value\n",
@@ -1069,7 +1069,7 @@
1069
1069
"#=> b'This is the content of example.txt.\\n'\n",
1070
1070
"```\n",
1071
1071
"\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",
0 commit comments