diff options
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Lib/test/doctest_aliases.py')
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Lib/test/doctest_aliases.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/doctest_aliases.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/doctest_aliases.py new file mode 100644 index 0000000000..80fa2a0777 --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/doctest_aliases.py @@ -0,0 +1,13 @@ +# 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
|