Definition at line 606 of file html.py.
◆ __init__()
def html.TrackingIterPage.__init__ |
( |
|
self, |
|
|
* |
args, |
|
|
** |
kwargs |
|
) |
| |
Definition at line 607 of file html.py.
607 def __init__(self, *args, **kwargs):
608 super(TrackingIterPage, self).__init__(*args, **kwargs)
◆ _mapSectionName()
def html.TrackingIterPage._mapSectionName |
( |
|
self, |
|
|
|
quality |
|
) |
| |
|
private |
Reimplemented from html.Page.
Definition at line 610 of file html.py.
610 def _mapSectionName(self, quality):
611 return _trackQualityNameOrder.get(quality, quality)
◆ _orderSets()
def html.TrackingIterPage._orderSets |
( |
|
self, |
|
|
|
qualities |
|
) |
| |
|
private |
Reimplemented from html.Page.
Definition at line 613 of file html.py.
613 def _orderSets(self, qualities):
615 for qual
in _trackQualityNameOrder.keys():
616 if qual
in qualities:
618 qualities.remove(qual)
619 ret.extend(qualities)