✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ beluga.o2switch.net ​🇻​♯➤ 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 185.154.139.77 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.84
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/alt/python39/lib64/python3.9/test/__pycache__//test_doctest.cpython-39.pyc
a

XC?h��@s dZddlmZddlZddlZddlZddlZddlZddlZddl	Zddl
Z
ddlZddlZddl
Z
dd�ZGdd�d�ZGdd	�d	e�ZGd
d�d�Zdd
�Zdd�ZGdd�d�ZGdd�de
j�Zdd�ZGdd�d�Zdd�Zdd�Zeed��re���sdd�Zdd �Zd!d"�Z d#d$�Z!d%d&�Z"Gd'd(�d(�Z#e#d)d*��Z$d+d,�Z%d-d.�Z&Gd/d0�d0ej'j(ej'j)�Z*Gd1d2�d2�Z+e
j,d3d4��Z-d5d6�Z.d7d8�Z/ze�0d9�Wne1�y�Yn
0d:d;�Z2d<d=�Z3d>d?�Z4d@dA�Z5dBdC�Z6dDdE�Z7e8dFk�rdGej9v�re7dH�ne
�:�dS)Iz
Test script for doctest.
�)�supportNcCs||S)zG
    Blah blah

    >>> print(sample_func(22))
    44

    Yee ha!
    ���vrr�6/opt/alt/python39/lib64/python3.9/test/test_doctest.py�sample_funcs	rc@sveZdZdZdd�Zdd�Zdd�Zdd	�Zee�Zd
d�Z	e
e	�Z	eedd
�ZdZ
e
edd���ZGdd�d�ZdS)�SampleClassa7
    >>> print(1)
    1

    >>> # comments get ignored.  so are empty PS1 and PS2 prompts:
    >>>
    ...

    Multiline example:
    >>> sc = SampleClass(3)
    >>> for i in range(10):
    ...     sc = sc.double()
    ...     print(' ', sc.get(), sep='', end='')
     6 12 24 48 96 192 384 768 1536 3072
    cCs
||_dS)z=
        >>> print(SampleClass(12).get())
        12
        N��val��selfr
rrr�__init__4szSampleClass.__init__cCst|j|j�S)zF
        >>> print(SampleClass(12).double().get())
        24
        )rr
�rrrr�double;szSampleClass.doublecCs|jS)z=
        >>> print(SampleClass(-5).get())
        -5
        r	rrrr�getBszSampleClass.getcCs|dS)zF
        >>> print(SampleClass.a_staticmethod(10))
        11
        �rrrrr�a_staticmethodIszSampleClass.a_staticmethodcCs|dS)z�
        >>> print(SampleClass.a_classmethod(10))
        12
        >>> print(SampleClass(0).a_classmethod(10))
        12
        �r)�clsrrrr�
a_classmethodQszSampleClass.a_classmethodzB
        >>> print(SampleClass(22).a_property)
        22
        )�doc�*cCs|jS)zJ
        >>> print(SampleClass.a_classmethod_property)
        42
        )�a_class_attribute)rrrr�a_classmethod_propertybsz"SampleClass.a_classmethod_propertyc@s*eZdZdZd
dd�Zdd�Zdd�Zd	S)zSampleClass.NestedClasszu
        >>> x = SampleClass.NestedClass(5)
        >>> y = x.square()
        >>> print(y.get())
        25
        rcCs
||_dS)zR
            >>> print(SampleClass.NestedClass().get())
            0
            Nr	rrrrr
rsz SampleClass.NestedClass.__init__cCst�|j|j�S�N)r�NestedClassr
rrrr�squarexszSampleClass.NestedClass.squarecCs|jSrr	rrrrrzszSampleClass.NestedClass.getN)r)�__name__�
__module__�__qualname__�__doc__r
rrrrrrrks
rN)rrrr r
rrr�staticmethodr�classmethod�propertyZ
a_propertyrrrrrrrr$src@s(eZdZdZdd�Zdd�Zdd�ZdS)	�SampleNewStyleClassz0
    >>> print('1\n2\n3')
    1
    2
    3
    cCs
||_dS)zE
        >>> print(SampleNewStyleClass(12).get())
        12
        Nr	rrrrr
�szSampleNewStyleClass.__init__cCst|j|j�S)zN
        >>> print(SampleNewStyleClass(12).double().get())
        24
        )r$r
rrrrr�szSampleNewStyleClass.doublecCs|jS)zE
        >>> print(SampleNewStyleClass(-5).get())
        -5
        r	rrrrr�szSampleNewStyleClass.getN)rrrr r
rrrrrrr$}sr$c@s eZdZdZdd�Zdd�ZdS)�
_FakeInputa
    A fake input stream for pdb's interactive debugger.  Whenever a
    line is read, print it (to simulate the user typing it), and then
    return it.  The set of lines to return is specified in the
    constructor; they should not have trailing newlines.
    cCs
||_dSr)�lines)rr&rrrr
�sz_FakeInput.__init__cCs|j�d�}t|�|dS)Nr�
)r&�pop�print)r�linerrr�readline�sz_FakeInput.readlineN)rrrr r
r+rrrrr%�sr%cCsdS)ao
Unit tests for the `Example` class.

Example is a simple container class that holds:
  - `source`: A source string.
  - `want`: An expected output string.
  - `exc_msg`: An expected exception message string (or None if no
    exception is expected).
  - `lineno`: A line number (within the docstring).
  - `indent`: The example's indentation in the input string.
  - `options`: An option dictionary, mapping option flags to True or
    False.

These attributes are set by the constructor.  `source` and `want` are
required; the other attributes all have default values:

    >>> example = doctest.Example('print(1)', '1\n')
    >>> (example.source, example.want, example.exc_msg,
    ...  example.lineno, example.indent, example.options)
    ('print(1)\n', '1\n', None, 0, 0, {})

The first three attributes (`source`, `want`, and `exc_msg`) may be
specified positionally; the remaining arguments should be specified as
keyword arguments:

    >>> exc_msg = 'IndexError: pop from an empty list'
    >>> example = doctest.Example('[].pop()', '', exc_msg,
    ...                           lineno=5, indent=4,
    ...                           options={doctest.ELLIPSIS: True})
    >>> (example.source, example.want, example.exc_msg,
    ...  example.lineno, example.indent, example.options)
    ('[].pop()\n', '', 'IndexError: pop from an empty list\n', 5, 4, {8: True})

The constructor normalizes the `source` string to end in a newline:

    Source spans a single line: no terminating newline.
    >>> e = doctest.Example('print(1)', '1\n')
    >>> e.source, e.want
    ('print(1)\n', '1\n')

    >>> e = doctest.Example('print(1)\n', '1\n')
    >>> e.source, e.want
    ('print(1)\n', '1\n')

    Source spans multiple lines: require terminating newline.
    >>> e = doctest.Example('print(1);\nprint(2)\n', '1\n2\n')
    >>> e.source, e.want
    ('print(1);\nprint(2)\n', '1\n2\n')

    >>> e = doctest.Example('print(1);\nprint(2)', '1\n2\n')
    >>> e.source, e.want
    ('print(1);\nprint(2)\n', '1\n2\n')

    Empty source string (which should never appear in real examples)
    >>> e = doctest.Example('', '')
    >>> e.source, e.want
    ('\n', '')

The constructor normalizes the `want` string to end in a newline,
unless it's the empty string:

    >>> e = doctest.Example('print(1)', '1\n')
    >>> e.source, e.want
    ('print(1)\n', '1\n')

    >>> e = doctest.Example('print(1)', '1')
    >>> e.source, e.want
    ('print(1)\n', '1\n')

    >>> e = doctest.Example('print', '')
    >>> e.source, e.want
    ('print\n', '')

The constructor normalizes the `exc_msg` string to end in a newline,
unless it's `None`:

    Message spans one line
    >>> exc_msg = 'IndexError: pop from an empty list'
    >>> e = doctest.Example('[].pop()', '', exc_msg)
    >>> e.exc_msg
    'IndexError: pop from an empty list\n'

    >>> exc_msg = 'IndexError: pop from an empty list\n'
    >>> e = doctest.Example('[].pop()', '', exc_msg)
    >>> e.exc_msg
    'IndexError: pop from an empty list\n'

    Message spans multiple lines
    >>> exc_msg = 'ValueError: 1\n  2'
    >>> e = doctest.Example('raise ValueError("1\n  2")', '', exc_msg)
    >>> e.exc_msg
    'ValueError: 1\n  2\n'

    >>> exc_msg = 'ValueError: 1\n  2\n'
    >>> e = doctest.Example('raise ValueError("1\n  2")', '', exc_msg)
    >>> e.exc_msg
    'ValueError: 1\n  2\n'

    Empty (but non-None) exception message (which should never appear
    in real examples)
    >>> exc_msg = ''
    >>> e = doctest.Example('raise X()', '', exc_msg)
    >>> e.exc_msg
    '\n'

Compare `Example`:
    >>> example = doctest.Example('print 1', '1\n')
    >>> same_example = doctest.Example('print 1', '1\n')
    >>> other_example = doctest.Example('print 42', '42\n')
    >>> example == same_example
    True
    >>> example != same_example
    False
    >>> hash(example) == hash(same_example)
    True
    >>> example == other_example
    False
    >>> example != other_example
    True
Nrrrrr�test_Example��r,cCsdS)a�
Unit tests for the `DocTest` class.

DocTest is a collection of examples, extracted from a docstring, along
with information about where the docstring comes from (a name,
filename, and line number).  The docstring is parsed by the `DocTest`
constructor:

    >>> docstring = '''
    ...     >>> print(12)
    ...     12
    ...
    ... Non-example text.
    ...
    ...     >>> print('another\\example')
    ...     another
    ...     example
    ... '''
    >>> globs = {} # globals to run the test in.
    >>> parser = doctest.DocTestParser()
    >>> test = parser.get_doctest(docstring, globs, 'some_test',
    ...                           'some_file', 20)
    >>> print(test)
    <DocTest some_test from some_file:20 (2 examples)>
    >>> len(test.examples)
    2
    >>> e1, e2 = test.examples
    >>> (e1.source, e1.want, e1.lineno)
    ('print(12)\n', '12\n', 1)
    >>> (e2.source, e2.want, e2.lineno)
    ("print('another\\example')\n", 'another\nexample\n', 6)

Source information (name, filename, and line number) is available as
attributes on the doctest object:

    >>> (test.name, test.filename, test.lineno)
    ('some_test', 'some_file', 20)

The line number of an example within its containing file is found by
adding the line number of the example and the line number of its
containing test:

    >>> test.lineno + e1.lineno
    21
    >>> test.lineno + e2.lineno
    26

If the docstring contains inconsistent leading whitespace in the
expected output of an example, then `DocTest` will raise a ValueError:

    >>> docstring = r'''
    ...       >>> print('bad\nindentation')
    ...       bad
    ...     indentation
    ...     '''
    >>> parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
    Traceback (most recent call last):
    ValueError: line 4 of the docstring for some_test has inconsistent leading whitespace: 'indentation'

If the docstring contains inconsistent leading whitespace on
continuation lines, then `DocTest` will raise a ValueError:

    >>> docstring = r'''
    ...       >>> print(('bad indentation',
    ...     ...          2))
    ...       ('bad', 'indentation')
    ...     '''
    >>> parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
    Traceback (most recent call last):
    ValueError: line 2 of the docstring for some_test has inconsistent leading whitespace: '...          2))'

If there's no blank space after a PS1 prompt ('>>>'), then `DocTest`
will raise a ValueError:

    >>> docstring = '>>>print(1)\n1'
    >>> parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
    Traceback (most recent call last):
    ValueError: line 1 of the docstring for some_test lacks blank after >>>: '>>>print(1)'

If there's no blank space after a PS2 prompt ('...'), then `DocTest`
will raise a ValueError:

    >>> docstring = '>>> if 1:\n...print(1)\n1'
    >>> parser.get_doctest(docstring, globs, 'some_test', 'filename', 0)
    Traceback (most recent call last):
    ValueError: line 2 of the docstring for some_test lacks blank after ...: '...print(1)'

Compare `DocTest`:

    >>> docstring = '''
    ...     >>> print 12
    ...     12
    ... '''
    >>> test = parser.get_doctest(docstring, globs, 'some_test',
    ...                           'some_test', 20)
    >>> same_test = parser.get_doctest(docstring, globs, 'some_test',
    ...                                'some_test', 20)
    >>> test == same_test
    True
    >>> test != same_test
    False
    >>> hash(test) == hash(same_test)
    True
    >>> docstring = '''
    ...     >>> print 42
    ...     42
    ... '''
    >>> other_test = parser.get_doctest(docstring, globs, 'other_test',
    ...                                 'other_file', 10)
    >>> test == other_test
    False
    >>> test != other_test
    True

Compare `DocTestCase`:

    >>> DocTestCase = doctest.DocTestCase
    >>> test_case = DocTestCase(test)
    >>> same_test_case = DocTestCase(same_test)
    >>> other_test_case = DocTestCase(other_test)
    >>> test_case == same_test_case
    True
    >>> test_case != same_test_case
    False
    >>> hash(test_case) == hash(same_test_case)
    True
    >>> test == other_test_case
    False
    >>> test != other_test_case
    True

Nrrrrr�test_DocTest)r-r.c@s"eZdZdd�Zejrdd�ZdS)�test_DocTestFindercCsdS)a�
Unit tests for the `DocTestFinder` class.

DocTestFinder is used to extract DocTests from an object's docstring
and the docstrings of its contained objects.  It can be used with
modules, functions, classes, methods, staticmethods, classmethods, and
properties.

Finding Tests in Functions
~~~~~~~~~~~~~~~~~~~~~~~~~~
For a function whose docstring contains examples, DocTestFinder.find()
will return a single test (for that function's docstring):

    >>> finder = doctest.DocTestFinder()

We'll simulate a __file__ attr that ends in pyc:

    >>> import test.test_doctest
    >>> old = test.test_doctest.__file__
    >>> test.test_doctest.__file__ = 'test_doctest.pyc'

    >>> tests = finder.find(sample_func)

    >>> print(tests)  # doctest: +ELLIPSIS
    [<DocTest sample_func from ...:25 (1 example)>]

The exact name depends on how test_doctest was invoked, so allow for
leading path components.

    >>> tests[0].filename # doctest: +ELLIPSIS
    '...test_doctest.py'

    >>> test.test_doctest.__file__ = old


    >>> e = tests[0].examples[0]
    >>> (e.source, e.want, e.lineno)
    ('print(sample_func(22))\n', '44\n', 3)

By default, tests are created for objects with no docstring:

    >>> def no_docstring(v):
    ...     pass
    >>> finder.find(no_docstring)
    []

However, the optional argument `exclude_empty` to the DocTestFinder
constructor can be used to exclude tests for objects with empty
docstrings:

    >>> def no_docstring(v):
    ...     pass
    >>> excl_empty_finder = doctest.DocTestFinder(exclude_empty=True)
    >>> excl_empty_finder.find(no_docstring)
    []

If the function has a docstring with no examples, then a test with no
examples is returned.  (This lets `DocTestRunner` collect statistics
about which functions have no tests -- but is that useful?  And should
an empty test also be created when there's no docstring?)

    >>> def no_examples(v):
    ...     ''' no doctest examples '''
    >>> finder.find(no_examples) # doctest: +ELLIPSIS
    [<DocTest no_examples from ...:1 (no examples)>]

Finding Tests in Classes
~~~~~~~~~~~~~~~~~~~~~~~~
For a class, DocTestFinder will create a test for the class's
docstring, and will recursively explore its contents, including
methods, classmethods, staticmethods, properties, and nested classes.

    >>> finder = doctest.DocTestFinder()
    >>> tests = finder.find(SampleClass)
    >>> for t in tests:
    ...     print('%2s  %s' % (len(t.examples), t.name))
     3  SampleClass
     3  SampleClass.NestedClass
     1  SampleClass.NestedClass.__init__
     1  SampleClass.__init__
     2  SampleClass.a_classmethod
     1  SampleClass.a_classmethod_property
     1  SampleClass.a_property
     1  SampleClass.a_staticmethod
     1  SampleClass.double
     1  SampleClass.get

New-style classes are also supported:

    >>> tests = finder.find(SampleNewStyleClass)
    >>> for t in tests:
    ...     print('%2s  %s' % (len(t.examples), t.name))
     1  SampleNewStyleClass
     1  SampleNewStyleClass.__init__
     1  SampleNewStyleClass.double
     1  SampleNewStyleClass.get

Finding Tests in Modules
~~~~~~~~~~~~~~~~~~~~~~~~
For a module, DocTestFinder will create a test for the class's
docstring, and will recursively explore its contents, including
functions, classes, and the `__test__` dictionary, if it exists:

    >>> # A module
    >>> import types
    >>> m = types.ModuleType('some_module')
    >>> def triple(val):
    ...     '''
    ...     >>> print(triple(11))
    ...     33
    ...     '''
    ...     return val*3
    >>> m.__dict__.update({
    ...     'sample_func': sample_func,
    ...     'SampleClass': SampleClass,
    ...     '__doc__': '''
    ...         Module docstring.
    ...             >>> print('module')
    ...             module
    ...         ''',
    ...     '__test__': {
    ...         'd': '>>> print(6)\n6\n>>> print(7)\n7\n',
    ...         'c': triple}})

    >>> finder = doctest.DocTestFinder()
    >>> # Use module=test.test_doctest, to prevent doctest from
    >>> # ignoring the objects since they weren't defined in m.
    >>> import test.test_doctest
    >>> tests = finder.find(m, module=test.test_doctest)
    >>> for t in tests:
    ...     print('%2s  %s' % (len(t.examples), t.name))
     1  some_module
     3  some_module.SampleClass
     3  some_module.SampleClass.NestedClass
     1  some_module.SampleClass.NestedClass.__init__
     1  some_module.SampleClass.__init__
     2  some_module.SampleClass.a_classmethod
     1  some_module.SampleClass.a_classmethod_property
     1  some_module.SampleClass.a_property
     1  some_module.SampleClass.a_staticmethod
     1  some_module.SampleClass.double
     1  some_module.SampleClass.get
     1  some_module.__test__.c
     2  some_module.__test__.d
     1  some_module.sample_func

Duplicate Removal
~~~~~~~~~~~~~~~~~
If a single object is listed twice (under different names), then tests
will only be generated for it once:

    >>> from test import doctest_aliases
    >>> assert doctest_aliases.TwoNames.f
    >>> assert doctest_aliases.TwoNames.g
    >>> tests = excl_empty_finder.find(doctest_aliases)
    >>> print(len(tests))
    2
    >>> print(tests[0].name)
    test.doctest_aliases.TwoNames

    TwoNames.f and TwoNames.g are bound to the same object.
    We can't guess which will be found in doctest's traversal of
    TwoNames.__dict__ first, so we have to allow for either.

    >>> tests[1].name.split('.')[-1] in ['f', 'g']
    True

Empty Tests
~~~~~~~~~~~
By default, an object with no doctests doesn't create any tests:

    >>> tests = doctest.DocTestFinder().find(SampleClass)
    >>> for t in tests:
    ...     print('%2s  %s' % (len(t.examples), t.name))
     3  SampleClass
     3  SampleClass.NestedClass
     1  SampleClass.NestedClass.__init__
     1  SampleClass.__init__
     2  SampleClass.a_classmethod
     1  SampleClass.a_classmethod_property
     1  SampleClass.a_property
     1  SampleClass.a_staticmethod
     1  SampleClass.double
     1  SampleClass.get

By default, that excluded objects with no doctests.  exclude_empty=False
tells it to include (empty) tests for objects with no doctests.  This feature
is really to support backward compatibility in what doctest.master.summarize()
displays.

    >>> tests = doctest.DocTestFinder(exclude_empty=False).find(SampleClass)
    >>> for t in tests:
    ...     print('%2s  %s' % (len(t.examples), t.name))
     3  SampleClass
     3  SampleClass.NestedClass
     1  SampleClass.NestedClass.__init__
     0  SampleClass.NestedClass.get
     0  SampleClass.NestedClass.square
     1  SampleClass.__init__
     2  SampleClass.a_classmethod
     1  SampleClass.a_classmethod_property
     1  SampleClass.a_property
     1  SampleClass.a_staticmethod
     1  SampleClass.double
     1  SampleClass.get

Turning off Recursion
~~~~~~~~~~~~~~~~~~~~~
DocTestFinder can be told not to look for tests in contained objects
using the `recurse` flag:

    >>> tests = doctest.DocTestFinder(recurse=False).find(SampleClass)
    >>> for t in tests:
    ...     print('%2s  %s' % (len(t.examples), t.name))
     3  SampleClass

Line numbers
~~~~~~~~~~~~
DocTestFinder finds the line number of each example:

    >>> def f(x):
    ...     '''
    ...     >>> x = 12
    ...
    ...     some text
    ...
    ...     >>> # examples are not created for comments & bare prompts.
    ...     >>>
    ...     ...
    ...
    ...     >>> for x in range(10):
    ...     ...     print(x, end=' ')
    ...     0 1 2 3 4 5 6 7 8 9
    ...     >>> x//2
    ...     6
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> [e.lineno for e in test.examples]
    [1, 9, 12]
Nrrrrr�basics�r-ztest_DocTestFinder.basicscCsdS)a�

Finding Doctests in Modules Not Written in Python
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
DocTestFinder can also find doctests in most modules not written in Python.
We'll use builtins as an example, since it almost certainly isn't written in
plain ol' Python and is guaranteed to be available.

    >>> import builtins
    >>> tests = doctest.DocTestFinder().find(builtins)
    >>> 816 < len(tests) < 836 # approximate number of objects with docstrings
    True
    >>> real_tests = [t for t in tests if len(t.examples) > 0]
    >>> len(real_tests) # objects that actually have doctests
    13
    >>> for t in real_tests:
    ...     print('{}  {}'.format(len(t.examples), t.name))
    ...
    1  builtins.bin
    5  builtins.bytearray.hex
    5  builtins.bytes.hex
    3  builtins.float.as_integer_ratio
    2  builtins.float.fromhex
    2  builtins.float.hex
    1  builtins.hex
    1  builtins.int
    3  builtins.int.as_integer_ratio
    2  builtins.int.bit_length
    5  builtins.memoryview.hex
    1  builtins.oct
    1  builtins.zip

Note here that 'bin', 'oct', and 'hex' are functions; 'float.as_integer_ratio',
'float.hex', and 'int.bit_length' are methods; 'float.fromhex' is a classmethod,
and 'int' is a type.
Nrrrrr�non_Python_modules�r-z%test_DocTestFinder.non_Python_modulesN)rrrr0�intr r1rrrrr/�srr/c@seZdZdd�ZdS)�TestDocTestFinderc
Cs�d}t����}tj�||�}t�|�tj�|�z"t�	|�}Wt
�|�tj��nt
�|�tj��0t
jdd�}t
jdd�}|�t|�|��d�|�t|�|��d�Wd�n1s�0YdS)NZdoctest_empty_pkgF)Z
exclude_emptyTrr)�tempfileZTemporaryDirectory�os�path�join�mkdir�sys�append�	importlib�
import_modulerZforgetr(�doctestZ
DocTestFinderZassertEqual�len�find)rZpkg_nameZ
parent_dirZpkg_dir�modZinclude_empty_finderZexclude_empty_finderrrr�test_empty_namespace_package�s


�
z.TestDocTestFinder.test_empty_namespace_packageN)rrrrArrrrr3�sr3cCsdS)a�
Unit tests for the `DocTestParser` class.

DocTestParser is used to parse docstrings containing doctest examples.

The `parse` method divides a docstring into examples and intervening
text:

    >>> s = '''
    ...     >>> x, y = 2, 3  # no output expected
    ...     >>> if 1:
    ...     ...     print(x)
    ...     ...     print(y)
    ...     2
    ...     3
    ...
    ...     Some text.
    ...     >>> x+y
    ...     5
    ...     '''
    >>> parser = doctest.DocTestParser()
    >>> for piece in parser.parse(s):
    ...     if isinstance(piece, doctest.Example):
    ...         print('Example:', (piece.source, piece.want, piece.lineno))
    ...     else:
    ...         print('   Text:', repr(piece))
       Text: '\n'
    Example: ('x, y = 2, 3  # no output expected\n', '', 1)
       Text: ''
    Example: ('if 1:\n    print(x)\n    print(y)\n', '2\n3\n', 2)
       Text: '\nSome text.\n'
    Example: ('x+y\n', '5\n', 9)
       Text: ''

The `get_examples` method returns just the examples:

    >>> for piece in parser.get_examples(s):
    ...     print((piece.source, piece.want, piece.lineno))
    ('x, y = 2, 3  # no output expected\n', '', 1)
    ('if 1:\n    print(x)\n    print(y)\n', '2\n3\n', 2)
    ('x+y\n', '5\n', 9)

The `get_doctest` method creates a Test from the examples, along with the
given arguments:

    >>> test = parser.get_doctest(s, {}, 'name', 'filename', lineno=5)
    >>> (test.name, test.filename, test.lineno)
    ('name', 'filename', 5)
    >>> for piece in test.examples:
    ...     print((piece.source, piece.want, piece.lineno))
    ('x, y = 2, 3  # no output expected\n', '', 1)
    ('if 1:\n    print(x)\n    print(y)\n', '2\n3\n', 2)
    ('x+y\n', '5\n', 9)
Nrrrrr�test_DocTestParser�r-rBc@s<eZdZdd�Zdd�Zdd�Zdd�Zd	d
�Zdd�Zd
S)�test_DocTestRunnercCsdS)a�
Unit tests for the `DocTestRunner` class.

DocTestRunner is used to run DocTest test cases, and to accumulate
statistics.  Here's a simple DocTest case we can use:

    >>> def f(x):
    ...     '''
    ...     >>> x = 12
    ...     >>> print(x)
    ...     12
    ...     >>> x//2
    ...     6
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]

The main DocTestRunner interface is the `run` method, which runs a
given DocTest case in a given namespace (globs).  It returns a tuple
`(f,t)`, where `f` is the number of failed tests and `t` is the number
of tried tests.

    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=3)

