]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
marshal docs: Remove reference to "Sun" (#119161)
authorJelle Zijlstra <jelle.zijlstra@gmail.com>
Sun, 19 May 2024 02:15:14 +0000 (22:15 -0400)
committerGitHub <noreply@github.com>
Sun, 19 May 2024 02:15:14 +0000 (22:15 -0400)
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.

Doc/library/marshal.rst

index c8f1d57317ea680b67728ebc0fead5e5f5d421d2..f9ba4d554b0c22d740a07b9c0e5f5d8d0bf39ccf 100644 (file)
@@ -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). [#]_