PHP 8.0.30
Preview: _errors.py Size: 967 B
//opt/alt/python37/lib/python3.7/site-packages/asn1crypto/_errors.py

# coding: utf-8

"""
Helper for formatting exception messages. Exports the following items:

 - unwrap()
"""

from __future__ import unicode_literals, division, absolute_import, print_function

import re
import textwrap


def unwrap(string, *params):
    """
    Takes a multi-line string and does the following:

     - dedents
     - converts newlines with text before and after into a single line
     - strips leading and trailing whitespace

    :param string:
        The string to format

    :param *params:
        Params to interpolate into the string

    :return:
        The formatted string
    """

    output = textwrap.dedent(string)

    # Unwrap lines, taking into account bulleted lists, ordered lists and
    # underlines consisting of = signs
    if output.find('\n') != -1:
        output = re.sub('(?<=\\S)\n(?=[^ \n\t\\d\\*\\-=])', ' ', output)

    if params:
        output = output % params

    output = output.strip()

    return output

Directory Contents

Dirs: 2 × Files: 25

Name Size Perms Modified Actions
_perf DIR
- drwxr-xr-x 2021-10-11 07:55:40
Edit Download
- drwxr-xr-x 2021-10-11 07:55:40
Edit Download
32.73 KB lrw-r--r-- 2017-01-23 16:50:58
Edit Download
24.96 KB lrw-r--r-- 2017-02-10 10:06:05
Edit Download
146.88 KB lrw-r--r-- 2017-03-11 11:28:29
Edit Download
15.84 KB lrw-r--r-- 2015-10-24 20:52:24
Edit Download
2.11 KB lrw-r--r-- 2015-11-05 21:06:04
Edit Download
34.23 KB lrw-r--r-- 2016-08-30 15:31:11
Edit Download
17.58 KB lrw-r--r-- 2015-10-30 02:55:30
Edit Download
8.93 KB lrw-r--r-- 2017-03-02 15:40:47
Edit Download
2.25 KB lrw-r--r-- 2016-07-11 01:34:11
Edit Download
5.98 KB lrw-r--r-- 2015-10-08 13:43:00
Edit Download
4.53 KB lrw-r--r-- 2017-02-19 21:13:06
Edit Download
7.88 KB lrw-r--r-- 2016-08-27 19:58:53
Edit Download
17.62 KB lrw-r--r-- 2017-02-01 12:20:37
Edit Download
154 B lrw-r--r-- 2017-03-10 19:24:03
Edit Download
81.32 KB lrw-r--r-- 2017-03-03 11:35:47
Edit Download
9.19 KB lrw-r--r-- 2016-06-16 09:12:23
Edit Download
967 B lrw-r--r-- 2015-10-08 13:38:44
Edit Download
738 B lrw-r--r-- 2016-07-15 01:53:18
Edit Download
4.72 KB lrw-r--r-- 2016-06-15 11:14:32
Edit Download
4.51 KB lrw-r--r-- 2017-01-23 16:49:03
Edit Download
8.43 KB lrw-r--r-- 2017-03-03 11:10:52
Edit Download
4.43 KB lrw-r--r-- 2015-10-08 13:39:26
Edit Download
4.93 KB lrw-r--r-- 2015-10-08 13:39:30
Edit Download
939 B lrw-r--r-- 2017-02-01 12:20:37
Edit Download
209 B lrw-r--r-- 2017-01-24 14:23:55
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).