If any example produces incorrect output, then the test runner reports
the failure and proceeds to the next example:

    >>> def f(x):
    ...     '''
    ...     >>> x = 12
    ...     >>> print(x)
    ...     14
    ...     >>> x//2
    ...     6
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=True).run(test)
    ... # doctest: +ELLIPSIS
    Trying:
        x = 12
    Expecting nothing
    ok
    Trying:
        print(x)
    Expecting:
        14
    **********************************************************************
    File ..., line 4, in f
    Failed example:
        print(x)
    Expected:
        14
    Got:
        12
    Trying:
        x//2
    Expecting:
        6
    ok
    TestResults(failed=1, attempted=3)
Nrrrrrr0r-ztest_DocTestRunner.basicscCsdS)a�
The `verbose` flag makes the test runner generate more detailed
output:

    >>> def f(x):
    ...     '''
    ...     >>> x = 12
    ...     >>> print(x)
    ...     12
    ...     >>> x//2
    ...     6
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]

    >>> doctest.DocTestRunner(verbose=True).run(test)
    Trying:
        x = 12
    Expecting nothing
    ok
    Trying:
        print(x)
    Expecting:
        12
    ok
    Trying:
        x//2
    Expecting:
        6
    ok
    TestResults(failed=0, attempted=3)

If the `verbose` flag is unspecified, then the output will be verbose
iff `-v` appears in sys.argv:

    >>> # Save the real sys.argv list.
    >>> old_argv = sys.argv

    >>> # If -v does not appear in sys.argv, then output isn't verbose.
    >>> sys.argv = ['test']
    >>> doctest.DocTestRunner().run(test)
    TestResults(failed=0, attempted=3)

    >>> # If -v does appear in sys.argv, then output is verbose.
    >>> sys.argv = ['test', '-v']
    >>> doctest.DocTestRunner().run(test)
    Trying:
        x = 12
    Expecting nothing
    ok
    Trying:
        print(x)
    Expecting:
        12
    ok
    Trying:
        x//2
    Expecting:
        6
    ok
    TestResults(failed=0, attempted=3)

    >>> # Restore sys.argv
    >>> sys.argv = old_argv

In the remaining examples, the test runner's verbosity will be
explicitly set, to ensure that the test behavior is consistent.
    Nrrrrr�verbose_flagPr-ztest_DocTestRunner.verbose_flagcCsdS)a� 
Tests of `DocTestRunner`'s exception handling.

An expected exception is specified with a traceback message.  The
lines between the first line and the type/value may be omitted or
replaced with any other string:

    >>> def f(x):
    ...     '''
    ...     >>> x = 12
    ...     >>> print(x//0)
    ...     Traceback (most recent call last):
    ...     ZeroDivisionError: integer division or modulo by zero
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=2)

An example may not generate output before it raises an exception; if
it does, then the traceback message will not be recognized as
signaling an expected exception, so the example will be reported as an
unexpected exception:

    >>> def f(x):
    ...     '''
    ...     >>> x = 12
    ...     >>> print('pre-exception output', x//0)
    ...     pre-exception output
    ...     Traceback (most recent call last):
    ...     ZeroDivisionError: integer division or modulo by zero
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 4, in f
    Failed example:
        print('pre-exception output', x//0)
    Exception raised:
        ...
        ZeroDivisionError: integer division or modulo by zero
    TestResults(failed=1, attempted=2)

Exception messages may contain newlines:

    >>> def f(x):
    ...     r'''
    ...     >>> raise ValueError('multi\nline\nmessage')
    ...     Traceback (most recent call last):
    ...     ValueError: multi
    ...     line
    ...     message
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=1)

If an exception is expected, but an exception with the wrong type or
message is raised, then it is reported as a failure:

    >>> def f(x):
    ...     r'''
    ...     >>> raise ValueError('message')
    ...     Traceback (most recent call last):
    ...     ValueError: wrong message
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 3, in f
    Failed example:
        raise ValueError('message')
    Expected:
        Traceback (most recent call last):
        ValueError: wrong message
    Got:
        Traceback (most recent call last):
        ...
        ValueError: message
    TestResults(failed=1, attempted=1)

However, IGNORE_EXCEPTION_DETAIL can be used to allow a mismatch in the
detail:

    >>> def f(x):
    ...     r'''
    ...     >>> raise ValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
    ...     Traceback (most recent call last):
    ...     ValueError: wrong message
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=1)

IGNORE_EXCEPTION_DETAIL also ignores difference in exception formatting
between Python versions. For example, in Python 2.x, the module path of
the exception is not in the output, but this will fail under Python 3:

    >>> def f(x):
    ...     r'''
    ...     >>> from http.client import HTTPException
    ...     >>> raise HTTPException('message')
    ...     Traceback (most recent call last):
    ...     HTTPException: message
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 4, in f
    Failed example:
        raise HTTPException('message')
    Expected:
        Traceback (most recent call last):
        HTTPException: message
    Got:
        Traceback (most recent call last):
        ...
        http.client.HTTPException: message
    TestResults(failed=1, attempted=2)

But in Python 3 the module path is included, and therefore a test must look
like the following test to succeed in Python 3. But that test will fail under
Python 2.

    >>> def f(x):
    ...     r'''
    ...     >>> from http.client import HTTPException
    ...     >>> raise HTTPException('message')
    ...     Traceback (most recent call last):
    ...     http.client.HTTPException: message
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=2)

However, with IGNORE_EXCEPTION_DETAIL, the module name of the exception
(or its unexpected absence) will be ignored:

    >>> def f(x):
    ...     r'''
    ...     >>> from http.client import HTTPException
    ...     >>> raise HTTPException('message') #doctest: +IGNORE_EXCEPTION_DETAIL
    ...     Traceback (most recent call last):
    ...     HTTPException: message
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=2)

The module path will be completely ignored, so two different module paths will
still pass if IGNORE_EXCEPTION_DETAIL is given. This is intentional, so it can
be used when exceptions have changed module.

    >>> def f(x):
    ...     r'''
    ...     >>> from http.client import HTTPException
    ...     >>> raise HTTPException('message') #doctest: +IGNORE_EXCEPTION_DETAIL
    ...     Traceback (most recent call last):
    ...     foo.bar.HTTPException: message
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=2)

But IGNORE_EXCEPTION_DETAIL does not allow a mismatch in the exception type:

    >>> def f(x):
    ...     r'''
    ...     >>> raise ValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
    ...     Traceback (most recent call last):
    ...     TypeError: wrong type
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 3, in f
    Failed example:
        raise ValueError('message') #doctest: +IGNORE_EXCEPTION_DETAIL
    Expected:
        Traceback (most recent call last):
        TypeError: wrong type
    Got:
        Traceback (most recent call last):
        ...
        ValueError: message
    TestResults(failed=1, attempted=1)

If the exception does not have a message, you can still use
IGNORE_EXCEPTION_DETAIL to normalize the modules between Python 2 and 3:

    >>> def f(x):
    ...     r'''
    ...     >>> from http.client import HTTPException
    ...     >>> raise HTTPException() #doctest: +IGNORE_EXCEPTION_DETAIL
    ...     Traceback (most recent call last):
    ...     foo.bar.HTTPException
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=2)

Note that a trailing colon doesn't matter either:

    >>> def f(x):
    ...     r'''
    ...     >>> from http.client import HTTPException
    ...     >>> raise HTTPException() #doctest: +IGNORE_EXCEPTION_DETAIL
    ...     Traceback (most recent call last):
    ...     foo.bar.HTTPException:
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=2)

If an exception is raised but not expected, then it is reported as an
unexpected exception:

    >>> def f(x):
    ...     r'''
    ...     >>> 1//0
    ...     0
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 3, in f
    Failed example:
        1//0
    Exception raised:
        Traceback (most recent call last):
        ...
        ZeroDivisionError: integer division or modulo by zero
    TestResults(failed=1, attempted=1)
Nrrrrr�
exceptions�r-ztest_DocTestRunner.exceptionscCsdS)a�
Test that changing sys.displayhook doesn't matter for doctest.

    >>> import sys
    >>> orig_displayhook = sys.displayhook
    >>> def my_displayhook(x):
    ...     print('hi!')
    >>> sys.displayhook = my_displayhook
    >>> def f():
    ...     '''
    ...     >>> 3
    ...     3
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> r = doctest.DocTestRunner(verbose=False).run(test)
    >>> post_displayhook = sys.displayhook

    We need to restore sys.displayhook now, so that we'll be able to test
    results.

    >>> sys.displayhook = orig_displayhook

    Ok, now we can check that everything is ok.

    >>> r
    TestResults(failed=0, attempted=1)
    >>> post_displayhook is my_displayhook
    True
Nrrrrr�displayhook�r-ztest_DocTestRunner.displayhookcCsdS)a2
Tests of `DocTestRunner`'s option flag handling.

Several option flags can be used to customize the behavior of the test
runner.  These are defined as module constants in doctest, and passed
to the DocTestRunner constructor (multiple constants should be ORed
together).

The DONT_ACCEPT_TRUE_FOR_1 flag disables matches between True/False
and 1/0:

    >>> def f(x):
    ...     '>>> True\n1\n'

    >>> # Without the flag:
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=1)

    >>> # With the flag:
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> flags = doctest.DONT_ACCEPT_TRUE_FOR_1
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 2, in f
    Failed example:
        True
    Expected:
        1
    Got:
        True
    TestResults(failed=1, attempted=1)

The DONT_ACCEPT_BLANKLINE flag disables the match between blank lines
and the '<BLANKLINE>' marker:

    >>> def f(x):
    ...     '>>> print("a\\n\\nb")\na\n<BLANKLINE>\nb\n'

    >>> # Without the flag:
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=1)

    >>> # With the flag:
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> flags = doctest.DONT_ACCEPT_BLANKLINE
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 2, in f
    Failed example:
        print("a\n\nb")
    Expected:
        a
        <BLANKLINE>
        b
    Got:
        a
    <BLANKLINE>
        b
    TestResults(failed=1, attempted=1)

The NORMALIZE_WHITESPACE flag causes all sequences of whitespace to be
treated as equal:

    >>> def f(x):
    ...     '>>> print(1, 2, 3)\n  1   2\n 3'

    >>> # Without the flag:
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 2, in f
    Failed example:
        print(1, 2, 3)
    Expected:
          1   2
         3
    Got:
        1 2 3
    TestResults(failed=1, attempted=1)

    >>> # With the flag:
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> flags = doctest.NORMALIZE_WHITESPACE
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    TestResults(failed=0, attempted=1)

    An example from the docs:
    >>> print(list(range(20))) #doctest: +NORMALIZE_WHITESPACE
    [0,   1,  2,  3,  4,  5,  6,  7,  8,  9,
    10,  11, 12, 13, 14, 15, 16, 17, 18, 19]

