~chromium-team/chromium-browser/translations-pump

« back to all changes in this revision

Viewing changes to fileformats/utils.py

  • Committer: Chad MILLER
  • Date: 2015-10-20 15:27:50 UTC
  • Revision ID: chad.miller@canonical.com-20151020152750-7vlkyc33g7vkz3yy
Remove noisy debug output

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
class _L(list):
54
54
    def __init__(self, *args, **kwargs):
55
55
        super().__init__(*args, **kwargs)
56
 
        print("init _L")
57
56
 
58
57
    def sort(self):
59
 
        print("Ignoring request to sort.")
60
58
        pass
61
59
 
62
60
class _OrderedDictWithItemsNoSort(OrderedDict):