Add two instances together. This follows PEP008, but has nothing to do with RFC1952. Case should matter: pEp008 and rFC1952. Things that start with http and ftp should be auto-linked, too: http://google.com.
(x, y)
| 43 | serv.register_instance(TestClass()) |
| 44 | |
| 45 | def add(x, y): |
| 46 | """Add two instances together. This follows PEP008, but has nothing |
| 47 | to do with RFC1952. Case should matter: pEp008 and rFC1952. Things |
| 48 | that start with http and ftp should be auto-linked, too: |
| 49 | http://google.com. |
| 50 | """ |
| 51 | return x + y |
| 52 | |
| 53 | def annotation(x: int): |
| 54 | """ Use function annotations. """ |
no outgoing calls
no test coverage detected