Adds two numbers
(a, b)
| 268 | # A simple adder whose source and signature stays |
| 269 | # the same across Python distributions |
| 270 | def simple_add(a, b): |
| 271 | "Adds two numbers" |
| 272 | return a + b |
| 273 | |
| 274 | class A(object): |
| 275 | @property |
nothing calls this directly
no outgoing calls
no test coverage detected