We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc5ac4a commit 4974b6dCopy full SHA for 4974b6d
py/string.go
@@ -1,4 +1,10 @@
1
// String objects
2
+//
3
+// Note that string objects in Python are arrays of unicode
4
+// characters. However we are using the native Go string which is
5
+// UTF-8 encoded. This makes very little difference most of the time,
6
+// but care is needed when indexing, slicing or iterating through
7
+// strings.
8
9
package py
10
0 commit comments