Example: >>> ff = FooClass(3) >>> ff.bar(0) boom! >>> 1/0 bam!
(self,y)
| 118 | self.x = x |
| 119 | |
| 120 | def bar(self,y): |
| 121 | """Example: |
| 122 | |
| 123 | >>> ff = FooClass(3) |
| 124 | >>> ff.bar(0) |
| 125 | boom! |
| 126 | >>> 1/0 |
| 127 | bam! |
| 128 | """ |
| 129 | return 1/y |
| 130 | |
| 131 | def baz(self,y): |
| 132 | """Example: |
no outgoing calls
no test coverage detected