00001 ## @mainpage Unmatched Apostrophes in Brief Descriptions 00002 # There is still a problem with unmatched apostrophes in special 00003 # comment blocks in Python code if 00004 # - The comment block is inside a class definition and 00005 # - The apostrophe is in the brief description.<br> 00006 # 00007 # The class in which the apostrophe occurs is not document nor is any 00008 # subsequent code unless there is another apostrophe, in either brief 00009 # or full descriptions, in a subsequent comment block. 00010 00011 class Monty1(object): 00012 ## Don't 00013 # @param[in] self The object. 00014 def __init__(self): 00015 ## Instance variable. 00016 self.python = 0 00017 ## Class variable. 00018 flying = 1 00019 00020 ## Global variable. 00021 cleese = 3