[Python-Dev] various unix platform build/test issues

Tim Peters tim.one@comcast.net
Tue, 18 Feb 2003 11:41:50 -0500


[Neal Norwitz]
> The patch fixed test_random, but not test_descrtut.  I didn't run the
> full test suite.

How about showing us the failing output from test_descrtut?  Offhand I don't
see anything that would be affected apart from the last line of this
doctest:

    >>> def sorted(seq):
    ...     seq.sort()
    ...     return seq
    >>> print sorted(a.keys())
    [1, 2]
    >>> exec "x = 3; print x" in a
    3
    >>> print sorted(a.keys())
    [1, 2, '__builtins__', 'x']