summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2003-11-10 06:44:44 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2003-11-10 06:44:44 (GMT)
commitd8921379e9ce1b4133ba54feab9ea0b3d641c94d (patch)
tree8d3c0aff39e22e1763372c3462d04a6533daf8b6 /Misc
parent49ee14dac5da2249f0f55f00190a9b9f01d23642 (diff)
downloadcpython-d8921379e9ce1b4133ba54feab9ea0b3d641c94d.zip
cpython-d8921379e9ce1b4133ba54feab9ea0b3d641c94d.tar.gz
cpython-d8921379e9ce1b4133ba54feab9ea0b3d641c94d.tar.bz2
Patch #798297: Add IMAP THREAD command.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 16f3f62..4ddd6a3 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -137,6 +137,7 @@ John DeGood
Vincent Delft
Roger Dev
Toby Dickenson
+Yves Dionne
Daniel Dittmar
Walter Dörwald
Jaromir Dolecek
diff --git a/Misc/NEWS b/Misc/NEWS
index 014a099..ff1e426 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -57,6 +57,8 @@ Core and builtins
Extension modules
-----------------
+- os.getsid was added.
+
- The pwd module incorrectly advertised its struct type as
struct_pwent; this has been renamed to struct_passwd. (The old name
is still supported for backwards compatibility.)
@@ -104,6 +106,8 @@ Extension modules
Library
-------
+- imaplib.IMAP4.thread was added.
+
- Plugged a minor hole in tempfile.mktemp() due to the use of
os.path.exists(), switched to using os.lstat() directly if possible.