-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample.py
More file actions
41 lines (27 loc) · 861 Bytes
/
example.py
File metadata and controls
41 lines (27 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# This comment appears first
# and spans 2 lines.
# This comment does not show up in the output of getcomments().
"""Sample file to serve as the basis for inspect examples.
"""
def module_level_function(arg1, arg2="default", *args, **kwargs):
"""This function is declared in the module."""
local_variable = arg1 * 2
return local_variable
class A(object):
"""The A class."""
def __init__(self, name):
self.name = name
def get_name(self):
"""Returns the name of the instance."""
return self.name
instance_of_a = A("sample_instance")
class B(A):
"""This is the B class.
It is derived from A.
"""
# This method is not part of A.
def do_something(self):
"""Does some work"""
def get_name(self):
"""Overrides version from A"""
return "B(" + self.name + ")"