This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dbodin
Recipients dbodin
Date 2008-03-15.16:41:08
SpamBayes Score 0.11519491
Marked as misclassified No
Message-id <1205599269.05.0.609261957531.issue2293@psf.upfronthosting.co.za>
In-reply-to
Content
I am not the code :

if toto == 1:
   ...
elsif toto == 2:
      ...
     elsif

In ADA for example :

      case C is	                                   --  4 Start a case
statement
         when Red => Result := 1;
         when Blue =>Result := 2;
         when Black .. Brown => Result := 3;
         when Orange | Indigo => Result := 4;
         when  others => Result := 5;required for unspecified cases.
      end case;	

Is it not better?
History
Date User Action Args
2008-03-15 16:41:09dbodinsetspambayes_score: 0.115195 -> 0.11519491
recipients: + dbodin
2008-03-15 16:41:09dbodinsetspambayes_score: 0.115195 -> 0.115195
messageid: <1205599269.05.0.609261957531.issue2293@psf.upfronthosting.co.za>
2008-03-15 16:41:08dbodinlinkissue2293 messages
2008-03-15 16:41:08dbodincreate