The ELLIPSIS flag causes ellipsis marker ("...") in the expected
output to match any substring in the actual output:

    >>> def f(x):
    ...     '>>> print(list(range(15)))\n[0, 1, 2, ..., 14]\n'

    >>> # Without the flag:
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 2, in f
    Failed example:
        print(list(range(15)))
    Expected:
        [0, 1, 2, ..., 14]
    Got:
        [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
    TestResults(failed=1, attempted=1)

    >>> # With the flag:
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> flags = doctest.ELLIPSIS
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    TestResults(failed=0, attempted=1)

    ... also matches nothing:

    >>> if 1:
    ...     for i in range(100):
    ...         print(i**2, end=' ') #doctest: +ELLIPSIS
    ...     print('!')
    0 1...4...9 16 ... 36 49 64 ... 9801 !

    ... can be surprising; e.g., this test passes:

    >>> if 1:  #doctest: +ELLIPSIS
    ...     for i in range(20):
    ...         print(i, end=' ')
    ...     print(20)
    0 1 2 ...1...2...0

    Examples from the docs:

    >>> print(list(range(20))) # doctest:+ELLIPSIS
    [0, 1, ..., 18, 19]

    >>> print(list(range(20))) # doctest: +ELLIPSIS
    ...                 # doctest: +NORMALIZE_WHITESPACE
    [0,    1, ...,   18,    19]

The SKIP flag causes an example to be skipped entirely.  I.e., the
example is not run.  It can be useful in contexts where doctest
examples serve as both documentation and test cases, and an example
should be included for documentation purposes, but should not be
checked (e.g., because its output is random, or depends on resources
which would be unavailable.)  The SKIP flag can also be used for
'commenting out' broken examples.

    >>> import unavailable_resource           # doctest: +SKIP
    >>> unavailable_resource.do_something()   # doctest: +SKIP
    >>> unavailable_resource.blow_up()        # doctest: +SKIP
    Traceback (most recent call last):
        ...
    UncheckedBlowUpError:  Nobody checks me.

    >>> import random
    >>> print(random.random()) # doctest: +SKIP
    0.721216923889

The REPORT_UDIFF flag causes failures that involve multi-line expected
and actual outputs to be displayed using a unified diff:

    >>> def f(x):
    ...     r'''
    ...     >>> print('\n'.join('abcdefg'))
    ...     a
    ...     B
    ...     c
    ...     d
    ...     f
    ...     g
    ...     h
    ...     '''

    >>> # Without the flag:
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 3, in f
    Failed example:
        print('\n'.join('abcdefg'))
    Expected:
        a
        B
        c
        d
        f
        g
        h
    Got:
        a
        b
        c
        d
        e
        f
        g
    TestResults(failed=1, attempted=1)

    >>> # With the flag:
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> flags = doctest.REPORT_UDIFF
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 3, in f
    Failed example:
        print('\n'.join('abcdefg'))
    Differences (unified diff with -expected +actual):
        @@ -1,7 +1,7 @@
         a
        -B
        +b
         c
         d
        +e
         f
         g
        -h
    TestResults(failed=1, attempted=1)

The REPORT_CDIFF flag causes failures that involve multi-line expected
and actual outputs to be displayed using a context diff:

    >>> # Reuse f() from the REPORT_UDIFF example, above.
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> flags = doctest.REPORT_CDIFF
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 3, in f
    Failed example:
        print('\n'.join('abcdefg'))
    Differences (context diff with expected followed by actual):
        ***************
        *** 1,7 ****
          a
        ! B
          c
          d
          f
          g
        - h
        --- 1,7 ----
          a
        ! b
          c
          d
        + e
          f
          g
    TestResults(failed=1, attempted=1)


The REPORT_NDIFF flag causes failures to use the difflib.Differ algorithm
used by the popular ndiff.py utility.  This does intraline difference
marking, as well as interline differences.

    >>> def f(x):
    ...     r'''
    ...     >>> print("a b  c d e f g h i   j k l m")
    ...     a b c d e f g h i j k 1 m
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> flags = doctest.REPORT_NDIFF
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 3, in f
    Failed example:
        print("a b  c d e f g h i   j k l m")
    Differences (ndiff with -expected +actual):
        - a b c d e f g h i j k 1 m
        ?                       ^
        + a b  c d e f g h i   j k l m
        ?     +              ++    ^
    TestResults(failed=1, attempted=1)

The REPORT_ONLY_FIRST_FAILURE suppresses result output after the first
failing example:

    >>> def f(x):
    ...     r'''
    ...     >>> print(1) # first success
    ...     1
    ...     >>> print(2) # first failure
    ...     200
    ...     >>> print(3) # second failure
    ...     300
    ...     >>> print(4) # second success
    ...     4
    ...     >>> print(5) # third failure
    ...     500
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> flags = doctest.REPORT_ONLY_FIRST_FAILURE
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 5, in f
    Failed example:
        print(2) # first failure
    Expected:
        200
    Got:
        2
    TestResults(failed=3, attempted=5)

However, output from `report_start` is not suppressed:

    >>> doctest.DocTestRunner(verbose=True, optionflags=flags).run(test)
    ... # doctest: +ELLIPSIS
    Trying:
        print(1) # first success
    Expecting:
        1
    ok
    Trying:
        print(2) # first failure
    Expecting:
        200
    **********************************************************************
    File ..., line 5, in f
    Failed example:
        print(2) # first failure
    Expected:
        200
    Got:
        2
    TestResults(failed=3, attempted=5)

The FAIL_FAST flag causes the runner to exit after the first failing example,
so subsequent examples are not even attempted:

    >>> flags = doctest.FAIL_FAST
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 5, in f
    Failed example:
        print(2) # first failure
    Expected:
        200
    Got:
        2
    TestResults(failed=1, attempted=2)

Specifying both FAIL_FAST and REPORT_ONLY_FIRST_FAILURE is equivalent to
FAIL_FAST only:

    >>> flags = doctest.FAIL_FAST | doctest.REPORT_ONLY_FIRST_FAILURE
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 5, in f
    Failed example:
        print(2) # first failure
    Expected:
        200
    Got:
        2
    TestResults(failed=1, attempted=2)

For the purposes of both REPORT_ONLY_FIRST_FAILURE and FAIL_FAST, unexpected
exceptions count as failures:

    >>> def f(x):
    ...     r'''
    ...     >>> print(1) # first success
    ...     1
    ...     >>> raise ValueError(2) # first failure
    ...     200
    ...     >>> print(3) # second failure
    ...     300
    ...     >>> print(4) # second success
    ...     4
    ...     >>> print(5) # third failure
    ...     500
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> flags = doctest.REPORT_ONLY_FIRST_FAILURE
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 5, in f
    Failed example:
        raise ValueError(2) # first failure
    Exception raised:
        ...
        ValueError: 2
    TestResults(failed=3, attempted=5)
    >>> flags = doctest.FAIL_FAST
    >>> doctest.DocTestRunner(verbose=False, optionflags=flags).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 5, in f
    Failed example:
        raise ValueError(2) # first failure
    Exception raised:
        ...
        ValueError: 2
    TestResults(failed=1, attempted=2)

New option flags can also be registered, via register_optionflag().  Here
we reach into doctest's internals a bit.

    >>> unlikely = "UNLIKELY_OPTION_NAME"
    >>> unlikely in doctest.OPTIONFLAGS_BY_NAME
    False
    >>> new_flag_value = doctest.register_optionflag(unlikely)
    >>> unlikely in doctest.OPTIONFLAGS_BY_NAME
    True

Before 2.4.4/2.5, registering a name more than once erroneously created
more than one flag value.  Here we verify that's fixed:

    >>> redundant_flag_value = doctest.register_optionflag(unlikely)
    >>> redundant_flag_value == new_flag_value
    True

Clean up.
    >>> del doctest.OPTIONFLAGS_BY_NAME[unlikely]

    Nrrrrr�optionflags�r-ztest_DocTestRunner.optionflagscCsdS)a
Tests of `DocTestRunner`'s option directive mechanism.

Option directives can be used to turn option flags on or off for a
single example.  To turn an option on for an example, follow that
example with a comment of the form ``# doctest: +OPTION``:

    >>> def f(x): r'''
    ...     >>> print(list(range(10)))      # should fail: no ellipsis
    ...     [0, 1, ..., 9]
    ...
    ...     >>> print(list(range(10)))      # doctest: +ELLIPSIS
    ...     [0, 1, ..., 9]
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 2, in f
    Failed example:
        print(list(range(10)))      # should fail: no ellipsis
    Expected:
        [0, 1, ..., 9]
    Got:
        [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
    TestResults(failed=1, attempted=2)

To turn an option off for an example, follow that example with a
comment of the form ``# doctest: -OPTION``:

    >>> def f(x): r'''
    ...     >>> print(list(range(10)))
    ...     [0, 1, ..., 9]
    ...
    ...     >>> # should fail: no ellipsis
    ...     >>> print(list(range(10)))      # doctest: -ELLIPSIS
    ...     [0, 1, ..., 9]
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False,
    ...                       optionflags=doctest.ELLIPSIS).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 6, in f
    Failed example:
        print(list(range(10)))      # doctest: -ELLIPSIS
    Expected:
        [0, 1, ..., 9]
    Got:
        [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
    TestResults(failed=1, attempted=2)

Option directives affect only the example that they appear with; they
do not change the options for surrounding examples:

    >>> def f(x): r'''
    ...     >>> print(list(range(10)))      # Should fail: no ellipsis
    ...     [0, 1, ..., 9]
    ...
    ...     >>> print(list(range(10)))      # doctest: +ELLIPSIS
    ...     [0, 1, ..., 9]
    ...
    ...     >>> print(list(range(10)))      # Should fail: no ellipsis
    ...     [0, 1, ..., 9]
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 2, in f
    Failed example:
        print(list(range(10)))      # Should fail: no ellipsis
    Expected:
        [0, 1, ..., 9]
    Got:
        [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
    **********************************************************************
    File ..., line 8, in f
    Failed example:
        print(list(range(10)))      # Should fail: no ellipsis
    Expected:
        [0, 1, ..., 9]
    Got:
        [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
    TestResults(failed=2, attempted=3)

Multiple options may be modified by a single option directive.  They
may be separated by whitespace, commas, or both:

    >>> def f(x): r'''
    ...     >>> print(list(range(10)))      # Should fail
    ...     [0, 1,  ...,   9]
    ...     >>> print(list(range(10)))      # Should succeed
    ...     ... # doctest: +ELLIPSIS +NORMALIZE_WHITESPACE
    ...     [0, 1,  ...,   9]
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 2, in f
    Failed example:
        print(list(range(10)))      # Should fail
    Expected:
        [0, 1,  ...,   9]
    Got:
        [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
    TestResults(failed=1, attempted=2)

    >>> def f(x): r'''
    ...     >>> print(list(range(10)))      # Should fail
    ...     [0, 1,  ...,   9]
    ...     >>> print(list(range(10)))      # Should succeed
    ...     ... # doctest: +ELLIPSIS,+NORMALIZE_WHITESPACE
    ...     [0, 1,  ...,   9]
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 2, in f
    Failed example:
        print(list(range(10)))      # Should fail
    Expected:
        [0, 1,  ...,   9]
    Got:
        [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
    TestResults(failed=1, attempted=2)

    >>> def f(x): r'''
    ...     >>> print(list(range(10)))      # Should fail
    ...     [0, 1,  ...,   9]
    ...     >>> print(list(range(10)))      # Should succeed
    ...     ... # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
    ...     [0, 1,  ...,   9]
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File ..., line 2, in f
    Failed example:
        print(list(range(10)))      # Should fail
    Expected:
        [0, 1,  ...,   9]
    Got:
        [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
    TestResults(failed=1, attempted=2)

The option directive may be put on the line following the source, as
long as a continuation prompt is used:

    >>> def f(x): r'''
    ...     >>> print(list(range(10)))
    ...     ... # doctest: +ELLIPSIS
    ...     [0, 1, ..., 9]
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=1)

For examples with multi-line source, the option directive may appear
at the end of any line:

    >>> def f(x): r'''
    ...     >>> for x in range(10): # doctest: +ELLIPSIS
    ...     ...     print(' ', x, end='', sep='')
    ...      0 1 2 ... 9
    ...
    ...     >>> for x in range(10):
    ...     ...     print(' ', x, end='', sep='') # doctest: +ELLIPSIS
    ...      0 1 2 ... 9
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=2)

If more than one line of an example with multi-line source has an
option directive, then they are combined:

    >>> def f(x): r'''
    ...     Should fail (option directive not on the last line):
    ...         >>> for x in range(10): # doctest: +ELLIPSIS
    ...         ...     print(x, end=' ') # doctest: +NORMALIZE_WHITESPACE
    ...         0  1    2...9
    ...     '''
    >>> test = doctest.DocTestFinder().find(f)[0]
    >>> doctest.DocTestRunner(verbose=False).run(test)
    TestResults(failed=0, attempted=1)

It is an error to have a comment of the form ``# doctest:`` that is
*not* followed by words of the form ``+OPTION`` or ``-OPTION``, where
``OPTION`` is an option that has been registered with
`register_option`:

    >>> # Error: Option not registered
    >>> s = '>>> print(12)  #doctest: +BADOPTION'
    >>> test = doctest.DocTestParser().get_doctest(s, {}, 's', 's.py', 0)
    Traceback (most recent call last):
    ValueError: line 1 of the doctest for s has an invalid option: '+BADOPTION'

    >>> # Error: No + or - prefix
    >>> s = '>>> print(12)  #doctest: ELLIPSIS'
    >>> test = doctest.DocTestParser().get_doctest(s, {}, 's', 's.py', 0)
    Traceback (most recent call last):
    ValueError: line 1 of the doctest for s has an invalid option: 'ELLIPSIS'

It is an error to use an option directive on a line that contains no
source:

    >>> s = '>>> # doctest: +ELLIPSIS'
    >>> test = doctest.DocTestParser().get_doctest(s, {}, 's', 's.py', 0)
    Traceback (most recent call last):
    ValueError: line 0 of the doctest for s has an option directive on a line with no example: '# doctest: +ELLIPSIS'
Nrrrrr�option_directivesOr-z$test_DocTestRunner.option_directivesN)	rrrr0rDrErFrGrHrrrrrCs=Co4rCcCsdS)a�
Unit tests for `testsource()`.

The testsource() function takes a module and a name, finds the (first)
test with that name in that module, and converts it to a script. The
example code is converted to regular Python code.  The surrounding
words and expected output are converted to comments:

    >>> import test.test_doctest
    >>> name = 'test.test_doctest.sample_func'
    >>> print(doctest.testsource(test.test_doctest, name))
    # Blah blah
    #
    print(sample_func(22))
    # Expected:
    ## 44
    #
    # Yee ha!
    <BLANKLINE>

    >>> name = 'test.test_doctest.SampleNewStyleClass'
    >>> print(doctest.testsource(test.test_doctest, name))
    print('1\n2\n3')
    # Expected:
    ## 1
    ## 2
    ## 3
    <BLANKLINE>

    >>> name = 'test.test_doctest.SampleClass.a_classmethod'
    >>> print(doctest.testsource(test.test_doctest, name))
    print(SampleClass.a_classmethod(10))
    # Expected:
    ## 12
    print(SampleClass(0).a_classmethod(10))
    # Expected:
    ## 12
    <BLANKLINE>
Nrrrrr�test_testsource'r-rIcCsdS)aA

Create a docstring that we want to debug:

    >>> s = '''
    ...     >>> x = 12
    ...     >>> print(x)
    ...     12
    ...     '''

Create some fake stdin input, to feed to the debugger:

    >>> real_stdin = sys.stdin
    >>> sys.stdin = _FakeInput(['next', 'print(x)', 'continue'])

Run the debugger on the docstring, and then restore sys.stdin.

    >>> try: doctest.debug_src(s)
    ... finally: sys.stdin = real_stdin
    > <string>(1)<module>()
    (Pdb) next
    12
    --Return--
    > <string>(1)<module>()->None
    (Pdb) print(x)
    12
    (Pdb) continue

Nrrrrr�
test_debugOr-rJ�gettracecCsdS)uUsing pdb.set_trace from a doctest.

        You can use pdb.set_trace from a doctest.  To do so, you must
        retrieve the set_trace function from the pdb module at the time
        you use it.  The doctest module changes sys.stdout so that it can
        capture program output.  It also temporarily replaces pdb.set_trace
        with a version that restores stdout.  This is necessary for you to
        see debugger output.

          >>> doc = '''
          ... >>> x = 42
          ... >>> raise Exception('clé')
          ... Traceback (most recent call last):
          ... Exception: clé
          ... >>> import pdb; pdb.set_trace()
          ... '''
          >>> parser = doctest.DocTestParser()
          >>> test = parser.get_doctest(doc, {}, "foo-bar@baz", "foo-bar@baz.py", 0)
          >>> runner = doctest.DocTestRunner(verbose=False)

        To demonstrate this, we'll create a fake standard input that
        captures our debugger input:

          >>> real_stdin = sys.stdin
          >>> sys.stdin = _FakeInput([
          ...    'print(x)',  # print data defined by the example
          ...    'continue', # stop debugging
          ...    ''])

          >>> try: runner.run(test)
          ... finally: sys.stdin = real_stdin
          --Return--
          > <doctest foo-bar@baz[2]>(1)<module>()->None
          -> import pdb; pdb.set_trace()
          (Pdb) print(x)
          42
          (Pdb) continue
          TestResults(failed=0, attempted=3)

          You can also put pdb.set_trace in a function called from a test:

          >>> def calls_set_trace():
          ...    y=2
          ...    import pdb; pdb.set_trace()

          >>> doc = '''
          ... >>> x=1
          ... >>> calls_set_trace()
          ... '''
          >>> test = parser.get_doctest(doc, globals(), "foo-bar@baz", "foo-bar@baz.py", 0)
          >>> real_stdin = sys.stdin
          >>> sys.stdin = _FakeInput([
          ...    'print(y)',  # print data defined in the function
          ...    'up',       # out of function
          ...    'print(x)',  # print data defined by the example
          ...    'continue', # stop debugging
          ...    ''])

          >>> try:
          ...     runner.run(test)
          ... finally:
          ...     sys.stdin = real_stdin
          --Return--
          > <doctest test.test_doctest.test_pdb_set_trace[7]>(3)calls_set_trace()->None
          -> import pdb; pdb.set_trace()
          (Pdb) print(y)
          2
          (Pdb) up
          > <doctest foo-bar@baz[1]>(1)<module>()
          -> calls_set_trace()
          (Pdb) print(x)
          1
          (Pdb) continue
          TestResults(failed=0, attempted=2)

        During interactive debugging, source code is shown, even for
        doctest examples:

          >>> doc = '''
          ... >>> def f(x):
          ... ...     g(x*2)
          ... >>> def g(x):
          ... ...     print(x+3)
          ... ...     import pdb; pdb.set_trace()
          ... >>> f(3)
          ... '''
          >>> test = parser.get_doctest(doc, globals(), "foo-bar@baz", "foo-bar@baz.py", 0)
          >>> real_stdin = sys.stdin
          >>> sys.stdin = _FakeInput([
          ...    'list',     # list source from example 2
          ...    'next',     # return from g()
          ...    'list',     # list source from example 1
          ...    'next',     # return from f()
          ...    'list',     # list source from example 3
          ...    'continue', # stop debugging
          ...    ''])
          >>> try: runner.run(test)
          ... finally: sys.stdin = real_stdin
          ... # doctest: +NORMALIZE_WHITESPACE
          --Return--
          > <doctest foo-bar@baz[1]>(3)g()->None
          -> import pdb; pdb.set_trace()
          (Pdb) list
            1     def g(x):
            2         print(x+3)
            3  ->     import pdb; pdb.set_trace()
          [EOF]
          (Pdb) next
          --Return--
          > <doctest foo-bar@baz[0]>(2)f()->None
          -> g(x*2)
          (Pdb) list
            1     def f(x):
            2  ->     g(x*2)
          [EOF]
          (Pdb) next
          --Return--
          > <doctest foo-bar@baz[2]>(1)<module>()->None
          -> f(3)
          (Pdb) list
            1  -> f(3)
          [EOF]
          (Pdb) continue
          **********************************************************************
          File "foo-bar@baz.py", line 7, in foo-bar@baz
          Failed example:
              f(3)
          Expected nothing
          Got:
              9
          TestResults(failed=1, attempted=3)
          Nrrrrr�test_pdb_set_tracensrLcCsdS)a�
This illustrates more-demanding use of set_trace with nested functions.

        >>> class C(object):
        ...     def calls_set_trace(self):
        ...         y = 1
        ...         import pdb; pdb.set_trace()
        ...         self.f1()
        ...         y = 2
        ...     def f1(self):
        ...         x = 1
        ...         self.f2()
        ...         x = 2
        ...     def f2(self):
        ...         z = 1
        ...         z = 2

        >>> calls_set_trace = C().calls_set_trace

        >>> doc = '''
        ... >>> a = 1
        ... >>> calls_set_trace()
        ... '''
        >>> parser = doctest.DocTestParser()
        >>> runner = doctest.DocTestRunner(verbose=False)
        >>> test = parser.get_doctest(doc, globals(), "foo-bar@baz", "foo-bar@baz.py", 0)
        >>> real_stdin = sys.stdin
        >>> sys.stdin = _FakeInput([
        ...    'print(y)',  # print data defined in the function
        ...    'step', 'step', 'step', 'step', 'step', 'step', 'print(z)',
        ...    'up', 'print(x)',
        ...    'up', 'print(y)',
        ...    'up', 'print(foo)',
        ...    'continue', # stop debugging
        ...    ''])

        >>> try:
        ...     runner.run(test)
        ... finally:
        ...     sys.stdin = real_stdin
        ... # doctest: +REPORT_NDIFF
        > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(5)calls_set_trace()
        -> self.f1()
        (Pdb) print(y)
        1
        (Pdb) step
        --Call--
        > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(7)f1()
        -> def f1(self):
        (Pdb) step
        > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(8)f1()
        -> x = 1
        (Pdb) step
        > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(9)f1()
        -> self.f2()
        (Pdb) step
        --Call--
        > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(11)f2()
        -> def f2(self):
        (Pdb) step
        > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(12)f2()
        -> z = 1
        (Pdb) step
        > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(13)f2()
        -> z = 2
        (Pdb) print(z)
        1
        (Pdb) up
        > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(9)f1()
        -> self.f2()
        (Pdb) print(x)
        1
        (Pdb) up
        > <doctest test.test_doctest.test_pdb_set_trace_nested[0]>(5)calls_set_trace()
        -> self.f1()
        (Pdb) print(y)
        1
        (Pdb) up
        > <doctest foo-bar@baz[1]>(1)<module>()
        -> calls_set_trace()
        (Pdb) print(foo)
        *** NameError: name 'foo' is not defined
        (Pdb) continue
        TestResults(failed=0, attempted=2)
    Nrrrrr�test_pdb_set_trace_nested�srMcCsdS)aDocTestSuite creates a unittest test suite from a doctest.

       We create a Suite by providing a module.  A module can be provided
       by passing a module object:

         >>> import unittest
         >>> import test.sample_doctest
         >>> suite = doctest.DocTestSuite(test.sample_doctest)
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=9 errors=0 failures=4>

       We can also supply the module by name:

         >>> suite = doctest.DocTestSuite('test.sample_doctest')
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=9 errors=0 failures=4>

       The module need not contain any doctest examples:

         >>> suite = doctest.DocTestSuite('test.sample_doctest_no_doctests')
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=0 errors=0 failures=0>

       The module need not contain any docstrings either:

         >>> suite = doctest.DocTestSuite('test.sample_doctest_no_docstrings')
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=0 errors=0 failures=0>

       We can use the current module:

         >>> suite = test.sample_doctest.test_suite()
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=9 errors=0 failures=4>

       We can also provide a DocTestFinder:

         >>> finder = doctest.DocTestFinder()
         >>> suite = doctest.DocTestSuite('test.sample_doctest',
         ...                          test_finder=finder)
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=9 errors=0 failures=4>

       The DocTestFinder need not return any tests:

         >>> finder = doctest.DocTestFinder()
         >>> suite = doctest.DocTestSuite('test.sample_doctest_no_docstrings',
         ...                          test_finder=finder)
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=0 errors=0 failures=0>

       We can supply global variables.  If we pass globs, they will be
       used instead of the module globals.  Here we'll pass an empty
       globals, triggering an extra error:

         >>> suite = doctest.DocTestSuite('test.sample_doctest', globs={})
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=9 errors=0 failures=5>

       Alternatively, we can provide extra globals.  Here we'll make an
       error go away by providing an extra global variable:

         >>> suite = doctest.DocTestSuite('test.sample_doctest',
         ...                              extraglobs={'y': 1})
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=9 errors=0 failures=3>

       You can pass option flags.  Here we'll cause an extra error
       by disabling the blank-line feature:

         >>> suite = doctest.DocTestSuite('test.sample_doctest',
         ...                      optionflags=doctest.DONT_ACCEPT_BLANKLINE)
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=9 errors=0 failures=5>

       You can supply setUp and tearDown functions:

         >>> def setUp(t):
         ...     import test.test_doctest
         ...     test.test_doctest.sillySetup = True

         >>> def tearDown(t):
         ...     import test.test_doctest
         ...     del test.test_doctest.sillySetup

       Here, we installed a silly variable that the test expects:

         >>> suite = doctest.DocTestSuite('test.sample_doctest',
         ...      setUp=setUp, tearDown=tearDown)
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=9 errors=0 failures=3>

       But the tearDown restores sanity:

         >>> import test.test_doctest
         >>> test.test_doctest.sillySetup
         Traceback (most recent call last):
         ...
         AttributeError: module 'test.test_doctest' has no attribute 'sillySetup'

       The setUp and tearDown functions are passed test objects. Here
       we'll use the setUp function to supply the missing variable y:

         >>> def setUp(test):
         ...     test.globs['y'] = 1

         >>> suite = doctest.DocTestSuite('test.sample_doctest', setUp=setUp)
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=9 errors=0 failures=3>

       Here, we didn't need to use a tearDown function because we
       modified the test globals, which are a copy of the
       sample_doctest module dictionary.  The test globals are
       automatically cleared for us after a test.
       Nrrrrr�test_DocTestSuiteJsrNcCsdS)a�We can test tests found in text files using a DocFileSuite.

       We create a suite by providing the names of one or more text
       files that include examples:

         >>> import unittest
         >>> suite = doctest.DocFileSuite('test_doctest.txt',
         ...                              'test_doctest2.txt',
         ...                              'test_doctest4.txt')
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=3 errors=0 failures=2>

       The test files are looked for in the directory containing the
       calling module.  A package keyword argument can be provided to
       specify a different relative location.

         >>> import unittest
         >>> suite = doctest.DocFileSuite('test_doctest.txt',
         ...                              'test_doctest2.txt',
         ...                              'test_doctest4.txt',
         ...                              package='test')
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=3 errors=0 failures=2>

       Support for using a package's __loader__.get_data() is also
       provided.

         >>> import unittest, pkgutil, test
         >>> added_loader = False
         >>> if not hasattr(test, '__loader__'):
         ...     test.__loader__ = pkgutil.get_loader(test)
         ...     added_loader = True
         >>> try:
         ...     suite = doctest.DocFileSuite('test_doctest.txt',
         ...                                  'test_doctest2.txt',
         ...                                  'test_doctest4.txt',
         ...                                  package='test')
         ...     suite.run(unittest.TestResult())
         ... finally:
         ...     if added_loader:
         ...         del test.__loader__
         <unittest.result.TestResult run=3 errors=0 failures=2>

       '/' should be used as a path separator.  It will be converted
       to a native separator at run time:

         >>> suite = doctest.DocFileSuite('../test/test_doctest.txt')
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=1 errors=0 failures=1>

       If DocFileSuite is used from an interactive session, then files
       are resolved relative to the directory of sys.argv[0]:

         >>> import types, os.path, test.test_doctest
         >>> save_argv = sys.argv
         >>> sys.argv = [test.test_doctest.__file__]
         >>> suite = doctest.DocFileSuite('test_doctest.txt',
         ...                              package=types.ModuleType('__main__'))
         >>> sys.argv = save_argv

       By setting `module_relative=False`, os-specific paths may be
       used (including absolute paths and paths relative to the
       working directory):

         >>> # Get the absolute path of the test package.
         >>> test_doctest_path = os.path.abspath(test.test_doctest.__file__)
         >>> test_pkg_path = os.path.split(test_doctest_path)[0]

         >>> # Use it to find the absolute path of test_doctest.txt.
         >>> test_file = os.path.join(test_pkg_path, 'test_doctest.txt')

         >>> suite = doctest.DocFileSuite(test_file, module_relative=False)
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=1 errors=0 failures=1>

       It is an error to specify `package` when `module_relative=False`:

         >>> suite = doctest.DocFileSuite(test_file, module_relative=False,
         ...                              package='test')
         Traceback (most recent call last):
         ValueError: Package may only be specified for module-relative paths.

       You can specify initial global variables:

         >>> suite = doctest.DocFileSuite('test_doctest.txt',
         ...                              'test_doctest2.txt',
         ...                              'test_doctest4.txt',
         ...                              globs={'favorite_color': 'blue'})
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=3 errors=0 failures=1>

       In this case, we supplied a missing favorite color. You can
       provide doctest options:

         >>> suite = doctest.DocFileSuite('test_doctest.txt',
         ...                              'test_doctest2.txt',
         ...                              'test_doctest4.txt',
         ...                         optionflags=doctest.DONT_ACCEPT_BLANKLINE,
         ...                              globs={'favorite_color': 'blue'})
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=3 errors=0 failures=2>

       And, you can provide setUp and tearDown functions:

         >>> def setUp(t):
         ...     import test.test_doctest
         ...     test.test_doctest.sillySetup = True

         >>> def tearDown(t):
         ...     import test.test_doctest
         ...     del test.test_doctest.sillySetup

       Here, we installed a silly variable that the test expects:

         >>> suite = doctest.DocFileSuite('test_doctest.txt',
         ...                              'test_doctest2.txt',
         ...                              'test_doctest4.txt',
         ...                              setUp=setUp, tearDown=tearDown)
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=3 errors=0 failures=1>

       But the tearDown restores sanity:

         >>> import test.test_doctest
         >>> test.test_doctest.sillySetup
         Traceback (most recent call last):
         ...
         AttributeError: module 'test.test_doctest' has no attribute 'sillySetup'

       The setUp and tearDown functions are passed test objects.
       Here, we'll use a setUp function to set the favorite color in
       test_doctest.txt:

         >>> def setUp(test):
         ...     test.globs['favorite_color'] = 'blue'

         >>> suite = doctest.DocFileSuite('test_doctest.txt', setUp=setUp)
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=1 errors=0 failures=0>

       Here, we didn't need to use a tearDown function because we
       modified the test globals.  The test globals are
       automatically cleared for us after a test.

       Tests in a file run using `DocFileSuite` can also access the
       `__file__` global, which is set to the name of the file
       containing the tests:

         >>> suite = doctest.DocFileSuite('test_doctest3.txt')
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=1 errors=0 failures=0>

       If the tests contain non-ASCII characters, we have to specify which
       encoding the file is encoded with. We do so by using the `encoding`
       parameter:

         >>> suite = doctest.DocFileSuite('test_doctest.txt',
         ...                              'test_doctest2.txt',
         ...                              'test_doctest4.txt',
         ...                              encoding='utf-8')
         >>> suite.run(unittest.TestResult())
         <unittest.result.TestResult run=3 errors=0 failures=2>

       Nrrrrr�test_DocFileSuite�srOcCsdS)z{
    Trailing spaces in expected output are significant:

      >>> x, y = 'foo', ''
      >>> print(x, y)
      foo 

    Nrrrrr�test_trailing_space_in_teste	srPc@seZdZdd�Zdd�ZdS)�WrappercCs||_t�||�dSr)�func�	functools�update_wrapper)rrRrrrr
o	szWrapper.__init__cOs|j|i|��dSr)rR)r�args�kwargsrrr�__call__s	szWrapper.__call__N)rrrr
rWrrrrrQn	srQcCsdS)zr
    Docstrings in wrapped functions must be detected as well.

    >>> 'one other test'
    'one other test'
    Nrrrrr�test_look_in_unwrappedv	srXcCsdS)a�Default unittest reporting flags can be set to control reporting

    Here, we'll set the REPORT_ONLY_FIRST_FAILURE option so we see
    only the first failure of each test.  First, we'll look at the
    output without the flag.  The file test_doctest.txt file has two
    tests. They both fail if blank lines are disabled:

      >>> suite = doctest.DocFileSuite('test_doctest.txt',
      ...                          optionflags=doctest.DONT_ACCEPT_BLANKLINE)
      >>> import unittest
      >>> result = suite.run(unittest.TestResult())
      >>> print(result.failures[0][1]) # doctest: +ELLIPSIS
      Traceback ...
      Failed example:
          favorite_color
      ...
      Failed example:
          if 1:
      ...

    Note that we see both failures displayed.

      >>> old = doctest.set_unittest_reportflags(
      ...    doctest.REPORT_ONLY_FIRST_FAILURE)

    Now, when we run the test:

      >>> result = suite.run(unittest.TestResult())
      >>> print(result.failures[0][1]) # doctest: +ELLIPSIS
      Traceback ...
      Failed example:
          favorite_color
      Exception raised:
          ...
          NameError: name 'favorite_color' is not defined
      <BLANKLINE>
      <BLANKLINE>

    We get only the first failure.

    If we give any reporting options when we set up the tests,
    however:

      >>> suite = doctest.DocFileSuite('test_doctest.txt',
      ...     optionflags=doctest.DONT_ACCEPT_BLANKLINE | doctest.REPORT_NDIFF)

    Then the default eporting options are ignored:

      >>> result = suite.run(unittest.TestResult())

    *NOTE*: These doctest are intentionally not placed in raw string to depict
    the trailing whitespace using ` ` in the diff below.

      >>> print(result.failures[0][1]) # doctest: +ELLIPSIS
      Traceback ...
      Failed example:
          favorite_color
      ...
      Failed example:
          if 1:
             print('a')
             print()
             print('b')
      Differences (ndiff with -expected +actual):
            a
          - <BLANKLINE>
          + 
            b
      <BLANKLINE>
      <BLANKLINE>


    Test runners can restore the formatting flags after they run:

      >>> ignored = doctest.set_unittest_reportflags(old)

    Nrrrrr�test_unittest_reportflags	srYcCsdS)u%
Tests for the `testfile()` function.  This function runs all the
doctest examples in a given file.  In its simple invocation, it is
called with the name of a file, which is taken to be relative to the
calling module.  The return value is (#failures, #tests).

We don't want `-v` in sys.argv for these tests.

    >>> save_argv = sys.argv
    >>> if '-v' in sys.argv:
    ...     sys.argv = [arg for arg in save_argv if arg != '-v']


    >>> doctest.testfile('test_doctest.txt') # doctest: +ELLIPSIS
    **********************************************************************
    File "...", line 6, in test_doctest.txt
    Failed example:
        favorite_color
    Exception raised:
        ...
        NameError: name 'favorite_color' is not defined
    **********************************************************************
    1 items had failures:
       1 of   2 in test_doctest.txt
    ***Test Failed*** 1 failures.
    TestResults(failed=1, attempted=2)
    >>> doctest.master = None  # Reset master.

(Note: we'll be clearing doctest.master after each call to
`doctest.testfile`, to suppress warnings about multiple tests with the
same name.)

Globals may be specified with the `globs` and `extraglobs` parameters:

    >>> globs = {'favorite_color': 'blue'}
    >>> doctest.testfile('test_doctest.txt', globs=globs)
    TestResults(failed=0, attempted=2)
    >>> doctest.master = None  # Reset master.

    >>> extraglobs = {'favorite_color': 'red'}
    >>> doctest.testfile('test_doctest.txt', globs=globs,
    ...                  extraglobs=extraglobs) # doctest: +ELLIPSIS
    **********************************************************************
    File "...", line 6, in test_doctest.txt
    Failed example:
        favorite_color
    Expected:
        'blue'
    Got:
        'red'
    **********************************************************************
    1 items had failures:
       1 of   2 in test_doctest.txt
    ***Test Failed*** 1 failures.
    TestResults(failed=1, attempted=2)
    >>> doctest.master = None  # Reset master.

The file may be made relative to a given module or package, using the
optional `module_relative` parameter:

    >>> doctest.testfile('test_doctest.txt', globs=globs,
    ...                  module_relative='test')
    TestResults(failed=0, attempted=2)
    >>> doctest.master = None  # Reset master.

Verbosity can be increased with the optional `verbose` parameter:

    >>> doctest.testfile('test_doctest.txt', globs=globs, verbose=True)
    Trying:
        favorite_color
    Expecting:
        'blue'
    ok
    Trying:
        if 1:
           print('a')
           print()
           print('b')
    Expecting:
        a
        <BLANKLINE>
        b
    ok
    1 items passed all tests:
       2 tests in test_doctest.txt
    2 tests in 1 items.
    2 passed and 0 failed.
    Test passed.
    TestResults(failed=0, attempted=2)
    >>> doctest.master = None  # Reset master.

The name of the test may be specified with the optional `name`
parameter:

    >>> doctest.testfile('test_doctest.txt', name='newname')
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File "...", line 6, in newname
    ...
    TestResults(failed=1, attempted=2)
    >>> doctest.master = None  # Reset master.

The summary report may be suppressed with the optional `report`
parameter:

    >>> doctest.testfile('test_doctest.txt', report=False)
    ... # doctest: +ELLIPSIS
    **********************************************************************
    File "...", line 6, in test_doctest.txt
    Failed example:
        favorite_color
    Exception raised:
        ...
        NameError: name 'favorite_color' is not defined
    TestResults(failed=1, attempted=2)
    >>> doctest.master = None  # Reset master.

The optional keyword argument `raise_on_error` can be used to raise an
exception on the first error (which may be useful for postmortem
debugging):

    >>> doctest.testfile('test_doctest.txt', raise_on_error=True)
    ... # doctest: +ELLIPSIS
    Traceback (most recent call last):
    doctest.UnexpectedException: ...
    >>> doctest.master = None  # Reset master.

If the tests contain non-ASCII characters, the tests might fail, since
it's unknown which encoding is used. The encoding can be specified
using the optional keyword argument `encoding`:

    >>> doctest.testfile('test_doctest4.txt', encoding='latin-1') # doctest: +ELLIPSIS
    **********************************************************************
    File "...", line 7, in test_doctest4.txt
    Failed example:
        '...'
    Expected:
        'f\xf6\xf6'
    Got:
        'f\xc3\xb6\xc3\xb6'
    **********************************************************************
    ...
    **********************************************************************
    1 items had failures:
       2 of   2 in test_doctest4.txt
    ***Test Failed*** 2 failures.
    TestResults(failed=2, attempted=2)
    >>> doctest.master = None  # Reset master.

    >>> doctest.testfile('test_doctest4.txt', encoding='utf-8')
    TestResults(failed=0, attempted=2)
    >>> doctest.master = None  # Reset master.

Test the verbose output:

    >>> doctest.testfile('test_doctest4.txt', encoding='utf-8', verbose=True)
    Trying:
        'föö'
    Expecting:
        'f\xf6\xf6'
    ok
    Trying:
        'bąr'
    Expecting:
        'b\u0105r'
    ok
    1 items passed all tests:
       2 tests in test_doctest4.txt
    2 tests in 1 items.
    2 passed and 0 failed.
    Test passed.
    TestResults(failed=0, attempted=2)
    >>> doctest.master = None  # Reset master.
    >>> sys.argv = save_argv
Nrrrrr�
test_testfile�	r-rZc@seZdZddd�Zdd�ZdS)�TestImporterNcCstjj|||d�S)N)�loader)r;�util�spec_from_file_location)r�fullnamer6�targetrrr�	find_spec�
szTestImporter.find_speccCs8t|dd��}|��Wd�S1s*0YdS)N�rb)�mode)�open�read)rr6�frrr�get_data�
szTestImporter.get_data)N)rrrrargrrrrr[~
s
r[c@seZdZdd�Zdd�ZdS)�TestHookcCsltjdd�|_tjdd�|_tjdd�|_tj�|�tj��tj�	�|_
t�|_tj�|j�dSr)
r9r6�sys_path�	meta_path�
path_hooksr:�path_importer_cache�clear�modules�copy�modules_beforer[Zimporter)r�pathdirrrrr
�
s
zTestHook.__init__cCsV|jtjdd�<|jtjdd�<|jtjdd�<tj��tj��tj�|j	�dSr)
rir9r6rjrkrlrmrn�updaterprrrr�remove�
s

zTestHook.removeN)rrrr
rsrrrrrh�
s
rhccs*t|�}z|VW|��n
|��0dSr)rhrs)rq�hookrrr�	test_hook�
srucCsdS)al

*nix systems use \n line endings, while Windows systems use \r\n, and
old Mac systems used \r, which Python still recognizes as a line ending.  Python
handles this using universal newline mode for reading files.  Let's make
sure doctest does so (issue 8473) by creating temporary test files using each
of the three line disciplines.  At least one will not match either the universal
newline \n or os.linesep for the platform the test is run on.

Windows line endings first:

    >>> import tempfile, os
    >>> fn = tempfile.mktemp()
    >>> with open(fn, 'wb') as f:
    ...    f.write(b'Test:\r\n\r\n  >>> x = 1 + 1\r\n\r\nDone.\r\n')
    35
    >>> doctest.testfile(fn, module_relative=False, verbose=False)
    TestResults(failed=0, attempted=1)
    >>> os.remove(fn)

And now *nix line endings:

    >>> fn = tempfile.mktemp()
    >>> with open(fn, 'wb') as f:
    ...     f.write(b'Test:\n\n  >>> x = 1 + 1\n\nDone.\n')
    30
    >>> doctest.testfile(fn, module_relative=False, verbose=False)
    TestResults(failed=0, attempted=1)
    >>> os.remove(fn)

And finally old Mac line endings:

    >>> fn = tempfile.mktemp()
    >>> with open(fn, 'wb') as f:
    ...     f.write(b'Test:\r\r  >>> x = 1 + 1\r\rDone.\r')
    30
    >>> doctest.testfile(fn, module_relative=False, verbose=False)
    TestResults(failed=0, attempted=1)
    >>> os.remove(fn)

Now we test with a package loader that has a get_data method, since that
bypasses the standard universal newline handling so doctest has to do the
newline conversion itself; let's make sure it does so correctly (issue 1812).
We'll write a file inside the package that has all three kinds of line endings
in it, and use a package hook to install a custom loader; on any platform,
at least one of the line endings will raise a ValueError for inconsistent
whitespace if doctest does not correctly do the newline conversion.

    >>> dn = tempfile.mkdtemp()
    >>> pkg = os.path.join(dn, "doctest_testpkg")
    >>> os.mkdir(pkg)
    >>> support.create_empty_file(os.path.join(pkg, "__init__.py"))
    >>> fn = os.path.join(pkg, "doctest_testfile.txt")
    >>> with open(fn, 'wb') as f:
    ...     f.write(
    ...         b'Test:\r\n\r\n'
    ...         b'  >>> x = 1 + 1\r\n\r\n'
    ...         b'Done.\r\n'
    ...         b'Test:\n\n'
    ...         b'  >>> x = 1 + 1\n\n'
    ...         b'Done.\n'
    ...         b'Test:\r\r'
    ...         b'  >>> x = 1 + 1\r\r'
    ...         b'Done.\r'
    ...     )
    95
    >>> with test_hook(dn):
    ...     doctest.testfile("doctest_testfile.txt", package="doctest_testpkg", verbose=False)
    TestResults(failed=0, attempted=3)
    >>> shutil.rmtree(dn)

Nrrrrr�test_lineendings�
r-rvcCsdS)a�
Tests for the testmod function.  More might be useful, but for now we're just
testing the case raised by Issue 6195, where trying to doctest a C module would
fail with a UnicodeDecodeError because doctest tried to read the "source" lines
out of the binary module.

    >>> import unicodedata
    >>> doctest.testmod(unicodedata, verbose=False)
    TestResults(failed=0, attempted=0)
Nrrrrr�test_testmod�
r-rwufoo-bär@baz.pycCsdS)u�
Check doctest with a non-ascii filename:

    >>> doc = '''
    ... >>> raise Exception('clé')
    ... '''
    ...
    >>> parser = doctest.DocTestParser()
    >>> test = parser.get_doctest(doc, {}, "foo-bär@baz", "foo-bär@baz.py", 0)
    >>> test
    <DocTest foo-bär@baz from foo-bär@baz.py:0 (1 example)>
    >>> runner = doctest.DocTestRunner(verbose=False)
    >>> runner.run(test) # doctest: +ELLIPSIS
    **********************************************************************
    File "foo-bär@baz.py", line 2, in foo-bär@baz
    Failed example:
        raise Exception('clé')
    Exception raised:
        Traceback (most recent call last):
          File ...
            exec(compile(example.source, filename, "single",
          File "<doctest foo-bär@baz[0]>", line 1, in <module>
            raise Exception('clé')
        Exception: clé
    TestResults(failed=1, attempted=1)
    Nrrrrr�test_unicode�
r-rxcCsdS)a2
The doctest module can be used to run doctests against an arbitrary file.
These tests test this CLI functionality.

We'll use the support module's script_helpers for this, and write a test files
to a temp dir to run the command against.  Due to a current limitation in
script_helpers, though, we need a little utility function to turn the returned
output into something we can doctest against:

    >>> def normalize(s):
    ...     return '\n'.join(s.decode().splitlines())

With those preliminaries out of the way, we'll start with a file with two
simple tests and no errors.  We'll run both the unadorned doctest command, and
the verbose version, and then check the output:

    >>> from test.support import script_helper, temp_dir
    >>> with temp_dir() as tmpdir:
    ...     fn = os.path.join(tmpdir, 'myfile.doc')
    ...     with open(fn, 'w') as f:
    ...         _ = f.write('This is a very simple test file.\n')
    ...         _ = f.write('   >>> 1 + 1\n')
    ...         _ = f.write('   2\n')
    ...         _ = f.write('   >>> "a"\n')
    ...         _ = f.write("   'a'\n")
    ...         _ = f.write('\n')
    ...         _ = f.write('And that is it.\n')
    ...     rc1, out1, err1 = script_helper.assert_python_ok(
    ...             '-m', 'doctest', fn)
    ...     rc2, out2, err2 = script_helper.assert_python_ok(
    ...             '-m', 'doctest', '-v', fn)

With no arguments and passing tests, we should get no output:

    >>> rc1, out1, err1
    (0, b'', b'')

With the verbose flag, we should see the test output, but no error output:

    >>> rc2, err2
    (0, b'')
    >>> print(normalize(out2))
    Trying:
        1 + 1
    Expecting:
        2
    ok
    Trying:
        "a"
    Expecting:
        'a'
    ok
    1 items passed all tests:
       2 tests in myfile.doc
    2 tests in 1 items.
    2 passed and 0 failed.
    Test passed.

Now we'll write a couple files, one with three tests, the other a python module
with two tests, both of the files having "errors" in the tests that can be made
non-errors by applying the appropriate doctest options to the run (ELLIPSIS in
the first file, NORMALIZE_WHITESPACE in the second).  This combination will
allow thoroughly testing the -f and -o flags, as well as the doctest command's
ability to process more than one file on the command line and, since the second
file ends in '.py', its handling of python module files (as opposed to straight
text files).

    >>> from test.support import script_helper, temp_dir
    >>> with temp_dir() as tmpdir:
    ...     fn = os.path.join(tmpdir, 'myfile.doc')
    ...     with open(fn, 'w') as f:
    ...         _ = f.write('This is another simple test file.\n')
    ...         _ = f.write('   >>> 1 + 1\n')
    ...         _ = f.write('   2\n')
    ...         _ = f.write('   >>> "abcdef"\n')
    ...         _ = f.write("   'a...f'\n")
    ...         _ = f.write('   >>> "ajkml"\n')
    ...         _ = f.write("   'a...l'\n")
    ...         _ = f.write('\n')
    ...         _ = f.write('And that is it.\n')
    ...     fn2 = os.path.join(tmpdir, 'myfile2.py')
    ...     with open(fn2, 'w') as f:
    ...         _ = f.write('def test_func():\n')
    ...         _ = f.write('   \"\"\"\n')
    ...         _ = f.write('   This is simple python test function.\n')
    ...         _ = f.write('       >>> 1 + 1\n')
    ...         _ = f.write('       2\n')
    ...         _ = f.write('       >>> "abc   def"\n')
    ...         _ = f.write("       'abc def'\n")
    ...         _ = f.write("\n")
    ...         _ = f.write('   \"\"\"\n')
    ...     rc1, out1, err1 = script_helper.assert_python_failure(
    ...             '-m', 'doctest', fn, fn2)
    ...     rc2, out2, err2 = script_helper.assert_python_ok(
    ...             '-m', 'doctest', '-o', 'ELLIPSIS', fn)
    ...     rc3, out3, err3 = script_helper.assert_python_ok(
    ...             '-m', 'doctest', '-o', 'ELLIPSIS',
    ...             '-o', 'NORMALIZE_WHITESPACE', fn, fn2)
    ...     rc4, out4, err4 = script_helper.assert_python_failure(
    ...             '-m', 'doctest', '-f', fn, fn2)
    ...     rc5, out5, err5 = script_helper.assert_python_ok(
    ...             '-m', 'doctest', '-v', '-o', 'ELLIPSIS',
    ...             '-o', 'NORMALIZE_WHITESPACE', fn, fn2)

Our first test run will show the errors from the first file (doctest stops if a
file has errors).  Note that doctest test-run error output appears on stdout,
not stderr:

    >>> rc1, err1
    (1, b'')
    >>> print(normalize(out1))                # doctest: +ELLIPSIS
    **********************************************************************
    File "...myfile.doc", line 4, in myfile.doc
    Failed example:
        "abcdef"
    Expected:
        'a...f'
    Got:
        'abcdef'
    **********************************************************************
    File "...myfile.doc", line 6, in myfile.doc
    Failed example:
        "ajkml"
    Expected:
        'a...l'
    Got:
        'ajkml'
    **********************************************************************
    1 items had failures:
       2 of   3 in myfile.doc
    ***Test Failed*** 2 failures.

With -o ELLIPSIS specified, the second run, against just the first file, should
produce no errors, and with -o NORMALIZE_WHITESPACE also specified, neither
should the third, which ran against both files:

    >>> rc2, out2, err2
    (0, b'', b'')
    >>> rc3, out3, err3
    (0, b'', b'')

The fourth run uses FAIL_FAST, so we should see only one error:

    >>> rc4, err4
    (1, b'')
    >>> print(normalize(out4))                # doctest: +ELLIPSIS
    **********************************************************************
    File "...myfile.doc", line 4, in myfile.doc
    Failed example:
        "abcdef"
    Expected:
        'a...f'
    Got:
        'abcdef'
    **********************************************************************
    1 items had failures:
       1 of   2 in myfile.doc
    ***Test Failed*** 1 failures.

The fifth test uses verbose with the two options, so we should get verbose
success output for the tests in both files:

    >>> rc5, err5
    (0, b'')
    >>> print(normalize(out5))
    Trying:
        1 + 1
    Expecting:
        2
    ok
    Trying:
        "abcdef"
    Expecting:
        'a...f'
    ok
    Trying:
        "ajkml"
    Expecting:
        'a...l'
    ok
    1 items passed all tests:
       3 tests in myfile.doc
    3 tests in 1 items.
    3 passed and 0 failed.
    Test passed.
    Trying:
        1 + 1
    Expecting:
        2
    ok
    Trying:
        "abc   def"
    Expecting:
        'abc def'
    ok
    1 items had no tests:
        myfile2
    1 items passed all tests:
       2 tests in myfile2.test_func
    2 tests in 2 items.
    2 passed and 0 failed.
    Test passed.

We should also check some typical error cases.

Invalid file name:

    >>> rc, out, err = script_helper.assert_python_failure(
    ...         '-m', 'doctest', 'nosuchfile')
    >>> rc, out
    (1, b'')
    >>> print(normalize(err))                    # doctest: +ELLIPSIS
    Traceback (most recent call last):
      ...
    FileNotFoundError: [Errno ...] No such file or directory: 'nosuchfile'

Invalid doctest option:

    >>> rc, out, err = script_helper.assert_python_failure(
    ...         '-m', 'doctest', '-o', 'nosuchoption')
    >>> rc, out
    (2, b'')
    >>> print(normalize(err))                    # doctest: +ELLIPSIS
    usage...invalid...nosuchoption...

Nrrrrr�test_CLIr-rycCsdS)a�
    The fancy reports had a bug for a long time where any trailing whitespace on
    the reported diff lines was stripped, making it impossible to see the
    differences in line reported as different that differed only in the amount of
    trailing whitespace.  The whitespace still isn't particularly visible unless
    you use NDIFF, but at least it is now there to be found.

    *NOTE*: This snippet was intentionally put inside a raw string to get rid of
    leading whitespace error in executing the example below

    >>> def f(x):
    ...     r'''
    ...     >>> print('\n'.join(['a    ', 'b']))
    ...     a
    ...     b
    ...     '''
    Nrrrrr�%test_no_trailing_whitespace_stripping�srzcCsdS)a�
    It was not possible to run the same DocTestSuite multiple times
    http://bugs.python.org/issue2604
    http://bugs.python.org/issue9736

    >>> import unittest
    >>> import test.sample_doctest
    >>> suite = doctest.DocTestSuite(test.sample_doctest)
    >>> suite.run(unittest.TestResult())
    <unittest.result.TestResult run=9 errors=0 failures=4>
    >>> suite.run(unittest.TestResult())
    <unittest.result.TestResult run=9 errors=0 failures=4>
    Nrrrrr�$test_run_doctestsuite_multiple_times&sr{cCs"|�t�t��|�t���|Sr)ZaddTestr=ZDocTestSuite)r\Ztests�patternrrr�
load_tests6sr}cCsPt�d�}|jtjtjgddd�}|�d�|��}td�|j	dd|d�dS)	N�tracerr)Z
ignoredirsr~�countztest_main()zWriting coverage results...T)Zshow_missingZsummary�coverdir)
rr<ZTracer9�base_prefix�base_exec_prefix�runZresultsr)Z
write_results)r�r~Ztracer�rrrr�
test_coverage<s
�
�r��__main__z-cz/tmp/doctest.cover);r �testrr=rSr5r9r;�
importlib.abc�importlib.utilZunittestr4Zshutil�
contextlibrr�objectr$r%r,r.r/ZTestCaser3rBrCrIrJ�hasattrrKrLrMrNrOrPrQrXrYrZ�abc�MetaPathFinder�ResourceLoaderr[rh�contextmanagerrurvrw�fsencode�UnicodeEncodeErrorrxryrzr{r}r�r�argv�mainrrrr�<module>s�	Y y7(Vu'	
O1	
Hd*



Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
22 Jul 2025 4.13 AM
root / linksafe
0755
__init__.cpython-39.opt-1.pyc
0.138 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
__init__.cpython-39.opt-2.pyc
0.138 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
__init__.cpython-39.pyc
0.138 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
__main__.cpython-39.opt-1.pyc
0.189 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
__main__.cpython-39.opt-2.pyc
0.189 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
__main__.cpython-39.pyc
0.189 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_test_multiprocessing.cpython-39.opt-1.pyc
161.864 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_test_multiprocessing.cpython-39.opt-2.pyc
160.099 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_test_multiprocessing.cpython-39.pyc
162.889 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_typed_dict_helper.cpython-39.opt-1.pyc
0.808 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_typed_dict_helper.cpython-39.opt-2.pyc
0.464 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_typed_dict_helper.cpython-39.pyc
0.808 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module.cpython-39.opt-1.pyc
2.785 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module.cpython-39.opt-2.pyc
2.654 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module.cpython-39.pyc
2.785 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module2.cpython-39.opt-1.pyc
1.443 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module2.cpython-39.opt-2.pyc
1.329 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module2.cpython-39.pyc
1.443 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module3.cpython-39.opt-1.pyc
1.098 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module3.cpython-39.opt-2.pyc
0.944 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module3.cpython-39.pyc
1.098 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module5.cpython-39.opt-1.pyc
0.473 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module5.cpython-39.opt-2.pyc
0.473 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module5.cpython-39.pyc
0.473 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module6.cpython-39.opt-1.pyc
0.287 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module6.cpython-39.opt-2.pyc
0.287 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module6.cpython-39.pyc
0.287 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module7.cpython-39.opt-1.pyc
0.532 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module7.cpython-39.opt-2.pyc
0.384 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ann_module7.cpython-39.pyc
0.532 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
audiotests.cpython-39.opt-1.pyc
11.413 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
audiotests.cpython-39.opt-2.pyc
11.413 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
audiotests.cpython-39.pyc
11.413 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
audit-tests.cpython-39.opt-1.pyc
11.813 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
audit-tests.cpython-39.opt-2.pyc
11.463 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
audit-tests.cpython-39.pyc
11.899 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
autotest.cpython-39.opt-1.pyc
0.189 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
autotest.cpython-39.opt-2.pyc
0.189 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
autotest.cpython-39.pyc
0.189 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bad_getattr.cpython-39.opt-1.pyc
0.21 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bad_getattr.cpython-39.opt-2.pyc
0.21 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bad_getattr.cpython-39.pyc
0.21 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bad_getattr2.cpython-39.opt-1.pyc
0.368 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bad_getattr2.cpython-39.opt-2.pyc
0.361 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bad_getattr2.cpython-39.pyc
0.368 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bad_getattr3.cpython-39.opt-1.pyc
0.311 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bad_getattr3.cpython-39.opt-2.pyc
0.311 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bad_getattr3.cpython-39.pyc
0.311 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bisect_cmd.cpython-39.opt-1.pyc
4.835 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bisect_cmd.cpython-39.opt-2.pyc
4.33 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bisect_cmd.cpython-39.pyc
4.835 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
coding20731.cpython-39.opt-1.pyc
0.141 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
coding20731.cpython-39.opt-2.pyc
0.141 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
coding20731.cpython-39.pyc
0.141 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
curses_tests.cpython-39.opt-1.pyc
1.136 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
curses_tests.cpython-39.opt-2.pyc
1.136 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
curses_tests.cpython-39.pyc
1.136 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_1.cpython-39.opt-1.pyc
0.893 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_1.cpython-39.opt-2.pyc
0.893 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_1.cpython-39.pyc
0.893 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_1_str.cpython-39.opt-1.pyc
1.01 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_1_str.cpython-39.opt-2.pyc
1.01 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_1_str.cpython-39.pyc
1.01 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_2.cpython-39.opt-1.pyc
0.89 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_2.cpython-39.opt-2.pyc
0.89 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_2.cpython-39.pyc
0.89 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_2_str.cpython-39.opt-1.pyc
0.969 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_2_str.cpython-39.opt-2.pyc
0.969 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_module_2_str.cpython-39.pyc
0.969 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_textanno.cpython-39.opt-1.pyc
0.542 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_textanno.cpython-39.opt-2.pyc
0.542 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dataclass_textanno.cpython-39.pyc
0.542 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
datetimetester.cpython-39.opt-1.pyc
189.53 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
datetimetester.cpython-39.opt-2.pyc
188.789 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
datetimetester.cpython-39.pyc
190.033 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dis_module.cpython-39.opt-1.pyc
0.32 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dis_module.cpython-39.opt-2.pyc
0.32 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dis_module.cpython-39.pyc
0.32 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
doctest_aliases.cpython-39.opt-1.pyc
0.52 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
doctest_aliases.cpython-39.opt-2.pyc
0.406 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
doctest_aliases.cpython-39.pyc
0.52 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
double_const.cpython-39.opt-1.pyc
0.557 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
double_const.cpython-39.opt-2.pyc
0.557 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
double_const.cpython-39.pyc
0.593 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
final_a.cpython-39.opt-1.pyc
0.709 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
final_a.cpython-39.opt-2.pyc
0.64 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
final_a.cpython-39.pyc
0.709 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
final_b.cpython-39.opt-1.pyc
0.709 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
final_b.cpython-39.opt-2.pyc
0.64 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
final_b.cpython-39.pyc
0.709 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
fork_wait.cpython-39.opt-1.pyc
2.396 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
fork_wait.cpython-39.opt-2.pyc
2.016 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
fork_wait.cpython-39.pyc
2.396 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
future_test1.cpython-39.opt-1.pyc
0.465 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
future_test1.cpython-39.opt-2.pyc
0.435 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
future_test1.cpython-39.pyc
0.465 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
future_test2.cpython-39.opt-1.pyc
0.47 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
future_test2.cpython-39.opt-2.pyc
0.439 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
future_test2.cpython-39.pyc
0.47 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
gdb_sample.cpython-39.opt-1.pyc
0.502 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
gdb_sample.cpython-39.opt-2.pyc
0.502 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
gdb_sample.cpython-39.pyc
0.502 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
good_getattr.cpython-39.opt-1.pyc
0.473 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
good_getattr.cpython-39.opt-2.pyc
0.473 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
good_getattr.cpython-39.pyc
0.473 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
imp_dummy.cpython-39.opt-1.pyc
0.152 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
imp_dummy.cpython-39.opt-2.pyc
0.152 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
imp_dummy.cpython-39.pyc
0.152 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
inspect_fodder.cpython-39.opt-1.pyc
3.268 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
inspect_fodder.cpython-39.opt-2.pyc
3.088 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
inspect_fodder.cpython-39.pyc
3.268 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
inspect_fodder2.cpython-39.opt-1.pyc
9.649 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
inspect_fodder2.cpython-39.opt-2.pyc
9.601 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
inspect_fodder2.cpython-39.pyc
9.649 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
list_tests.cpython-39.opt-1.pyc
16.197 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
list_tests.cpython-39.opt-2.pyc
16.138 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
list_tests.cpython-39.pyc
16.197 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
lock_tests.cpython-39.opt-1.pyc
29.023 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
lock_tests.cpython-39.opt-2.pyc
27.638 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
lock_tests.cpython-39.pyc
29.023 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
make_ssl_certs.cpython-39.opt-1.pyc
8.054 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
make_ssl_certs.cpython-39.opt-2.pyc
7.96 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
make_ssl_certs.cpython-39.pyc
8.054 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mapping_tests.cpython-39.opt-1.pyc
25.578 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mapping_tests.cpython-39.opt-2.pyc
25.385 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mapping_tests.cpython-39.pyc
25.578 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
memory_watchdog.cpython-39.opt-1.pyc
0.724 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
memory_watchdog.cpython-39.opt-2.pyc
0.598 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
memory_watchdog.cpython-39.pyc
0.724 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mock_socket.cpython-39.opt-1.pyc
5.363 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mock_socket.cpython-39.opt-2.pyc
5.157 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mock_socket.cpython-39.pyc
5.363 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mod_generics_cache.cpython-39.opt-1.pyc
1.431 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mod_generics_cache.cpython-39.opt-2.pyc
1.347 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mod_generics_cache.cpython-39.pyc
1.431 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mp_fork_bomb.cpython-39.opt-1.pyc
0.477 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mp_fork_bomb.cpython-39.opt-2.pyc
0.477 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mp_fork_bomb.cpython-39.pyc
0.477 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mp_preload.cpython-39.opt-1.pyc
0.521 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mp_preload.cpython-39.opt-2.pyc
0.521 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
mp_preload.cpython-39.pyc
0.521 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
multibytecodec_support.cpython-39.opt-1.pyc
12.911 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
multibytecodec_support.cpython-39.opt-2.pyc
12.911 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
multibytecodec_support.cpython-39.pyc
12.93 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pickletester.cpython-39.opt-1.pyc
117.89 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pickletester.cpython-39.opt-2.pyc
116.348 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pickletester.cpython-39.pyc
118.054 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
profilee.cpython-39.opt-1.pyc
2.447 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
profilee.cpython-39.opt-2.pyc
2.031 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
profilee.cpython-39.pyc
2.447 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pyclbr_input.cpython-39.opt-1.pyc
1.363 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pyclbr_input.cpython-39.opt-2.pyc
1.318 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pyclbr_input.cpython-39.pyc
1.363 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pydoc_mod.cpython-39.opt-1.pyc
1.932 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pydoc_mod.cpython-39.opt-2.pyc
1.692 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pydoc_mod.cpython-39.pyc
1.932 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pydocfodder.cpython-39.opt-1.pyc
11.893 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pydocfodder.cpython-39.opt-2.pyc
10.856 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pydocfodder.cpython-39.pyc
11.893 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pythoninfo.cpython-39.opt-1.pyc
17.72 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pythoninfo.cpython-39.opt-2.pyc
17.55 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
pythoninfo.cpython-39.pyc
17.72 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
re_tests.cpython-39.opt-1.pyc
12.917 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
re_tests.cpython-39.opt-2.pyc
12.917 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
re_tests.cpython-39.pyc
12.917 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
regrtest.cpython-39.opt-1.pyc
0.693 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
regrtest.cpython-39.opt-2.pyc
0.585 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
regrtest.cpython-39.pyc
0.721 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
relimport.cpython-39.opt-1.pyc
0.166 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
relimport.cpython-39.opt-2.pyc
0.166 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
relimport.cpython-39.pyc
0.166 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
reperf.cpython-39.opt-1.pyc
0.835 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
reperf.cpython-39.opt-2.pyc
0.835 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
reperf.cpython-39.pyc
0.835 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sample_doctest.cpython-39.opt-1.pyc
1.672 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sample_doctest.cpython-39.opt-2.pyc
1.087 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sample_doctest.cpython-39.pyc
1.672 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sample_doctest_no_docstrings.cpython-39.opt-1.pyc
0.419 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sample_doctest_no_docstrings.cpython-39.opt-2.pyc
0.419 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sample_doctest_no_docstrings.cpython-39.pyc
0.419 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sample_doctest_no_doctests.cpython-39.opt-1.pyc
0.634 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sample_doctest_no_doctests.cpython-39.opt-2.pyc
0.417 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sample_doctest_no_doctests.cpython-39.pyc
0.634 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
seq_tests.cpython-39.opt-1.pyc
16.473 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
seq_tests.cpython-39.opt-2.pyc
16.065 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
seq_tests.cpython-39.pyc
16.473 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
signalinterproctester.cpython-39.opt-1.pyc
2.72 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
signalinterproctester.cpython-39.opt-2.pyc
2.72 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
signalinterproctester.cpython-39.pyc
2.72 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sortperf.cpython-39.opt-1.pyc
3.887 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sortperf.cpython-39.opt-2.pyc
2.98 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sortperf.cpython-39.pyc
3.911 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ssl_servers.cpython-39.opt-1.pyc
6.781 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ssl_servers.cpython-39.opt-2.pyc
6.402 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ssl_servers.cpython-39.pyc
6.781 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ssltests.cpython-39.opt-1.pyc
0.843 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ssltests.cpython-39.opt-2.pyc
0.843 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ssltests.cpython-39.pyc
0.843 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
string_tests.cpython-39.opt-1.pyc
40.674 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
string_tests.cpython-39.opt-2.pyc
40.589 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
string_tests.cpython-39.pyc
40.674 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test___all__.cpython-39.opt-1.pyc
3.146 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test___all__.cpython-39.opt-2.pyc
3.146 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test___all__.cpython-39.pyc
3.146 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test___future__.cpython-39.opt-1.pyc
2.1 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test___future__.cpython-39.opt-2.pyc
2.1 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test___future__.cpython-39.pyc
2.1 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__locale.cpython-39.opt-1.pyc
5.46 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__locale.cpython-39.opt-2.pyc
5.406 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__locale.cpython-39.pyc
5.46 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__opcode.cpython-39.opt-1.pyc
2.064 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__opcode.cpython-39.opt-2.pyc
2.064 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__opcode.cpython-39.pyc
2.064 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__osx_support.cpython-39.opt-1.pyc
9.627 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__osx_support.cpython-39.opt-2.pyc
9.551 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__osx_support.cpython-39.pyc
9.627 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__xxsubinterpreters.cpython-39.opt-1.pyc
68.024 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__xxsubinterpreters.cpython-39.opt-2.pyc
66.676 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test__xxsubinterpreters.cpython-39.pyc
68.073 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_abc.cpython-39.opt-1.pyc
35.212 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_abc.cpython-39.opt-2.pyc
35.174 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_abc.cpython-39.pyc
35.212 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_abstract_numbers.cpython-39.opt-1.pyc
1.665 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_abstract_numbers.cpython-39.opt-2.pyc
1.623 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_abstract_numbers.cpython-39.pyc
1.665 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_aifc.cpython-39.opt-1.pyc
19.661 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_aifc.cpython-39.opt-2.pyc
19.661 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_aifc.cpython-39.pyc
19.661 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_argparse.cpython-39.opt-1.pyc
171.685 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_argparse.cpython-39.opt-2.pyc
162.378 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_argparse.cpython-39.pyc
171.92 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_array.cpython-39.opt-1.pyc
42.32 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_array.cpython-39.opt-2.pyc
42.265 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_array.cpython-39.pyc
42.32 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asdl_parser.cpython-39.opt-1.pyc
4.87 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asdl_parser.cpython-39.opt-2.pyc
4.812 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asdl_parser.cpython-39.pyc
4.87 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ast.cpython-39.opt-1.pyc
88.768 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ast.cpython-39.opt-2.pyc
88.568 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ast.cpython-39.pyc
88.81 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asyncgen.cpython-39.opt-1.pyc
44.406 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asyncgen.cpython-39.opt-2.pyc
44.406 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asyncgen.cpython-39.pyc
44.406 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asynchat.cpython-39.opt-1.pyc
8.938 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asynchat.cpython-39.opt-2.pyc
8.938 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asynchat.cpython-39.pyc
8.938 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asyncore.cpython-39.opt-1.pyc
31.229 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asyncore.cpython-39.opt-2.pyc
31.07 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_asyncore.cpython-39.pyc
31.229 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_atexit.cpython-39.opt-1.pyc
7.854 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_atexit.cpython-39.opt-2.pyc
7.854 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_atexit.cpython-39.pyc
7.854 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_audioop.cpython-39.opt-1.pyc
18.99 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_audioop.cpython-39.opt-2.pyc
18.99 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_audioop.cpython-39.pyc
18.99 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_audit.cpython-39.opt-1.pyc
5.185 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_audit.cpython-39.opt-2.pyc
5.128 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_audit.cpython-39.pyc
5.185 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_augassign.cpython-39.opt-1.pyc
12.854 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_augassign.cpython-39.opt-2.pyc
12.778 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_augassign.cpython-39.pyc
12.854 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_base64.cpython-39.opt-1.pyc
19.038 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_base64.cpython-39.opt-2.pyc
19.038 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_base64.cpython-39.pyc
19.038 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_baseexception.cpython-39.opt-1.pyc
6.016 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_baseexception.cpython-39.opt-2.pyc
5.772 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_baseexception.cpython-39.pyc
6.016 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bdb.cpython-39.opt-1.pyc
32.848 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bdb.cpython-39.opt-2.pyc
28.315 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bdb.cpython-39.pyc
32.898 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bigaddrspace.cpython-39.opt-1.pyc
2.727 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bigaddrspace.cpython-39.opt-2.pyc
2.375 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bigaddrspace.cpython-39.pyc
2.727 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bigmem.cpython-39.opt-1.pyc
35.044 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bigmem.cpython-39.opt-2.pyc
34.557 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bigmem.cpython-39.pyc
35.044 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_binascii.cpython-39.opt-1.pyc
14.578 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_binascii.cpython-39.opt-2.pyc
14.4 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_binascii.cpython-39.pyc
14.578 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_binhex.cpython-39.opt-1.pyc
2.535 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_binhex.cpython-39.opt-2.pyc
2.171 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_binhex.cpython-39.pyc
2.535 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_binop.cpython-39.opt-1.pyc
15.368 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_binop.cpython-39.opt-2.pyc
13.397 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_binop.cpython-39.pyc
15.368 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bisect.cpython-39.opt-1.pyc
12.76 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bisect.cpython-39.opt-2.pyc
12.478 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bisect.cpython-39.pyc
12.76 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bool.cpython-39.opt-1.pyc
12.232 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bool.cpython-39.opt-2.pyc
12.232 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bool.cpython-39.pyc
12.232 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_buffer.cpython-39.opt-1.pyc
96.816 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_buffer.cpython-39.opt-2.pyc
92.822 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_buffer.cpython-39.pyc
96.816 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bufio.cpython-39.opt-1.pyc
2.897 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bufio.cpython-39.opt-2.pyc
2.897 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bufio.cpython-39.pyc
2.897 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_builtin.cpython-39.opt-1.pyc
78.713 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_builtin.cpython-39.opt-2.pyc
77.831 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_builtin.cpython-39.pyc
78.713 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bytes.cpython-39.opt-1.pyc
68.572 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bytes.cpython-39.opt-2.pyc
68.404 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bytes.cpython-39.pyc
68.572 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bz2.cpython-39.opt-1.pyc
42.067 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bz2.cpython-39.opt-2.pyc
41.91 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_bz2.cpython-39.pyc
42.067 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_c_locale_coercion.cpython-39.opt-1.pyc
10.119 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_c_locale_coercion.cpython-39.opt-2.pyc
8.865 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_c_locale_coercion.cpython-39.pyc
10.119 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_calendar.cpython-39.opt-1.pyc
50.016 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_calendar.cpython-39.opt-2.pyc
50.016 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_calendar.cpython-39.pyc
50.016 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_call.cpython-39.opt-1.pyc
26.754 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_call.cpython-39.opt-2.pyc
26.037 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_call.cpython-39.pyc
26.754 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_capi.cpython-39.opt-1.pyc
36.649 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_capi.cpython-39.opt-2.pyc
36.014 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_capi.cpython-39.pyc
36.649 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cgi.cpython-39.opt-1.pyc
19.04 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cgi.cpython-39.opt-2.pyc
19.04 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cgi.cpython-39.pyc
19.04 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cgitb.cpython-39.opt-1.pyc
2.565 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cgitb.cpython-39.opt-2.pyc
2.565 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cgitb.cpython-39.pyc
2.565 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_charmapcodec.cpython-39.opt-1.pyc
2 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_charmapcodec.cpython-39.opt-2.pyc
1.764 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_charmapcodec.cpython-39.pyc
2 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_check_c_globals.cpython-39.opt-1.pyc
0.905 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_check_c_globals.cpython-39.opt-2.pyc
0.905 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_check_c_globals.cpython-39.pyc
0.905 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_class.cpython-39.opt-1.pyc
16.796 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_class.cpython-39.opt-2.pyc
16.717 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_class.cpython-39.pyc
16.796 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_clinic.cpython-39.opt-1.pyc
26.243 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_clinic.cpython-39.opt-2.pyc
26.243 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_clinic.cpython-39.pyc
26.398 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmath.cpython-39.opt-1.pyc
21.02 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmath.cpython-39.opt-2.pyc
19.958 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmath.cpython-39.pyc
21.02 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmd.cpython-39.opt-1.pyc
7.688 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmd.cpython-39.opt-2.pyc
4.549 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmd.cpython-39.pyc
7.688 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmd_line.cpython-39.opt-1.pyc
27.758 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmd_line.cpython-39.opt-2.pyc
27.758 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmd_line.cpython-39.pyc
27.758 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmd_line_script.cpython-39.opt-1.pyc
25.268 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmd_line_script.cpython-39.opt-2.pyc
25.268 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cmd_line_script.cpython-39.pyc
25.268 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_code.cpython-39.opt-1.pyc
12.708 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_code.cpython-39.opt-2.pyc
10.617 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_code.cpython-39.pyc
12.725 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_code_module.cpython-39.opt-1.pyc
5.396 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_code_module.cpython-39.opt-2.pyc
5.268 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_code_module.cpython-39.pyc
5.396 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codeccallbacks.cpython-39.opt-1.pyc
34.659 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codeccallbacks.cpython-39.opt-2.pyc
34.659 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codeccallbacks.cpython-39.pyc
34.659 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_cn.cpython-39.opt-1.pyc
2.164 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_cn.cpython-39.opt-2.pyc
2.164 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_cn.cpython-39.pyc
2.164 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_hk.cpython-39.opt-1.pyc
0.667 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_hk.cpython-39.opt-2.pyc
0.667 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_hk.cpython-39.pyc
0.667 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_iso2022.cpython-39.opt-1.pyc
2.39 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_iso2022.cpython-39.opt-2.pyc
2.39 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_iso2022.cpython-39.pyc
2.39 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_jp.cpython-39.opt-1.pyc
3.076 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_jp.cpython-39.opt-2.pyc
3.076 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_jp.cpython-39.pyc
3.076 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_kr.cpython-39.opt-1.pyc
1.629 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_kr.cpython-39.opt-2.pyc
1.629 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_kr.cpython-39.pyc
1.629 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_tw.cpython-39.opt-1.pyc
0.657 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_tw.cpython-39.opt-2.pyc
0.657 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecencodings_tw.cpython-39.pyc
0.657 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_cn.cpython-39.opt-1.pyc
0.934 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_cn.cpython-39.opt-2.pyc
0.934 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_cn.cpython-39.pyc
0.934 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_hk.cpython-39.opt-1.pyc
0.549 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_hk.cpython-39.opt-2.pyc
0.549 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_hk.cpython-39.pyc
0.549 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_jp.cpython-39.opt-1.pyc
1.805 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_jp.cpython-39.opt-2.pyc
1.805 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_jp.cpython-39.pyc
1.805 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_kr.cpython-39.opt-1.pyc
1.037 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_kr.cpython-39.opt-2.pyc
1.037 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_kr.cpython-39.pyc
1.037 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_tw.cpython-39.opt-1.pyc
0.854 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_tw.cpython-39.opt-2.pyc
0.854 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecmaps_tw.cpython-39.pyc
0.854 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecs.cpython-39.opt-1.pyc
113.734 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecs.cpython-39.opt-2.pyc
113.335 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codecs.cpython-39.pyc
113.734 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codeop.cpython-39.opt-1.pyc
7.23 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codeop.cpython-39.opt-2.pyc
7.017 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_codeop.cpython-39.pyc
7.23 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_collections.cpython-39.opt-1.pyc
99.038 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_collections.cpython-39.opt-2.pyc
98.845 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_collections.cpython-39.pyc
99.038 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_colorsys.cpython-39.opt-1.pyc
3.17 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_colorsys.cpython-39.opt-2.pyc
3.17 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_colorsys.cpython-39.pyc
3.17 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_compare.cpython-39.opt-1.pyc
6.158 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_compare.cpython-39.opt-2.pyc
5.989 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_compare.cpython-39.pyc
6.158 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_compile.cpython-39.opt-1.pyc
38.343 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_compile.cpython-39.opt-2.pyc
38.193 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_compile.cpython-39.pyc
38.343 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_compileall.cpython-39.opt-1.pyc
37.491 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_compileall.cpython-39.opt-2.pyc
36.991 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_compileall.cpython-39.pyc
37.486 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_complex.cpython-39.opt-1.pyc
26.478 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_complex.cpython-39.opt-2.pyc
25.729 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_complex.cpython-39.pyc
26.478 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_concurrent_futures.cpython-39.opt-1.pyc
51.339 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_concurrent_futures.cpython-39.opt-2.pyc
50.593 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_concurrent_futures.cpython-39.pyc
52.274 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_configparser.cpython-39.opt-1.pyc
67.616 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_configparser.cpython-39.opt-2.pyc
66.813 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_configparser.cpython-39.pyc
67.616 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_contains.cpython-39.opt-1.pyc
4.865 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_contains.cpython-39.opt-2.pyc
4.218 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_contains.cpython-39.pyc
4.865 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_context.cpython-39.opt-1.pyc
26.594 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_context.cpython-39.opt-2.pyc
26.552 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_context.cpython-39.pyc
26.61 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_contextlib.cpython-39.opt-1.pyc
45.281 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_contextlib.cpython-39.opt-2.pyc
45.117 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_contextlib.cpython-39.pyc
45.281 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_contextlib_async.cpython-39.opt-1.pyc
21.399 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_contextlib_async.cpython-39.opt-2.pyc
21.319 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_contextlib_async.cpython-39.pyc
21.399 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_copy.cpython-39.opt-1.pyc
43.282 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_copy.cpython-39.opt-2.pyc
43.235 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_copy.cpython-39.pyc
43.282 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_copyreg.cpython-39.opt-1.pyc
3.786 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_copyreg.cpython-39.opt-2.pyc
3.786 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_copyreg.cpython-39.pyc
3.786 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_coroutines.cpython-39.opt-1.pyc
87.271 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_coroutines.cpython-39.opt-2.pyc
87.271 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_coroutines.cpython-39.pyc
87.41 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cprofile.cpython-39.opt-1.pyc
6.622 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cprofile.cpython-39.opt-2.pyc
6.571 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_cprofile.cpython-39.pyc
6.622 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_crashers.cpython-39.opt-1.pyc
1.221 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_crashers.cpython-39.opt-2.pyc
1.221 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_crashers.cpython-39.pyc
1.221 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_crypt.cpython-39.opt-1.pyc
4.063 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_crypt.cpython-39.opt-2.pyc
4.063 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_crypt.cpython-39.pyc
4.063 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_csv.cpython-39.opt-1.pyc
49.013 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_csv.cpython-39.opt-2.pyc
48.828 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_csv.cpython-39.pyc
49.013 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ctypes.cpython-39.opt-1.pyc
0.309 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ctypes.cpython-39.opt-2.pyc
0.309 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ctypes.cpython-39.pyc
0.309 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_curses.cpython-39.opt-1.pyc
35.656 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_curses.cpython-39.opt-2.pyc
35.656 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_curses.cpython-39.pyc
35.656 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dataclasses.cpython-39.opt-1.pyc
131.436 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dataclasses.cpython-39.opt-2.pyc
131.398 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dataclasses.cpython-39.pyc
131.579 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_datetime.cpython-39.opt-1.pyc
1.908 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_datetime.cpython-39.opt-2.pyc
1.908 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_datetime.cpython-39.pyc
1.908 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm.cpython-39.opt-1.pyc
7.053 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm.cpython-39.opt-2.pyc
6.977 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm.cpython-39.pyc
7.11 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm_dumb.cpython-39.opt-1.pyc
11.033 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm_dumb.cpython-39.opt-2.pyc
10.953 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm_dumb.cpython-39.pyc
11.033 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm_gnu.cpython-39.opt-1.pyc
5.865 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm_gnu.cpython-39.opt-2.pyc
5.865 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm_gnu.cpython-39.pyc
5.865 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm_ndbm.cpython-39.opt-1.pyc
5.249 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm_ndbm.cpython-39.opt-2.pyc
5.249 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dbm_ndbm.cpython-39.pyc
5.249 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_decimal.cpython-39.opt-1.pyc
138.527 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_decimal.cpython-39.opt-2.pyc
136.679 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_decimal.cpython-39.pyc
138.527 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_decorators.cpython-39.opt-1.pyc
15.031 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_decorators.cpython-39.opt-2.pyc
14.82 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_decorators.cpython-39.pyc
15.07 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_defaultdict.cpython-39.opt-1.pyc
6.633 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_defaultdict.cpython-39.opt-2.pyc
6.578 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_defaultdict.cpython-39.pyc
6.633 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_deque.cpython-39.opt-1.pyc
33.327 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_deque.cpython-39.opt-2.pyc
33.327 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_deque.cpython-39.pyc
33.347 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_descr.cpython-39.opt-1.pyc
234.192 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_descr.cpython-39.opt-2.pyc
231.134 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_descr.cpython-39.pyc
234.213 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_descrtut.cpython-39.opt-1.pyc
11.97 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_descrtut.cpython-39.opt-2.pyc
11.97 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_descrtut.cpython-39.pyc
11.97 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_devpoll.cpython-39.opt-1.pyc
3.581 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_devpoll.cpython-39.opt-2.pyc
3.581 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_devpoll.cpython-39.pyc
3.581 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dict.cpython-39.opt-1.pyc
54.263 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dict.cpython-39.opt-2.pyc
53.91 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dict.cpython-39.pyc
54.263 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dict_version.cpython-39.opt-1.pyc
5.175 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dict_version.cpython-39.opt-2.pyc
5.1 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dict_version.cpython-39.pyc
5.175 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dictcomps.cpython-39.opt-1.pyc
6.365 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dictcomps.cpython-39.opt-2.pyc
6.365 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dictcomps.cpython-39.pyc
6.365 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dictviews.cpython-39.opt-1.pyc
10.908 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dictviews.cpython-39.opt-2.pyc
10.908 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dictviews.cpython-39.pyc
10.908 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_difflib.cpython-39.opt-1.pyc
20.707 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_difflib.cpython-39.opt-2.pyc
20.646 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_difflib.cpython-39.pyc
20.707 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dis.cpython-39.opt-1.pyc
39.187 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dis.cpython-39.opt-2.pyc
39.179 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dis.cpython-39.pyc
39.303 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_distutils.cpython-39.opt-1.pyc
0.727 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_distutils.cpython-39.opt-2.pyc
0.547 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_distutils.cpython-39.pyc
0.727 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_doctest.cpython-39.opt-1.pyc
102.6 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_doctest.cpython-39.opt-2.pyc
10.291 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_doctest.cpython-39.pyc
102.6 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_doctest2.cpython-39.opt-1.pyc
3.197 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_doctest2.cpython-39.opt-2.pyc
2.038 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_doctest2.cpython-39.pyc
3.197 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_docxmlrpc.cpython-39.opt-1.pyc
9.049 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_docxmlrpc.cpython-39.opt-2.pyc
7.923 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_docxmlrpc.cpython-39.pyc
9.049 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dtrace.cpython-39.opt-1.pyc
6.283 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dtrace.cpython-39.opt-2.pyc
5.896 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dtrace.cpython-39.pyc
6.283 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dynamic.cpython-39.opt-1.pyc
7.454 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dynamic.cpython-39.opt-2.pyc
6.935 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dynamic.cpython-39.pyc
7.454 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dynamicclassattribute.cpython-39.opt-1.pyc
14.393 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dynamicclassattribute.cpython-39.opt-2.pyc
14.04 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_dynamicclassattribute.cpython-39.pyc
14.393 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_eintr.cpython-39.opt-1.pyc
1.221 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_eintr.cpython-39.opt-2.pyc
1.221 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_eintr.cpython-39.pyc
1.221 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_embed.cpython-39.opt-1.pyc
32.893 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_embed.cpython-39.opt-2.pyc
32.282 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_embed.cpython-39.pyc
32.893 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ensurepip.cpython-39.opt-1.pyc
10.408 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ensurepip.cpython-39.opt-2.pyc
10.408 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ensurepip.cpython-39.pyc
10.408 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_enum.cpython-39.opt-1.pyc
137.648 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_enum.cpython-39.opt-2.pyc
137.473 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_enum.cpython-39.pyc
137.648 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_enumerate.cpython-39.opt-1.pyc
13.157 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_enumerate.cpython-39.opt-2.pyc
12.892 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_enumerate.cpython-39.pyc
13.157 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_eof.cpython-39.opt-1.pyc
2.645 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_eof.cpython-39.opt-2.pyc
2.463 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_eof.cpython-39.pyc
2.645 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_epoll.cpython-39.opt-1.pyc
6.228 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_epoll.cpython-39.opt-2.pyc
6.186 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_epoll.cpython-39.pyc
6.228 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_errno.cpython-39.opt-1.pyc
1.459 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_errno.cpython-39.opt-2.pyc
1.403 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_errno.cpython-39.pyc
1.459 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_exception_hierarchy.cpython-39.opt-1.pyc
8.174 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_exception_hierarchy.cpython-39.opt-2.pyc
8.174 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_exception_hierarchy.cpython-39.pyc
8.174 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_exception_variations.cpython-39.opt-1.pyc
3.382 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_exception_variations.cpython-39.opt-2.pyc
3.382 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_exception_variations.cpython-39.pyc
3.382 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_exceptions.cpython-39.opt-1.pyc
50.092 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_exceptions.cpython-39.opt-2.pyc
50.033 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_exceptions.cpython-39.pyc
50.104 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_extcall.cpython-39.opt-1.pyc
14.297 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_extcall.cpython-39.opt-2.pyc
0.382 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_extcall.cpython-39.pyc
14.297 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_faulthandler.cpython-39.opt-1.pyc
26.222 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_faulthandler.cpython-39.opt-2.pyc
24.771 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_faulthandler.cpython-39.pyc
26.222 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fcntl.cpython-39.opt-1.pyc
6.519 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fcntl.cpython-39.opt-2.pyc
6.466 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fcntl.cpython-39.pyc
6.519 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_file.cpython-39.opt-1.pyc
9.973 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_file.cpython-39.opt-2.pyc
9.973 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_file.cpython-39.pyc
10.043 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_file_eintr.cpython-39.opt-1.pyc
8.088 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_file_eintr.cpython-39.opt-2.pyc
6.383 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_file_eintr.cpython-39.pyc
8.152 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_filecmp.cpython-39.opt-1.pyc
6.33 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_filecmp.cpython-39.opt-2.pyc
6.33 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_filecmp.cpython-39.pyc
6.33 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fileinput.cpython-39.opt-1.pyc
37.763 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fileinput.cpython-39.opt-2.pyc
31.961 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fileinput.cpython-39.pyc
37.763 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fileio.cpython-39.opt-1.pyc
20.154 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fileio.cpython-39.opt-2.pyc
20.154 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fileio.cpython-39.pyc
20.154 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_finalization.cpython-39.opt-1.pyc
18.162 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_finalization.cpython-39.opt-2.pyc
17.052 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_finalization.cpython-39.pyc
18.291 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_float.cpython-39.opt-1.pyc
46.967 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_float.cpython-39.opt-2.pyc
46.967 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_float.cpython-39.pyc
46.967 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_flufl.cpython-39.opt-1.pyc
1.566 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_flufl.cpython-39.opt-2.pyc
1.566 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_flufl.cpython-39.pyc
1.566 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fnmatch.cpython-39.opt-1.pyc
5.824 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fnmatch.cpython-39.opt-2.pyc
5.774 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fnmatch.cpython-39.pyc
5.824 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fork1.cpython-39.opt-1.pyc
2.687 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fork1.cpython-39.opt-2.pyc
2.48 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fork1.cpython-39.pyc
2.687 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_format.cpython-39.opt-1.pyc
15.963 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_format.cpython-39.opt-2.pyc
15.963 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_format.cpython-39.pyc
15.963 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fractions.cpython-39.opt-1.pyc
25.486 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fractions.cpython-39.opt-2.pyc
25.057 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fractions.cpython-39.pyc
25.645 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_frame.cpython-39.opt-1.pyc
6.574 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_frame.cpython-39.opt-2.pyc
6.432 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_frame.cpython-39.pyc
6.574 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_frozen.cpython-39.opt-1.pyc
0.814 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_frozen.cpython-39.opt-2.pyc
0.736 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_frozen.cpython-39.pyc
0.814 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fstring.cpython-39.opt-1.pyc
39.31 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fstring.cpython-39.opt-2.pyc
39.245 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_fstring.cpython-39.pyc
39.31 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ftplib.cpython-39.opt-1.pyc
41.016 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ftplib.cpython-39.opt-2.pyc
40.345 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ftplib.cpython-39.pyc
41.044 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_funcattrs.cpython-39.opt-1.pyc
15.462 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_funcattrs.cpython-39.opt-2.pyc
15.384 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_funcattrs.cpython-39.pyc
15.462 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_functools.cpython-39.opt-1.pyc
117.667 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_functools.cpython-39.opt-2.pyc
117.261 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_functools.cpython-39.pyc
117.667 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future.cpython-39.opt-1.pyc
13.302 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future.cpython-39.opt-2.pyc
13.302 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future.cpython-39.pyc
13.302 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future3.cpython-39.opt-1.pyc
1.203 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future3.cpython-39.opt-2.pyc
1.203 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future3.cpython-39.pyc
1.203 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future4.cpython-39.opt-1.pyc
0.591 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future4.cpython-39.opt-2.pyc
0.591 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future4.cpython-39.pyc
0.591 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future5.cpython-39.opt-1.pyc
0.998 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future5.cpython-39.opt-2.pyc
0.998 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_future5.cpython-39.pyc
0.998 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gc.cpython-39.opt-1.pyc
39.568 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gc.cpython-39.opt-2.pyc
39.048 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gc.cpython-39.pyc
39.601 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gdb.cpython-39.opt-1.pyc
28.775 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gdb.cpython-39.opt-2.pyc
26.229 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gdb.cpython-39.pyc
28.775 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_generator_stop.cpython-39.opt-1.pyc
1.771 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_generator_stop.cpython-39.opt-2.pyc
1.771 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_generator_stop.cpython-39.pyc
1.771 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_generators.cpython-39.opt-1.pyc
59.001 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_generators.cpython-39.opt-2.pyc
59.001 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_generators.cpython-39.pyc
59.434 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genericalias.cpython-39.opt-1.pyc
15.28 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genericalias.cpython-39.opt-2.pyc
15.203 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genericalias.cpython-39.pyc
15.28 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genericclass.cpython-39.opt-1.pyc
20.521 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genericclass.cpython-39.opt-2.pyc
20.521 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genericclass.cpython-39.pyc
20.521 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genericpath.cpython-39.opt-1.pyc
17.456 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genericpath.cpython-39.opt-2.pyc
17.39 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genericpath.cpython-39.pyc
17.456 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genexps.cpython-39.opt-1.pyc
7.603 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genexps.cpython-39.opt-2.pyc
7.603 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_genexps.cpython-39.pyc
7.603 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_getargs2.cpython-39.opt-1.pyc
41.458 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_getargs2.cpython-39.opt-2.pyc
40.099 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_getargs2.cpython-39.pyc
41.458 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_getopt.cpython-39.opt-1.pyc
5.24 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_getopt.cpython-39.opt-2.pyc
5.24 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_getopt.cpython-39.pyc
5.24 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_getpass.cpython-39.opt-1.pyc
6.966 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_getpass.cpython-39.opt-2.pyc
6.966 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_getpass.cpython-39.pyc
6.966 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gettext.cpython-39.opt-1.pyc
37.717 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gettext.cpython-39.opt-2.pyc
37.601 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gettext.cpython-39.pyc
37.717 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_glob.cpython-39.opt-1.pyc
12.051 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_glob.cpython-39.opt-2.pyc
12.051 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_glob.cpython-39.pyc
12.051 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_global.cpython-39.opt-1.pyc
1.968 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_global.cpython-39.opt-2.pyc
1.885 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_global.cpython-39.pyc
1.968 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_grammar.cpython-39.opt-1.pyc
69.686 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_grammar.cpython-39.opt-2.pyc
69.624 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_grammar.cpython-39.pyc
70.01 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_graphlib.cpython-39.opt-1.pyc
9.309 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_graphlib.cpython-39.opt-2.pyc
9.309 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_graphlib.cpython-39.pyc
9.309 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_grp.cpython-39.opt-1.pyc
2.689 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_grp.cpython-39.opt-2.pyc
2.643 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_grp.cpython-39.pyc
2.689 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gzip.cpython-39.opt-1.pyc
29.578 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gzip.cpython-39.opt-2.pyc
29.483 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_gzip.cpython-39.pyc
29.578 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_hash.cpython-39.opt-1.pyc
12.614 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_hash.cpython-39.opt-2.pyc
12.487 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_hash.cpython-39.pyc
12.667 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_hashlib.cpython-39.opt-1.pyc
37.773 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_hashlib.cpython-39.opt-2.pyc
37.664 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_hashlib.cpython-39.pyc
37.809 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_heapq.cpython-39.opt-1.pyc
21.155 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_heapq.cpython-39.opt-2.pyc
20.639 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_heapq.cpython-39.pyc
21.155 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_hmac.cpython-39.opt-1.pyc
19.312 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_hmac.cpython-39.opt-2.pyc
19.207 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_hmac.cpython-39.pyc
19.312 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_html.cpython-39.opt-1.pyc
5.063 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_html.cpython-39.opt-2.pyc
5.009 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_html.cpython-39.pyc
5.063 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_htmlparser.cpython-39.opt-1.pyc
27.361 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_htmlparser.cpython-39.opt-2.pyc
27.321 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_htmlparser.cpython-39.pyc
27.361 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_http_cookiejar.cpython-39.opt-1.pyc
43.189 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_http_cookiejar.cpython-39.opt-2.pyc
43.01 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_http_cookiejar.cpython-39.pyc
43.189 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_http_cookies.cpython-39.opt-1.pyc
15.177 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_http_cookies.cpython-39.opt-2.pyc
15.133 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_http_cookies.cpython-39.pyc
15.177 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_httplib.cpython-39.opt-1.pyc
64.744 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_httplib.cpython-39.opt-2.pyc
63.429 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_httplib.cpython-39.pyc
64.744 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_httpservers.cpython-39.opt-1.pyc
49.075 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_httpservers.cpython-39.opt-2.pyc
47.987 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_httpservers.cpython-39.pyc
49.075 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_idle.cpython-39.opt-1.pyc
0.676 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_idle.cpython-39.opt-2.pyc
0.676 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_idle.cpython-39.pyc
0.676 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_imaplib.cpython-39.opt-1.pyc
47.362 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_imaplib.cpython-39.opt-2.pyc
46.868 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_imaplib.cpython-39.pyc
47.362 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_imghdr.cpython-39.opt-1.pyc
5.777 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_imghdr.cpython-39.opt-2.pyc
5.777 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_imghdr.cpython-39.pyc
5.777 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_imp.cpython-39.opt-1.pyc
14.73 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_imp.cpython-39.opt-2.pyc
14.466 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_imp.cpython-39.pyc
14.73 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_index.cpython-39.opt-1.pyc
11.671 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_index.cpython-39.opt-2.pyc
11.671 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_index.cpython-39.pyc
11.712 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_inspect.cpython-39.opt-1.pyc
175.614 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_inspect.cpython-39.opt-2.pyc
174.996 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_inspect.cpython-39.pyc
175.651 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_int.cpython-39.opt-1.pyc
28.885 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_int.cpython-39.opt-2.pyc
28.623 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_int.cpython-39.pyc
28.973 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_int_literal.cpython-39.opt-1.pyc
2.674 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_int_literal.cpython-39.opt-2.pyc
2.563 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_int_literal.cpython-39.pyc
2.674 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_io.cpython-39.opt-1.pyc
154.896 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_io.cpython-39.opt-2.pyc
152.618 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_io.cpython-39.pyc
154.986 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ioctl.cpython-39.opt-1.pyc
2.881 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ioctl.cpython-39.opt-2.pyc
2.881 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ioctl.cpython-39.pyc
2.881 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ipaddress.cpython-39.opt-1.pyc
82.399 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ipaddress.cpython-39.opt-2.pyc
81.985 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ipaddress.cpython-39.pyc
82.399 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_isinstance.cpython-39.opt-1.pyc
16.183 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_isinstance.cpython-39.opt-2.pyc
16.142 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_isinstance.cpython-39.pyc
16.183 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_iter.cpython-39.opt-1.pyc
35.741 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_iter.cpython-39.opt-2.pyc
35.741 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_iter.cpython-39.pyc
35.757 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_iterlen.cpython-39.opt-1.pyc
9.524 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_iterlen.cpython-39.opt-2.pyc
7.354 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_iterlen.cpython-39.pyc
9.524 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_itertools.cpython-39.opt-1.pyc
94.985 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_itertools.cpython-39.opt-2.pyc
94.118 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_itertools.cpython-39.pyc
94.985 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_keyword.cpython-39.opt-1.pyc
2.207 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_keyword.cpython-39.opt-2.pyc
2.207 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_keyword.cpython-39.pyc
2.207 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_keywordonlyarg.cpython-39.opt-1.pyc
8.892 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_keywordonlyarg.cpython-39.opt-2.pyc
8.813 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_keywordonlyarg.cpython-39.pyc
8.892 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_kqueue.cpython-39.opt-1.pyc
6.268 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_kqueue.cpython-39.opt-2.pyc
6.225 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_kqueue.cpython-39.pyc
6.268 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_largefile.cpython-39.opt-1.pyc
8.869 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_largefile.cpython-39.opt-2.pyc
8.699 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_largefile.cpython-39.pyc
8.869 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_lib2to3.cpython-39.opt-1.pyc
0.42 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_lib2to3.cpython-39.opt-2.pyc
0.42 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_lib2to3.cpython-39.pyc
0.42 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_linecache.cpython-39.opt-1.pyc
9.516 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_linecache.cpython-39.opt-2.pyc
9.468 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_linecache.cpython-39.pyc
9.516 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_list.cpython-39.opt-1.pyc
8.291 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_list.cpython-39.opt-2.pyc
8.291 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_list.cpython-39.pyc
8.291 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_listcomps.cpython-39.opt-1.pyc
4.251 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_listcomps.cpython-39.opt-2.pyc
4.251 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_listcomps.cpython-39.pyc
4.251 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_lltrace.cpython-39.opt-1.pyc
1.112 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_lltrace.cpython-39.opt-2.pyc
1.112 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_lltrace.cpython-39.pyc
1.112 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_locale.cpython-39.opt-1.pyc
22.779 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_locale.cpython-39.opt-2.pyc
22.727 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_locale.cpython-39.pyc
22.779 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_logging.cpython-39.opt-1.pyc
143.539 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_logging.cpython-39.opt-2.pyc
135.148 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_logging.cpython-39.pyc
143.539 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_long.cpython-39.opt-1.pyc
34.91 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_long.cpython-39.opt-2.pyc
34.641 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_long.cpython-39.pyc
35.106 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_longexp.cpython-39.opt-1.pyc
0.582 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_longexp.cpython-39.opt-2.pyc
0.582 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_longexp.cpython-39.pyc
0.582 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_lzma.cpython-39.opt-1.pyc
60.94 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_lzma.cpython-39.opt-2.pyc
60.818 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_lzma.cpython-39.pyc
60.94 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mailbox.cpython-39.opt-1.pyc
78.534 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mailbox.cpython-39.opt-2.pyc
78.452 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mailbox.cpython-39.pyc
78.534 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mailcap.cpython-39.opt-1.pyc
6.513 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mailcap.cpython-39.opt-2.pyc
6.513 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mailcap.cpython-39.pyc
6.513 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_marshal.cpython-39.opt-1.pyc
22.227 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_marshal.cpython-39.opt-2.pyc
22.189 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_marshal.cpython-39.pyc
22.227 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_math.cpython-39.opt-1.pyc
61.548 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_math.cpython-39.opt-2.pyc
58.948 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_math.cpython-39.pyc
61.548 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_memoryio.cpython-39.opt-1.pyc
27.263 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_memoryio.cpython-39.opt-2.pyc
27.068 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_memoryio.cpython-39.pyc
27.263 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_memoryview.cpython-39.opt-1.pyc
19.08 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_memoryview.cpython-39.opt-2.pyc
18.936 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_memoryview.cpython-39.pyc
19.08 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_metaclass.cpython-39.opt-1.pyc
6.329 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_metaclass.cpython-39.opt-2.pyc
6.329 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_metaclass.cpython-39.pyc
6.329 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mimetypes.cpython-39.opt-1.pyc
11.109 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mimetypes.cpython-39.opt-2.pyc
11.109 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mimetypes.cpython-39.pyc
11.109 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_minidom.cpython-39.opt-1.pyc
53.061 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_minidom.cpython-39.opt-2.pyc
53.061 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_minidom.cpython-39.pyc
53.061 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mmap.cpython-39.opt-1.pyc
23.624 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mmap.cpython-39.opt-2.pyc
23.624 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_mmap.cpython-39.pyc
23.646 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_module.cpython-39.opt-1.pyc
10.739 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_module.cpython-39.opt-2.pyc
10.739 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_module.cpython-39.pyc
10.771 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_modulefinder.cpython-39.opt-1.pyc
12.089 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_modulefinder.cpython-39.opt-2.pyc
12.089 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_modulefinder.cpython-39.pyc
12.089 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_msilib.cpython-39.opt-1.pyc
11.179 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_msilib.cpython-39.opt-2.pyc
10.889 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_msilib.cpython-39.pyc
11.179 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multibytecodec.cpython-39.opt-1.pyc
13.553 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multibytecodec.cpython-39.opt-2.pyc
13.553 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multibytecodec.cpython-39.pyc
13.553 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_fork.cpython-39.opt-1.pyc
0.593 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_fork.cpython-39.opt-2.pyc
0.593 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_fork.cpython-39.pyc
0.593 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_forkserver.cpython-39.opt-1.pyc
0.543 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_forkserver.cpython-39.opt-2.pyc
0.543 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_forkserver.cpython-39.pyc
0.543 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_main_handling.cpython-39.opt-1.pyc
10.204 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_main_handling.cpython-39.opt-2.pyc
10.204 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_main_handling.cpython-39.pyc
10.158 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_spawn.cpython-39.opt-1.pyc
0.439 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_spawn.cpython-39.opt-2.pyc
0.439 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_multiprocessing_spawn.cpython-39.pyc
0.439 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_named_expressions.cpython-39.opt-1.pyc
30.215 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_named_expressions.cpython-39.opt-2.pyc
29.964 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_named_expressions.cpython-39.pyc
30.215 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_netrc.cpython-39.opt-1.pyc
7.302 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_netrc.cpython-39.opt-2.pyc
7.302 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_netrc.cpython-39.pyc
7.302 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_nis.cpython-39.opt-1.pyc
0.969 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_nis.cpython-39.opt-2.pyc
0.969 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_nis.cpython-39.pyc
0.969 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_nntplib.cpython-39.opt-1.pyc
54.662 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_nntplib.cpython-39.opt-2.pyc
53.484 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_nntplib.cpython-39.pyc
54.724 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ntpath.cpython-39.opt-1.pyc
34.797 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ntpath.cpython-39.opt-2.pyc
34.374 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ntpath.cpython-39.pyc
34.797 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_numeric_tower.cpython-39.opt-1.pyc
5.342 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_numeric_tower.cpython-39.opt-2.pyc
5.342 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_numeric_tower.cpython-39.pyc
5.342 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_opcodes.cpython-39.opt-1.pyc
4.92 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_opcodes.cpython-39.opt-2.pyc
4.92 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_opcodes.cpython-39.pyc
4.92 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_openpty.cpython-39.opt-1.pyc
0.802 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_openpty.cpython-39.opt-2.pyc
0.802 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_openpty.cpython-39.pyc
0.802 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_operator.cpython-39.opt-1.pyc
26.063 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_operator.cpython-39.opt-2.pyc
26.021 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_operator.cpython-39.pyc
26.063 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_optparse.cpython-39.opt-1.pyc
64.952 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_optparse.cpython-39.opt-2.pyc
63.51 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_optparse.cpython-39.pyc
64.952 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ordered_dict.cpython-39.opt-1.pyc
31.58 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ordered_dict.cpython-39.opt-2.pyc
30.832 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ordered_dict.cpython-39.pyc
31.58 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_os.cpython-39.opt-1.pyc
141.075 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_os.cpython-39.opt-2.pyc
139.234 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_os.cpython-39.pyc
141.37 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ossaudiodev.cpython-39.opt-1.pyc
5.104 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ossaudiodev.cpython-39.opt-2.pyc
5.104 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ossaudiodev.cpython-39.pyc
5.104 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_osx_env.cpython-39.opt-1.pyc
1.482 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_osx_env.cpython-39.opt-2.pyc
1.411 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_osx_env.cpython-39.pyc
1.482 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_parser.cpython-39.opt-1.pyc
32.564 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_parser.cpython-39.opt-2.pyc
32.394 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_parser.cpython-39.pyc
32.564 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pathlib.cpython-39.opt-1.pyc
81.554 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pathlib.cpython-39.opt-2.pyc
81.122 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pathlib.cpython-39.pyc
81.554 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pdb.cpython-39.opt-1.pyc
63.056 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pdb.cpython-39.opt-2.pyc
25.074 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pdb.cpython-39.pyc
63.056 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_peepholer.cpython-39.opt-1.pyc
19.078 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_peepholer.cpython-39.opt-2.pyc
18.981 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_peepholer.cpython-39.pyc
19.078 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_peg_parser.cpython-39.opt-1.pyc
19.82 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_peg_parser.cpython-39.opt-2.pyc
19.82 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_peg_parser.cpython-39.pyc
19.82 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pickle.cpython-39.opt-1.pyc
23.503 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pickle.cpython-39.opt-2.pyc
23.503 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pickle.cpython-39.pyc
23.503 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_picklebuffer.cpython-39.opt-1.pyc
5.013 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_picklebuffer.cpython-39.opt-2.pyc
4.907 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_picklebuffer.cpython-39.pyc
5.013 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pickletools.cpython-39.opt-1.pyc
3.66 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pickletools.cpython-39.opt-2.pyc
3.66 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pickletools.cpython-39.pyc
3.66 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pipes.cpython-39.opt-1.pyc
5.963 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pipes.cpython-39.opt-2.pyc
5.963 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pipes.cpython-39.pyc
5.963 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pkg.cpython-39.opt-1.pyc
7.096 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pkg.cpython-39.opt-2.pyc
7.096 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pkg.cpython-39.pyc
7.096 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pkgutil.cpython-39.opt-1.pyc
19.136 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pkgutil.cpython-39.opt-2.pyc
19.069 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pkgutil.cpython-39.pyc
19.136 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_platform.cpython-39.opt-1.pyc
12.919 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_platform.cpython-39.opt-2.pyc
12.796 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_platform.cpython-39.pyc
12.919 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_plistlib.cpython-39.opt-1.pyc
30.847 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_plistlib.cpython-39.opt-2.pyc
30.847 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_plistlib.cpython-39.pyc
30.847 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_poll.cpython-39.opt-1.pyc
5.722 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_poll.cpython-39.opt-2.pyc
5.722 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_poll.cpython-39.pyc
5.722 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_popen.cpython-39.opt-1.pyc
2.308 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_popen.cpython-39.opt-2.pyc
2.212 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_popen.cpython-39.pyc
2.308 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_poplib.cpython-39.opt-1.pyc
19.123 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_poplib.cpython-39.opt-2.pyc
19.077 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_poplib.cpython-39.pyc
19.151 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_positional_only_arg.cpython-39.opt-1.pyc
22.705 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_positional_only_arg.cpython-39.opt-2.pyc
22.618 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_positional_only_arg.cpython-39.pyc
22.8 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_posix.cpython-39.opt-1.pyc
69.17 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_posix.cpython-39.opt-2.pyc
68.984 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_posix.cpython-39.pyc
69.192 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_posixpath.cpython-39.opt-1.pyc
29.587 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_posixpath.cpython-39.opt-2.pyc
29.043 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_posixpath.cpython-39.pyc
29.587 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pow.cpython-39.opt-1.pyc
4.168 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pow.cpython-39.opt-2.pyc
4.168 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pow.cpython-39.pyc
4.168 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pprint.cpython-39.opt-1.pyc
40.782 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pprint.cpython-39.opt-2.pyc
40.782 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pprint.cpython-39.pyc
40.782 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_print.cpython-39.opt-1.pyc
7.794 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_print.cpython-39.opt-2.pyc
7.604 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_print.cpython-39.pyc
7.794 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_profile.cpython-39.opt-1.pyc
8.485 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_profile.cpython-39.opt-2.pyc
8.436 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_profile.cpython-39.pyc
8.485 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_property.cpython-39.opt-1.pyc
14.183 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_property.cpython-39.opt-2.pyc
13.81 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_property.cpython-39.pyc
14.183 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pstats.cpython-39.opt-1.pyc
4.055 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pstats.cpython-39.opt-2.pyc
4.003 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pstats.cpython-39.pyc
4.055 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pty.cpython-39.opt-1.pyc
7.357 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pty.cpython-39.opt-2.pyc
7.133 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pty.cpython-39.pyc
7.357 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pulldom.cpython-39.opt-1.pyc
10.051 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pulldom.cpython-39.opt-2.pyc
9.13 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pulldom.cpython-39.pyc
10.051 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pwd.cpython-39.opt-1.pyc
2.491 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pwd.cpython-39.opt-2.pyc
2.491 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pwd.cpython-39.pyc
2.491 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_py_compile.cpython-39.opt-1.pyc
10.766 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_py_compile.cpython-39.opt-2.pyc
10.682 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_py_compile.cpython-39.pyc
10.798 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pyclbr.cpython-39.opt-1.pyc
8.164 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pyclbr.cpython-39.opt-2.pyc
7.287 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pyclbr.cpython-39.pyc
8.185 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pydoc.cpython-39.opt-1.pyc
62.899 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pydoc.cpython-39.opt-2.pyc
59.555 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pydoc.cpython-39.pyc
62.922 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pyexpat.cpython-39.opt-1.pyc
36.094 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pyexpat.cpython-39.opt-2.pyc
35.418 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_pyexpat.cpython-39.pyc
36.094 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_queue.cpython-39.opt-1.pyc
18.341 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_queue.cpython-39.opt-2.pyc
18.341 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_queue.cpython-39.pyc
18.341 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_quopri.cpython-39.opt-1.pyc
6.007 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_quopri.cpython-39.opt-2.pyc
6.007 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_quopri.cpython-39.pyc
6.028 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_raise.cpython-39.opt-1.pyc
16.011 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_raise.cpython-39.opt-2.pyc
15.965 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_raise.cpython-39.pyc
16.03 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_random.cpython-39.opt-1.pyc
41.05 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_random.cpython-39.opt-2.pyc
41.002 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_random.cpython-39.pyc
41.05 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_range.cpython-39.opt-1.pyc
20.347 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_range.cpython-39.opt-2.pyc
20.347 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_range.cpython-39.pyc
20.347 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_re.cpython-39.opt-1.pyc
81.397 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_re.cpython-39.opt-2.pyc
81.224 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_re.cpython-39.pyc
81.905 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_readline.cpython-39.opt-1.pyc
9.843 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_readline.cpython-39.opt-2.pyc
9.549 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_readline.cpython-39.pyc
9.843 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_regrtest.cpython-39.opt-1.pyc
41.333 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_regrtest.cpython-39.opt-2.pyc
40.899 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_regrtest.cpython-39.pyc
41.333 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_repl.cpython-39.opt-1.pyc
3.366 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_repl.cpython-39.opt-2.pyc
3.183 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_repl.cpython-39.pyc
3.366 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_reprlib.cpython-39.opt-1.pyc
16.862 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_reprlib.cpython-39.opt-2.pyc
16.729 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_reprlib.cpython-39.pyc
16.862 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_resource.cpython-39.opt-1.pyc
6.543 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_resource.cpython-39.opt-2.pyc
6.543 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_resource.cpython-39.pyc
6.543 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_richcmp.cpython-39.opt-1.pyc
15.171 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_richcmp.cpython-39.opt-2.pyc
15.171 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_richcmp.cpython-39.pyc
15.171 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_rlcompleter.cpython-39.opt-1.pyc
6.958 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_rlcompleter.cpython-39.opt-2.pyc
6.833 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_rlcompleter.cpython-39.pyc
6.958 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_robotparser.cpython-39.opt-1.pyc
11.827 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_robotparser.cpython-39.opt-2.pyc
11.827 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_robotparser.cpython-39.pyc
11.827 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_runpy.cpython-39.opt-1.pyc
25.915 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_runpy.cpython-39.opt-2.pyc
25.427 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_runpy.cpython-39.pyc
25.915 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sax.cpython-39.opt-1.pyc
42.673 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sax.cpython-39.opt-2.pyc
42.673 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sax.cpython-39.pyc
42.673 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sched.cpython-39.opt-1.pyc
6.841 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sched.cpython-39.opt-2.pyc
6.841 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sched.cpython-39.pyc
6.868 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_scope.cpython-39.opt-1.pyc
30.95 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_scope.cpython-39.opt-2.pyc
30.95 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_scope.cpython-39.pyc
30.95 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_script_helper.cpython-39.opt-1.pyc
5.641 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_script_helper.cpython-39.opt-2.pyc
5.43 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_script_helper.cpython-39.pyc
5.641 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_secrets.cpython-39.opt-1.pyc
4.803 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_secrets.cpython-39.opt-2.pyc
4.497 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_secrets.cpython-39.pyc
4.855 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_select.cpython-39.opt-1.pyc
3.374 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_select.cpython-39.opt-2.pyc
3.374 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_select.cpython-39.pyc
3.374 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_selectors.cpython-39.opt-1.pyc
14.803 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_selectors.cpython-39.opt-2.pyc
14.803 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_selectors.cpython-39.pyc
14.803 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_set.cpython-39.opt-1.pyc
86.254 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_set.cpython-39.opt-2.pyc
85.289 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_set.cpython-39.pyc
86.254 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_setcomps.cpython-39.opt-1.pyc
4.231 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_setcomps.cpython-39.opt-2.pyc
4.231 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_setcomps.cpython-39.pyc
4.231 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_shelve.cpython-39.opt-1.pyc
7.33 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_shelve.cpython-39.opt-2.pyc
7.282 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_shelve.cpython-39.pyc
7.367 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_shlex.cpython-39.opt-1.pyc
11.927 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_shlex.cpython-39.opt-2.pyc
11.3 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_shlex.cpython-39.pyc
11.927 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_shutil.cpython-39.opt-1.pyc
84.275 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_shutil.cpython-39.opt-2.pyc
83.079 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_shutil.cpython-39.pyc
84.572 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_signal.cpython-39.opt-1.pyc
42.941 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_signal.cpython-39.opt-2.pyc
42.13 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_signal.cpython-39.pyc
42.941 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_site.cpython-39.opt-1.pyc
22.358 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_site.cpython-39.opt-2.pyc
21.229 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_site.cpython-39.pyc
22.358 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_slice.cpython-39.opt-1.pyc
7.929 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_slice.cpython-39.opt-2.pyc
7.735 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_slice.cpython-39.pyc
7.929 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_smtpd.cpython-39.opt-1.pyc
38.268 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_smtpd.cpython-39.opt-2.pyc
38.268 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_smtpd.cpython-39.pyc
38.268 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_smtplib.cpython-39.opt-1.pyc
48.554 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_smtplib.cpython-39.opt-2.pyc
48.554 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_smtplib.cpython-39.pyc
48.554 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_smtpnet.cpython-39.opt-1.pyc
3.229 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_smtpnet.cpython-39.opt-2.pyc
3.229 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_smtpnet.cpython-39.pyc
3.229 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sndhdr.cpython-39.opt-1.pyc
1.566 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sndhdr.cpython-39.opt-2.pyc
1.566 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sndhdr.cpython-39.pyc
1.566 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_socket.cpython-39.opt-1.pyc
222.469 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_socket.cpython-39.opt-2.pyc
216.32 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_socket.cpython-39.pyc
222.565 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_socketserver.cpython-39.opt-1.pyc
19.199 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_socketserver.cpython-39.opt-2.pyc
18.656 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_socketserver.cpython-39.pyc
19.199 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sort.cpython-39.opt-1.pyc
17.975 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sort.cpython-39.opt-2.pyc
17.975 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sort.cpython-39.pyc
17.975 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_source_encoding.cpython-39.opt-1.pyc
9.925 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_source_encoding.cpython-39.opt-2.pyc
9.925 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_source_encoding.cpython-39.pyc
9.925 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_spwd.cpython-39.opt-1.pyc
2.484 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_spwd.cpython-39.opt-2.pyc
2.484 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_spwd.cpython-39.pyc
2.484 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sqlite.cpython-39.opt-1.pyc
0.891 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sqlite.cpython-39.opt-2.pyc
0.891 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sqlite.cpython-39.pyc
0.891 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ssl.cpython-39.opt-1.pyc
137.17 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ssl.cpython-39.opt-2.pyc
134.525 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ssl.cpython-39.pyc
137.202 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_startfile.cpython-39.opt-1.pyc
1.109 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_startfile.cpython-39.opt-2.pyc
1.109 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_startfile.cpython-39.pyc
1.109 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_stat.cpython-39.opt-1.pyc
6.872 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_stat.cpython-39.opt-2.pyc
6.872 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_stat.cpython-39.pyc
6.872 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_statistics.cpython-39.opt-1.pyc
103.37 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_statistics.cpython-39.opt-2.pyc
97.459 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_statistics.cpython-39.pyc
104.607 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_strftime.cpython-39.opt-1.pyc
6.759 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_strftime.cpython-39.opt-2.pyc
6.438 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_strftime.cpython-39.pyc
6.759 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_string.cpython-39.opt-1.pyc
20.545 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_string.cpython-39.opt-2.pyc
20.545 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_string.cpython-39.pyc
20.545 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_string_literals.cpython-39.opt-1.pyc
9.114 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_string_literals.cpython-39.opt-2.pyc
7.965 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_string_literals.cpython-39.pyc
9.168 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_stringprep.cpython-39.opt-1.pyc
1.548 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_stringprep.cpython-39.opt-2.pyc
1.548 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_stringprep.cpython-39.pyc
1.548 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_strptime.cpython-39.opt-1.pyc
25.477 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_strptime.cpython-39.opt-2.pyc
24.645 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_strptime.cpython-39.pyc
25.477 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_strtod.cpython-39.opt-1.pyc
12.987 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_strtod.cpython-39.opt-2.pyc
12.469 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_strtod.cpython-39.pyc
13.127 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_struct.cpython-39.opt-1.pyc
27.851 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_struct.cpython-39.opt-2.pyc
27.768 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_struct.cpython-39.pyc
27.851 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_structmembers.cpython-39.opt-1.pyc
4.813 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_structmembers.cpython-39.opt-2.pyc
4.813 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_structmembers.cpython-39.pyc
4.813 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_structseq.cpython-39.opt-1.pyc
4.608 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_structseq.cpython-39.opt-2.pyc
4.608 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_structseq.cpython-39.pyc
4.608 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_subclassinit.cpython-39.opt-1.pyc
15.837 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_subclassinit.cpython-39.opt-2.pyc
15.837 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_subclassinit.cpython-39.pyc
15.837 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_subprocess.cpython-39.opt-1.pyc
114.853 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_subprocess.cpython-39.opt-2.pyc
113.066 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_subprocess.cpython-39.pyc
114.853 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sunau.cpython-39.opt-1.pyc
6.773 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sunau.cpython-39.opt-2.pyc
6.773 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sunau.cpython-39.pyc
6.773 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sundry.cpython-39.opt-1.pyc
2.115 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sundry.cpython-39.opt-2.pyc
2.034 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sundry.cpython-39.pyc
2.115 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_super.cpython-39.opt-1.pyc
16.252 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_super.cpython-39.opt-2.pyc
16.18 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_super.cpython-39.pyc
16.252 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_support.cpython-39.opt-1.pyc
22.413 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_support.cpython-39.opt-2.pyc
21.929 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_support.cpython-39.pyc
22.464 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_symbol.cpython-39.opt-1.pyc
2.297 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_symbol.cpython-39.opt-2.pyc
2.297 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_symbol.cpython-39.pyc
2.297 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_symtable.cpython-39.opt-1.pyc
8.884 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_symtable.cpython-39.opt-2.pyc
8.83 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_symtable.cpython-39.pyc
8.884 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_syntax.cpython-39.opt-1.pyc
33.041 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_syntax.cpython-39.opt-2.pyc
9.675 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_syntax.cpython-39.pyc
33.041 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sys.cpython-39.opt-1.pyc
45.57 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sys.cpython-39.opt-2.pyc
45.57 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sys.cpython-39.pyc
45.57 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sys_setprofile.cpython-39.opt-1.pyc
16.124 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sys_setprofile.cpython-39.opt-2.pyc
16.069 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sys_setprofile.cpython-39.pyc
16.124 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sys_settrace.cpython-39.opt-1.pyc
54.715 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sys_settrace.cpython-39.opt-2.pyc
53.733 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sys_settrace.cpython-39.pyc
54.751 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sysconfig.cpython-39.opt-1.pyc
12.462 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sysconfig.cpython-39.opt-2.pyc
12.462 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_sysconfig.cpython-39.pyc
12.462 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_syslog.cpython-39.opt-1.pyc
1.678 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_syslog.cpython-39.opt-2.pyc
1.678 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_syslog.cpython-39.pyc
1.678 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tabnanny.cpython-39.opt-1.pyc
13.408 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tabnanny.cpython-39.opt-2.pyc
11.097 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tabnanny.cpython-39.pyc
13.408 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tarfile.cpython-39.opt-1.pyc
154.053 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tarfile.cpython-39.opt-2.pyc
152.195 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tarfile.cpython-39.pyc
154.147 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tcl.cpython-39.opt-1.pyc
24.084 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tcl.cpython-39.opt-2.pyc
24.084 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tcl.cpython-39.pyc
24.084 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_telnetlib.cpython-39.opt-1.pyc
16.115 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_telnetlib.cpython-39.opt-2.pyc
15.299 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_telnetlib.cpython-39.pyc
16.146 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tempfile.cpython-39.opt-1.pyc
52.021 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tempfile.cpython-39.opt-2.pyc
51.441 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tempfile.cpython-39.pyc
52.021 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_textwrap.cpython-39.opt-1.pyc
28.435 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_textwrap.cpython-39.opt-2.pyc
28.323 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_textwrap.cpython-39.pyc
28.435 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_thread.cpython-39.opt-1.pyc
8.335 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_thread.cpython-39.opt-2.pyc
8.286 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_thread.cpython-39.pyc
8.335 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threadedtempfile.cpython-39.opt-1.pyc
2.62 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threadedtempfile.cpython-39.opt-2.pyc
1.993 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threadedtempfile.cpython-39.pyc
2.62 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threading.cpython-39.opt-1.pyc
49.776 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threading.cpython-39.opt-2.pyc
49.728 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threading.cpython-39.pyc
49.776 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threading_local.cpython-39.opt-1.pyc
8.7 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threading_local.cpython-39.opt-2.pyc
8.626 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threading_local.cpython-39.pyc
8.7 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threadsignals.cpython-39.opt-1.pyc
6.707 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threadsignals.cpython-39.opt-2.pyc
6.638 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_threadsignals.cpython-39.pyc
6.707 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_time.cpython-39.opt-1.pyc
32.74 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_time.cpython-39.opt-2.pyc
32.507 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_time.cpython-39.pyc
32.74 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_timeit.cpython-39.opt-1.pyc
14.896 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_timeit.cpython-39.opt-2.pyc
14.847 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_timeit.cpython-39.pyc
14.896 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_timeout.cpython-39.opt-1.pyc
8.201 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_timeout.cpython-39.opt-2.pyc
7.629 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_timeout.cpython-39.pyc
8.201 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tix.cpython-39.opt-1.pyc
1.167 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tix.cpython-39.opt-2.pyc
1.167 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tix.cpython-39.pyc
1.167 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tk.cpython-39.opt-1.pyc
0.621 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tk.cpython-39.opt-2.pyc
0.621 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tk.cpython-39.pyc
0.621 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tokenize.cpython-39.opt-1.pyc
56.651 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tokenize.cpython-39.opt-2.pyc
55.473 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tokenize.cpython-39.pyc
56.651 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_trace.cpython-39.opt-1.pyc
19.541 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_trace.cpython-39.opt-2.pyc
19.209 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_trace.cpython-39.pyc
19.541 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_traceback.cpython-39.opt-1.pyc
45.997 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_traceback.cpython-39.opt-2.pyc
45.839 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_traceback.cpython-39.pyc
45.997 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tracemalloc.cpython-39.opt-1.pyc
27.938 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tracemalloc.cpython-39.opt-2.pyc
27.872 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tracemalloc.cpython-39.pyc
27.938 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ttk_guionly.cpython-39.opt-1.pyc
1.043 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ttk_guionly.cpython-39.opt-2.pyc
1.043 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ttk_guionly.cpython-39.pyc
1.043 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ttk_textonly.cpython-39.opt-1.pyc
12.017 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ttk_textonly.cpython-39.opt-2.pyc
12.017 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ttk_textonly.cpython-39.pyc
12.017 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tuple.cpython-39.opt-1.pyc
11.939 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tuple.cpython-39.opt-2.pyc
11.939 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_tuple.cpython-39.pyc
11.969 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_turtle.cpython-39.opt-1.pyc
13.438 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_turtle.cpython-39.opt-2.pyc
13.438 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_turtle.cpython-39.pyc
13.438 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_type_comments.cpython-39.opt-1.pyc
9.619 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_type_comments.cpython-39.opt-2.pyc
9.402 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_type_comments.cpython-39.pyc
9.688 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_typechecks.cpython-39.opt-1.pyc
3.22 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_typechecks.cpython-39.opt-2.pyc
3.086 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_typechecks.cpython-39.pyc
3.22 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_types.cpython-39.opt-1.pyc
63.419 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_types.cpython-39.opt-2.pyc
63.244 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_types.cpython-39.pyc
63.489 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_typing.cpython-39.opt-1.pyc
204.568 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_typing.cpython-39.opt-2.pyc
204.534 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_typing.cpython-39.pyc
205.063 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ucn.cpython-39.opt-1.pyc
8.469 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ucn.cpython-39.opt-2.pyc
8.267 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_ucn.cpython-39.pyc
8.469 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unary.cpython-39.opt-1.pyc
2.048 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unary.cpython-39.opt-2.pyc
1.963 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unary.cpython-39.pyc
2.048 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode.cpython-39.opt-1.pyc
109.417 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode.cpython-39.opt-2.pyc
105.458 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode.cpython-39.pyc
109.417 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode_file.cpython-39.opt-1.pyc
3.574 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode_file.cpython-39.opt-2.pyc
3.574 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode_file.cpython-39.pyc
3.574 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode_file_functions.cpython-39.opt-1.pyc
5.382 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode_file_functions.cpython-39.opt-2.pyc
5.382 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode_file_functions.cpython-39.pyc
5.382 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode_identifiers.cpython-39.opt-1.pyc
1.508 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode_identifiers.cpython-39.opt-2.pyc
1.508 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicode_identifiers.cpython-39.pyc
1.508 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicodedata.cpython-39.opt-1.pyc
13.79 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicodedata.cpython-39.opt-2.pyc
13.628 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unicodedata.cpython-39.pyc
13.79 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unittest.cpython-39.opt-1.pyc
0.512 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unittest.cpython-39.opt-2.pyc
0.512 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unittest.cpython-39.pyc
0.512 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_univnewlines.cpython-39.opt-1.pyc
5.259 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_univnewlines.cpython-39.opt-2.pyc
5.259 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_univnewlines.cpython-39.pyc
5.259 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unpack.cpython-39.opt-1.pyc
3.22 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unpack.cpython-39.opt-2.pyc
3.22 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unpack.cpython-39.pyc
3.22 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unpack_ex.cpython-39.opt-1.pyc
10.166 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unpack_ex.cpython-39.opt-2.pyc
10.166 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unpack_ex.cpython-39.pyc
10.166 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unparse.cpython-39.opt-1.pyc
18.956 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unparse.cpython-39.opt-2.pyc
18.626 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_unparse.cpython-39.pyc
18.956 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib.cpython-39.opt-1.pyc
54.478 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib.cpython-39.opt-2.pyc
52.095 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib.cpython-39.pyc
54.478 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib2.cpython-39.opt-1.pyc
59.425 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib2.cpython-39.opt-2.pyc
57.2 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib2.cpython-39.pyc
59.458 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib2_localnet.cpython-39.opt-1.pyc
23.499 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib2_localnet.cpython-39.opt-2.pyc
22.304 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib2_localnet.cpython-39.pyc
23.532 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib2net.cpython-39.opt-1.pyc
9.321 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib2net.cpython-39.opt-2.pyc
9.27 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib2net.cpython-39.pyc
9.321 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib_response.cpython-39.opt-1.pyc
2.451 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib_response.cpython-39.opt-2.pyc
2.396 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllib_response.cpython-39.pyc
2.451 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllibnet.cpython-39.opt-1.pyc
8.367 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllibnet.cpython-39.opt-2.pyc
7.722 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urllibnet.cpython-39.pyc
8.367 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urlparse.cpython-39.opt-1.pyc
51.114 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urlparse.cpython-39.opt-2.pyc
51.005 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_urlparse.cpython-39.pyc
51.186 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_userdict.cpython-39.opt-1.pyc
5.811 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_userdict.cpython-39.opt-2.pyc
5.811 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_userdict.cpython-39.pyc
5.811 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_userlist.cpython-39.opt-1.pyc
3.067 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_userlist.cpython-39.opt-2.pyc
3.067 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_userlist.cpython-39.pyc
3.067 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_userstring.cpython-39.opt-1.pyc
2.503 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_userstring.cpython-39.opt-2.pyc
2.503 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_userstring.cpython-39.pyc
2.503 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_utf8_mode.cpython-39.opt-1.pyc
7.343 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_utf8_mode.cpython-39.opt-2.pyc
7.271 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_utf8_mode.cpython-39.pyc
7.343 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_utf8source.cpython-39.opt-1.pyc
1.486 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_utf8source.cpython-39.opt-2.pyc
1.486 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_utf8source.cpython-39.pyc
1.486 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_uu.cpython-39.opt-1.pyc
8.401 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_uu.cpython-39.opt-2.pyc
8.21 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_uu.cpython-39.pyc
8.401 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_uuid.cpython-39.opt-1.pyc
32.872 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_uuid.cpython-39.opt-2.pyc
32.791 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_uuid.cpython-39.pyc
32.872 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_venv.cpython-39.opt-1.pyc
18.288 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_venv.cpython-39.opt-2.pyc
17.119 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_venv.cpython-39.pyc
18.288 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wait3.cpython-39.opt-1.pyc
1.663 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wait3.cpython-39.opt-2.pyc
1.601 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wait3.cpython-39.pyc
1.663 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wait4.cpython-39.opt-1.pyc
1.196 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wait4.cpython-39.opt-2.pyc
1.134 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wait4.cpython-39.pyc
1.196 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wave.cpython-39.opt-1.pyc
7.59 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wave.cpython-39.opt-2.pyc
7.59 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wave.cpython-39.pyc
7.59 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_weakref.cpython-39.opt-1.pyc
70.873 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_weakref.cpython-39.opt-2.pyc
70.538 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_weakref.cpython-39.pyc
70.919 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_weakset.cpython-39.opt-1.pyc
16.38 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_weakset.cpython-39.opt-2.pyc
16.38 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_weakset.cpython-39.pyc
16.419 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_webbrowser.cpython-39.opt-1.pyc
11.989 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_webbrowser.cpython-39.opt-2.pyc
11.381 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_webbrowser.cpython-39.pyc
11.989 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_winconsoleio.cpython-39.opt-1.pyc
5.563 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_winconsoleio.cpython-39.opt-2.pyc
5.521 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_winconsoleio.cpython-39.pyc
5.563 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_winreg.cpython-39.opt-1.pyc
17.009 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_winreg.cpython-39.opt-2.pyc
17.009 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_winreg.cpython-39.pyc
17.009 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_winsound.cpython-39.opt-1.pyc
5.462 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_winsound.cpython-39.opt-2.pyc
5.462 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_winsound.cpython-39.pyc
5.462 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_with.cpython-39.opt-1.pyc
35.202 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_with.cpython-39.opt-2.pyc
35.132 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_with.cpython-39.pyc
35.202 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wsgiref.cpython-39.opt-1.pyc
28.667 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wsgiref.cpython-39.opt-2.pyc
28.174 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_wsgiref.cpython-39.pyc
28.667 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xdrlib.cpython-39.opt-1.pyc
2.773 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xdrlib.cpython-39.opt-2.pyc
2.773 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xdrlib.cpython-39.pyc
2.773 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xml_dom_minicompat.cpython-39.opt-1.pyc
4.116 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xml_dom_minicompat.cpython-39.opt-2.pyc
4.025 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xml_dom_minicompat.cpython-39.pyc
4.116 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xml_etree.cpython-39.opt-1.pyc
139.859 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xml_etree.cpython-39.opt-2.pyc
139.683 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xml_etree.cpython-39.pyc
139.859 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xml_etree_c.cpython-39.opt-1.pyc
8.185 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xml_etree_c.cpython-39.opt-2.pyc
8.185 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xml_etree_c.cpython-39.pyc
8.185 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xmlrpc.cpython-39.opt-1.pyc
53.215 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xmlrpc.cpython-39.opt-2.pyc
52.491 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xmlrpc.cpython-39.pyc
53.215 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xmlrpc_net.cpython-39.opt-1.pyc
1.384 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xmlrpc_net.cpython-39.opt-2.pyc
1.384 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xmlrpc_net.cpython-39.pyc
1.384 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xxtestfuzz.cpython-39.opt-1.pyc
0.943 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xxtestfuzz.cpython-39.opt-2.pyc
0.809 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_xxtestfuzz.cpython-39.pyc
0.943 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_yield_from.cpython-39.opt-1.pyc
32.86 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_yield_from.cpython-39.opt-2.pyc
30.916 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_yield_from.cpython-39.pyc
32.86 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipapp.cpython-39.opt-1.pyc
13.136 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipapp.cpython-39.opt-2.pyc
12.992 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipapp.cpython-39.pyc
13.136 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipfile.cpython-39.opt-1.pyc
106.265 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipfile.cpython-39.opt-2.pyc
101.49 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipfile.cpython-39.pyc
107.332 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipfile64.cpython-39.opt-1.pyc
4.57 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipfile64.cpython-39.opt-2.pyc
4.57 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipfile64.cpython-39.pyc
4.57 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipimport.cpython-39.opt-1.pyc
23.658 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipimport.cpython-39.opt-2.pyc
23.658 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipimport.cpython-39.pyc
23.658 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipimport_support.cpython-39.opt-1.pyc
6.019 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipimport_support.cpython-39.opt-2.pyc
6.019 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zipimport_support.cpython-39.pyc
6.019 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zlib.cpython-39.opt-1.pyc
28.509 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zlib.cpython-39.opt-2.pyc
28.447 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
test_zlib.cpython-39.pyc
28.509 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
testcodec.cpython-39.opt-1.pyc
1.384 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
testcodec.cpython-39.opt-2.pyc
1.24 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
testcodec.cpython-39.pyc
1.384 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
tf_inherit_check.cpython-39.opt-1.pyc
0.544 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
tf_inherit_check.cpython-39.opt-2.pyc
0.544 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
tf_inherit_check.cpython-39.pyc
0.544 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
time_hashlib.cpython-39.opt-1.pyc
2.717 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
time_hashlib.cpython-39.opt-2.pyc
2.717 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
time_hashlib.cpython-39.pyc
2.717 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
win_console_handler.cpython-39.opt-1.pyc
1.208 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
win_console_handler.cpython-39.opt-2.pyc
0.796 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
win_console_handler.cpython-39.pyc
1.208 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
xmltests.cpython-39.opt-1.pyc
0.617 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
xmltests.cpython-39.opt-2.pyc
0.617 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
xmltests.cpython-39.pyc
0.617 KB
19 Jun 2025 12.11 PM
root / linksafe
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF