summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-07-07 22:23:22 (GMT)
committerGuido van Rossum <guido@python.org>1998-07-07 22:23:22 (GMT)
commit9f29990a90228cb227933178bd6ec81e8426939f (patch)
tree92cbc9ece1bddf09b03a0a832cd1bd04cb9c052a /Modules
parent04e00a4cf42547058b6b8f9343e77fce6aaad8e2 (diff)
downloadcpython-9f29990a90228cb227933178bd6ec81e8426939f.zip
cpython-9f29990a90228cb227933178bd6ec81e8426939f.tar.gz
cpython-9f29990a90228cb227933178bd6ec81e8426939f.tar.bz2
Fix a benign problem found by a picky SGI compiler (unreachable break
after a return).
Diffstat (limited to 'Modules')
-rw-r--r--Modules/regexpr.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/regexpr.c b/Modules/regexpr.c
index 55b1dff..a45b9e2 100644
--- a/Modules/regexpr.c
+++ b/Modules/regexpr.c
@@ -917,7 +917,6 @@ static int re_optimize_star_jump(bufp, code)
default:
{
return 0;
- break;
}
}
}