summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-20 06:30:08 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-20 06:30:08 (GMT)
commit05a45599d7c7e7584a80d7ef70dc47e984664619 (patch)
tree67d35b00825fa7ab92cb32bf9db4ff902259c324 /Misc
parent910b5eec07543dc4e7f4f35648a025fe7b032249 (diff)
downloadcpython-05a45599d7c7e7584a80d7ef70dc47e984664619.zip
cpython-05a45599d7c7e7584a80d7ef70dc47e984664619.tar.gz
cpython-05a45599d7c7e7584a80d7ef70dc47e984664619.tar.bz2
Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. Schroeder.
This was a fair amount of rework of the patch. Refactored test_fork1 so it could be reused by the new tests for wait3/4. Also made them into new style unittests (derive from unittest.TestCase).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 9225031..12983c5 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -536,6 +536,7 @@ David Scherer
Gregor Schmid
Ralf Schmitt
Peter Schneider-Kamp
+Chad J. Schroeder
Sam Schulenburg
Stefan Schwarzer
Dietmar Schwertberger
diff --git a/Misc/NEWS b/Misc/NEWS
index 8069142..06f64f6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -295,6 +295,8 @@ Core and builtins
Extension Modules
-----------------
+- Patch #1309579: wait3 and wait4 were added to the posix module.
+
- Patch #1231053: The audioop module now supports encoding/decoding of alaw.
In addition, the existing ulaw code was updated.