Definition at line 647 of file html.py.
◆ __init__()
def html.TrackingIterPage.__init__ |
( |
|
self, |
|
|
* |
args, |
|
|
** |
kwargs |
|
) |
| |
Definition at line 648 of file html.py.
648 def __init__(self, *args, **kwargs):
649 super(TrackingIterPage, self).__init__(*args, **kwargs)
◆ _mapSectionName()
def html.TrackingIterPage._mapSectionName |
( |
|
self, |
|
|
|
quality |
|
) |
| |
|
private |
Reimplemented from html.Page.
Definition at line 651 of file html.py.
651 def _mapSectionName(self, quality):
652 return _trackQualityNameOrder.get(quality, quality)
◆ _orderSets()
def html.TrackingIterPage._orderSets |
( |
|
self, |
|
|
|
qualities |
|
) |
| |
|
private |
Reimplemented from html.Page.
Definition at line 654 of file html.py.
654 def _orderSets(self, qualities):
656 for qual
in _trackQualityNameOrder.keys():
657 if qual
in qualities:
659 qualities.remove(qual)
660 ret.extend(qualities)