def natural_sort_key()

in content/security/cvejsontohtml.py [0:0]


def natural_sort_key(s, _nsre=re.compile('([0-9]+)')):
    return [int(text) if text.isdigit() else text.lower()
            for text in _nsre.split(s)]