From 5ef89e80a2cde0edf2d4bcbfdc0455f5f3b96667 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 12 Feb 2003 12:35:59 +0000 Subject: [PATCH] Put variables in correct order. --- pep-0308.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pep-0308.txt b/pep-0308.txt index cafc2ea0e..8a97c1d80 100644 --- a/pep-0308.txt +++ b/pep-0308.txt @@ -85,7 +85,7 @@ Alternatives Holger Krekel proposed a new, minimally invasive variant: - and else + and else The concept behind it is that a nearly complete ternary operator already exists with and/or and this proposal is the least invasive @@ -96,7 +96,7 @@ Alternatives Christian Tismer proposed a variant of the same idea: - then else + then else ---