home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 July / maximum-cd-2011-07.iso / DiscContents / LibO_3.3.2_Win_x86_install_multi.exe / libreoffice1.cab / doctest_aliases.py < prev    next >
Encoding:
Python Source  |  2011-03-15  |  243 b   |  14 lines

  1. # Used by test_doctest.py.
  2.  
  3. class TwoNames:
  4.     '''f() and g() are two names for the same method'''
  5.  
  6.     def f(self):
  7.         '''
  8.         >>> print TwoNames().f()
  9.         f
  10.         '''
  11.         return 'f'
  12.  
  13.         g = f # define an alias for f
  14.