diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-08-10 22:45:34 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-08-10 22:45:34 (GMT) |
commit | 4643c2fda1546d6d5b0b33a93ee84218da7ad78b (patch) | |
tree | 3b75481e12d7c671950abc4400de3960009662ce /Misc | |
parent | 789c09d2cd8da14166846f007d53a56585b0d6c3 (diff) | |
download | cpython-4643c2fda1546d6d5b0b33a93ee84218da7ad78b.zip cpython-4643c2fda1546d6d5b0b33a93ee84218da7ad78b.tar.gz cpython-4643c2fda1546d6d5b0b33a93ee84218da7ad78b.tar.bz2 |
Followup to bug #1069160.
PyThreadState_SetAsyncExc(): internal correctness changes wrt
refcount safety and deadlock avoidance. Also added a basic test
case (relying on ctypes) and repaired the docs.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -78,6 +78,15 @@ Build - Bug #1530448, ctypes buld failure on Solaris 10 was fixed. +C API +----- + +- Bug #1069160. Internal correctness changes were made to + ``PyThreadState_SetAsyncExc()``. A test case was added, and + the documentation was changed to state that the return value + is always 1 (normal) or 0 (if the specified thread wasn't found). + + Mac --- @@ -148,7 +157,7 @@ Library - os.urandom no longer masks unrelated exceptions like SystemExit or KeyboardInterrupt. -- Bug #1525866: Don't copy directory stat times in +- Bug #1525866: Don't copy directory stat times in shutil.copytree on Windows - Bug #1002398: The documentation for os.path.sameopenfile now correctly @@ -281,7 +290,7 @@ Mac - Bug #1527397: PythonLauncher now launches scripts with the working directory set to the directory that contains the script instead of the user home - directory. That latter was an implementation accident and not what users + directory. That latter was an implementation accident and not what users expect. |