Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions content/getting-started/pythontutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,7 @@ of your chosen type using the protocol buffer
include:

- `SerializeToString()`: serializes the message and returns it as a string.
Note that the bytes are binary, not text; we only use the `str` type as a
convenient container.
Note that the return value is `bytes` (binary), not `str` (text).
- `ParseFromString(data)`: parses a message from the given string.

These are just a couple of the options provided for parsing and serialization.
Expand Down