From: Antoine Pitrou Date: Mon, 25 Apr 2011 19:23:26 +0000 (+0200) Subject: Issue #10914: Add a minimal embedding test to test_capi. X-Git-Tag: v3.3.0a1~2511 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eec60603a89eabf8945a0928b5b105f6e923d1ea;p=thirdparty%2FPython%2Fcpython.git Issue #10914: Add a minimal embedding test to test_capi. --- eec60603a89eabf8945a0928b5b105f6e923d1ea diff --cc .hgignore index bba99a46e976,e5e149fba5cc..7bb2457d11b1 --- a/.hgignore +++ b/.hgignore @@@ -64,8 -62,6 +64,9 @@@ PCbuild/*.ex PCbuild/*.o PCbuild/*.ncb PCbuild/*.bsc +PCbuild/*.user +PCbuild/*.suo PCbuild/Win32-temp-* +PCbuild/x64-temp-* __pycache__ + Modules/_testembed diff --cc Misc/NEWS index d62851611661,f4a4c5258eb1..bba2ac6d8ef3 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -504,12 -281,8 +504,14 @@@ Extension Tests ----- + - Issue #10914: Add a minimal embedding test to test_capi. + +- Issue #11223: Skip test_lock_acquire_interruption() and + test_rlock_acquire_interruption() of test_threadsignals if a thread lock is + implemented using a POSIX mutex and a POSIX condition variable. A POSIX + condition variable cannot be interrupted by a signal (e.g. on Linux, the + futex system call is restarted). + - Issue #11790: Fix sporadic failures in test_multiprocessing.WithProcessesTestCondition. - Fix possible "file already exists" error when running the tests in parallel.