Better __doc__ consistency; really a test of some mercurial issues.

master
Sean B. Palmer 2008-03-02 14:44:14 +00:00
parent 8f2e14481a
commit f81eae836d
3 changed files with 3 additions and 3 deletions

View File

@ -145,4 +145,4 @@ noteuri.rule = r'.*(http://[^<> "]+)[,.]?'
noteuri.priority = 'low'
if __name__ == '__main__':
print __doc__
print __doc__.strip()

View File

@ -46,4 +46,4 @@ f_note.rule = r'(.*)'
f_note.priority = 'low'
if __name__ == '__main__':
print __doc__
print __doc__.strip()

View File

@ -419,4 +419,4 @@ def f_weather(self, origin, match, args):
f_weather.rule = (['weather'], r'(.*)')
if __name__ == '__main__':
print __doc__
print __doc__.strip()