summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-03-01 10:27:01 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-03-01 10:27:01 (GMT)
commit99866336094bd432860d32dd368f5934683939e7 (patch)
tree173756cdcd9a4b156945b59e2b3abf9fcf8b96b5 /Misc
parent272cb40e31fd2eb194509bcc028998d324ba42c2 (diff)
downloadcpython-99866336094bd432860d32dd368f5934683939e7.zip
cpython-99866336094bd432860d32dd368f5934683939e7.tar.gz
cpython-99866336094bd432860d32dd368f5934683939e7.tar.bz2
Patch 520694: arraymodule.c improvements:
- make array.array a type - add Py_UNICODE arrays - support +=, *=
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 516bda5..22b0844 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,6 +17,11 @@ Core and builtins
Extension modules
+- array.array is now a type object. A new format character
+ 'u' indicates Py_UNICODE arrays. For those, .tounicode and
+ .fromunicode methods are available. Arrays now support __iadd__
+ and __imul__.
+
- dl now builds on every system that has dlfcn.h. Failure in case
of sizeof(int)!=sizeof(long)!=sizeof(void*) is delayed until dl.open
is called.