diff options
author | Raymond Hettinger <python@rcn.com> | 2003-06-30 03:35:06 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-06-30 03:35:06 (GMT) |
commit | 562a855da062202e0af39cb290c3baf7228dc350 (patch) | |
tree | b1b06ae738786526b61d94132089c6d2c36afd26 /Misc | |
parent | a9002f824bdca26700a9a6e7b7e6b36a9482e345 (diff) | |
download | cpython-562a855da062202e0af39cb290c3baf7228dc350.zip cpython-562a855da062202e0af39cb290c3baf7228dc350.tar.gz cpython-562a855da062202e0af39cb290c3baf7228dc350.tar.bz2 |
Merge branch updates back into the main trunk
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 40 |
1 files changed, 40 insertions, 0 deletions
@@ -189,6 +189,10 @@ Library inserting a "dummy" HTTPHandler after a ProxyHandler when building an opener with proxy support. +- Iterators have been added for dbm keys. + +- random.Random objects can now be pickled. + Tools/Demos ----------- @@ -222,6 +226,12 @@ C API type, its dealloc function must call type->tp_free, and since the type is gc'able, tp_free must not be NULL or _PyObject_Del. +- PyThreadState_SetAsyncExc(): A new API (deliberately accessible only + from C) to interrupt a thread by sending it an exception. It is + intentional that you have to write your own C extension to call it + from Python. + + New platforms ------------- @@ -259,6 +269,36 @@ Mac toplevel application class (in AppleScript terminology). - The Package Manager can now update itself. +SourceForge Bugs and Patches Applied +------------------------------------ + +430160, 471893, 501716, 542562, 549151, 569574, 595837, 596434, +598163, 604210, 604716, 610332, 612627, 614770, 620190, 621891, +622042, 639139, 640236, 644345, 649742, 649742, 658233, 660022, +661318, 661676, 662807, 662923, 666219, 672855, 678325, 682347, +683486, 684981, 685773, 686254, 692776, 692959, 693094, 696777, +697989, 700827, 703666, 708495, 708604, 708901, 710733, 711902, +713722, 715782, 718286, 719359, 719367, 723136, 723831, 723962, +724588, 724767, 724767, 725942, 726150, 726446, 726869, 727051, +727719, 727719, 727805, 728277, 728563, 728656, 729096, 729103, +729293, 729297, 729300, 729317, 729395, 729622, 729817, 730170, +730296, 730594, 730685, 730826, 730963, 731209, 731403, 731504, +731514, 731626, 731635, 731643, 731644, 731644, 731689, 732124, +732143, 732234, 732284, 732284, 732479, 732761, 732783, 732951, +733667, 733781, 734118, 734231, 734869, 735051, 735293, 735527, +735613, 735694, 736962, 736962, 737970, 738066, 739313, 740055, +740234, 740301, 741806, 742126, 742741, 742860, 742860, 742911, +744041, 744104, 744238, 744687, 744877, 745055, 745478, 745525, +745620, 746012, 746304, 746366, 746801, 746953, 747348, 747667, +747954, 748846, 748849, 748973, 748975, 749191, 749210, 749759, +749831, 749911, 750008, 750092, 750542, 750595, 751038, 751107, +751276, 751451, 751916, 751941, 751956, 751998, 752671, 753451, +753602, 753617, 753845, 753925, 754014, 754340, 754447, 755031, +755087, 755147, 755245, 755683, 755987, 756032, 756996, 757058, +757229, 757818, 757821, 757822, 758112, 758910, 759227, 759889, +760257, 760703, 760792, 761104, 761337, 761519, 761830, 762455 + + What's New in Python 2.3 beta 1? ================================ |