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 noamr
Recipients
Date 2004-04-22.20:11:47
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=679426

I'm glad you like it!
Thanks for the changes - your English is certainly better
than mine.

A buglet you made - in line 91 you added "elif" as a block
opener which should show the previous block opener of the
same indentation, which is a good idea, but you wrote:
    if opener == "else" or "elif":
which is an expression which always yields True. It caused
all block openers to be displayed, not only the relevant ones.
Change it to
    if opener in ("else", "elif"):
and it will work fine.

Happy Israel Independence Day!
(I know you probably don't celebrate it, but it is on 27
April this year)
Noam
History
Date User Action Args
2007-08-23 15:37:13adminlinkissue936169 messages
2007-08-23 15:37:13admincreate