summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-05-19 02:22:10 (GMT)
committerGitHub <noreply@github.com>2024-05-19 02:22:10 (GMT)
commit30c687cdf8f7073302e92b2b125553d518a94eac (patch)
tree6dbbfc4c3f621660b3b8d4fa0475295649660870
parentd76d95eacb8ac17e09a3f620db6e844d5ec17ec0 (diff)
downloadcpython-30c687cdf8f7073302e92b2b125553d518a94eac.zip
cpython-30c687cdf8f7073302e92b2b125553d518a94eac.tar.gz
cpython-30c687cdf8f7073302e92b2b125553d518a94eac.tar.bz2
[3.12] marshal docs: Remove reference to "Sun" (GH-119161) (#119168)
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. (cherry picked from commit 697465ff88e49d98443025474e5b534adfba2cb0) Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
-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 e82782b..ce549b7 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). [#]_