]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #12469: fix signal order check of test_signal
authorVictor Stinner <victor.stinner@haypocalc.com>
Mon, 4 Jul 2011 23:32:06 +0000 (01:32 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Mon, 4 Jul 2011 23:32:06 +0000 (01:32 +0200)
commit5dd470ef1deacf5bf9ed531c28f60082a94f6bb5
tree66b985dace5508b98a03b3a53896d12497c2647e
parent68757ac8840dbe996735e51047d6b45c77456501
Issue #12469: fix signal order check of test_signal

When signals are unblocked, pending signal ared delivered in the reverse order
of their number (also on Linux, not only on FreeBSD 6).

Don't sort signals by their number if signals were not blocked (test_signum).
Lib/test/test_signal.py