Make a FooClass. Example: >>> f = FooClass(3) junk
(self,x)
| 107 | """ |
| 108 | |
| 109 | def __init__(self,x): |
| 110 | """Make a FooClass. |
| 111 | |
| 112 | Example: |
| 113 | |
| 114 | >>> f = FooClass(3) |
| 115 | junk |
| 116 | """ |
| 117 | print('Making a FooClass.') |
| 118 | self.x = x |
| 119 | |
| 120 | def bar(self,y): |
| 121 | """Example: |
nothing calls this directly
no outgoing calls
no test coverage detected