aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/py/gflags/gflags/third_party/pep257/__init__.py
blob: e9443f8afcb9b7093a9b8256f41d37faa9ac71f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python

def trim(docstring):
    """Removes indentation from triple-quoted strings.

    This is the function specified in PEP 257 to handle docstrings:
        http://www.python.org/dev/peps/pep-0257/
    """
    if not docstring:
        return ''

    # Since Python 3 does not support sys.maxint so we use and arbitrary
    # large integer instead.
    maxint = 1 << 32

    # Convert tabs to spaces (following the normal Python rules)
    # and split into a list of lines:
    lines = docstring.expandtabs().splitlines()

    # Determine minimum indentation (first line doesn't count):
    indent = maxint
    for line in lines[1:]:
        stripped = line.lstrip()
        if stripped:
            indent = min(indent, len(line) - len(stripped))
    # Remove indentation (first line is special):
    trimmed = [lines[0].strip()]
    if indent < maxint:
        for line in lines[1:]:
            trimmed.append(line[indent:].rstrip())
    # Strip off trailing and leading blank lines:
    while trimmed and not trimmed[-1]:
        trimmed.pop()
    while trimmed and not trimmed[0]:
        trimmed.pop(0)
    # Return a single string:
    return '\n'.join(trimmed)