From 04e00a4cf42547058b6b8f9343e77fce6aaad8e2 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 7 Jul 1998 22:22:22 +0000 Subject: Fix benign problems found by a picky SGI compiler (unreachable break after a return or goto). --- Modules/pypcre.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/Modules/pypcre.c b/Modules/pypcre.c index 4e474c5..96baa89 100644 --- a/Modules/pypcre.c +++ b/Modules/pypcre.c @@ -1884,7 +1884,6 @@ for (;; ptr++) report an error. Add more Python-extensions here. */ *errorptr="unknown after (?P"; goto FAILED; - break; case '>': /* "Match once" brackets */ if ((options & PCRE_EXTRA) != 0) /* Not yet standard */ @@ -3392,7 +3391,6 @@ for (;;) ecode=prev+3; goto match_loop; } } - break; /* Start of subject unless notbol, or after internal newline if multiline */ -- cgit v0.12