Staging
v0.5.1
Revision b88548069599f949c5b451ef95be739241711e24 authored by Barry Warsaw on 18 September 2008, 03:00:28 UTC, committed by Barry Warsaw on 18 September 2008, 03:00:28 UTC
1 parent f2fa87b
Raw File
doctest_aliases.py
# Used by test_doctest.py.

class TwoNames:
    '''f() and g() are two names for the same method'''

    def f(self):
        '''
        >>> print(TwoNames().f())
        f
        '''
        return 'f'

        g = f # define an alias for f
back to top