DEBSOURCES
Skip Quicknav
sources / jython / 2.5.3-3%2Bdeb8u1 / tests / java / org / python / indexer / data / pkg / animal / reptile / snake.py
123456789
import croc class Snake: def eats(self, thing): return False class Python(Snake): def eats(self, thing): return isinstance(thing, croc.Gavial)