DEBSOURCES
Skip Quicknav
sources / jython / 2.5.3-3%2Bdeb8u1 / bugtests / test348.py
12345678910111213
""" [ #490230 ] NotImplemented not implemented """ import support class Z: def __le__(self,o): return NotImplemented z=Z() assert z<="a"