summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2024-05-19 02:15:14 (GMT)
committerGitHub <noreply@github.com>2024-05-19 02:15:14 (GMT)
commit697465ff88e49d98443025474e5b534adfba2cb0 (patch)
treead5aa3c79918094b7e29187aa912a4f193e795a2 /Doc
parentba8af848648d3eb51eb17395e12117007bae8606 (diff)
downloadcpython-697465ff88e49d98443025474e5b534adfba2cb0.zip
cpython-697465ff88e49d98443025474e5b534adfba2cb0.tar.gz
cpython-697465ff88e49d98443025474e5b534adfba2cb0.tar.bz2
marshal docs: Remove reference to "Sun" (#119161)
Nobody has been using a Sun machine for a long time. When I saw this sentence in a lightning talk just now, I thought it was talking about sending Python code on a spacecraft.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/marshal.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/marshal.rst b/Doc/library/marshal.rst
index c8f1d57..f9ba4d5 100644
--- a/Doc/library/marshal.rst
+++ b/Doc/library/marshal.rst
@@ -10,7 +10,7 @@
This module contains functions that can read and write Python values in a binary
format. The format is specific to Python, but independent of machine
architecture issues (e.g., you can write a Python value to a file on a PC,
-transport the file to a Sun, and read it back there). Details of the format are
+transport the file to a Mac, and read it back there). Details of the format are
undocumented on purpose; it may change between Python versions (although it
rarely does). [#]_