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