Coverage for /Volumes/workspace/python-progressbar/.tox/pypy3/site-packages/progressbar/base.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# -*- mode: python; coding: utf-8 -*-
3class FalseMeta(type):
4 def __bool__(self): # pragma: no cover
5 return False
7 def __cmp__(self, other): # pragma: no cover
8 return -1
10 __nonzero__ = __bool__
13class UnknownLength(metaclass=FalseMeta):
14 pass
17class Undefined(metaclass=FalseMeta):
18 pass