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 orsenthil
Recipients bersace, eric.araujo, flox, orsenthil
Date 2010-11-13.09:31:19
SpamBayes Score 0.1115455
Marked as misclassified No
Message-id <1289640681.12.0.664388777212.issue10205@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for the explanation, Éric. That helps.
- Backported QName tests in r86447 to release31-maint.

As for the logic of the fix, it follows like this:

If True and False:
  #Doesn't go here
elif True:
  # Goes here

vs

if True:
   # Goes here
   if False:
      # Does not matter
elif:
   # Doesn't go here.
History
Date User Action Args
2010-11-13 09:31:21orsenthilsetrecipients: + orsenthil, eric.araujo, flox, bersace
2010-11-13 09:31:21orsenthilsetmessageid: <1289640681.12.0.664388777212.issue10205@psf.upfronthosting.co.za>
2010-11-13 09:31:19orsenthillinkissue10205 messages
2010-11-13 09:31:19orsenthilcreate