diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-03-01 10:27:01 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-03-01 10:27:01 (GMT) |
commit | 99866336094bd432860d32dd368f5934683939e7 (patch) | |
tree | 173756cdcd9a4b156945b59e2b3abf9fcf8b96b5 /Misc | |
parent | 272cb40e31fd2eb194509bcc028998d324ba42c2 (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. |