]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43199: Briefly explain why no goto (GH-24852)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 15 Mar 2021 04:21:36 +0000 (21:21 -0700)
committerGitHub <noreply@github.com>
Mon, 15 Mar 2021 04:21:36 +0000 (21:21 -0700)
Answer "Why is there no goto?" in the Design and History FAQ.
(cherry picked from commit 5e29021a5eb10baa9147fd977cab82fa3f652bf0)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Doc/faq/design.rst
Misc/NEWS.d/next/Documentation/2021-03-13-18-43-54.bpo-43199.ZWA6KX.rst [new file with mode: 0644]

index 8cf271c30240848599e875a5bb79641dd5590553..77c8ca9b6cb05cf48273edb2daa9c1328a197854 100644 (file)
@@ -601,7 +601,15 @@ test cases at all.
 Why is there no goto?
 ---------------------
 
-You can use exceptions to provide a "structured goto" that even works across
+In the 1970s people realized that unrestricted goto could lead
+to messy "sphagetti" code that was hard to understand and revise.
+In a high-level language, it is also unneeded as long as there
+are ways to branch (in Python, with ``if`` statements and ``or``,
+``and``, and ``if-else`` expressions) and loop (with ``while``
+and ``for`` statements, possibly containing ``continue`` and ``break``).
+
+One can also use exceptions to provide a "structured goto"
+that works even across
 function calls.  Many feel that exceptions can conveniently emulate all
 reasonable uses of the "go" or "goto" constructs of C, Fortran, and other
 languages.  For example::
diff --git a/Misc/NEWS.d/next/Documentation/2021-03-13-18-43-54.bpo-43199.ZWA6KX.rst b/Misc/NEWS.d/next/Documentation/2021-03-13-18-43-54.bpo-43199.ZWA6KX.rst
new file mode 100644 (file)
index 0000000..d1b454f
--- /dev/null
@@ -0,0 +1 @@
+Answer "Why is there no goto?" in the Design and History FAQ.