Commit 04cba5bc authored by Guido van Rossum's avatar Guido van Rossum

the usual

parent e109aa71
...@@ -9,6 +9,7 @@ Without you I would've stopped working on Python long ago! ...@@ -9,6 +9,7 @@ Without you I would've stopped working on Python long ago!
--Guido --Guido
Mark Anacker Mark Anacker
Stig Bakken
Ulf Bartelt Ulf Bartelt
Anthony Baxter Anthony Baxter
Donald Beaudry Donald Beaudry
...@@ -18,6 +19,7 @@ Stephen Bevan ...@@ -18,6 +19,7 @@ Stephen Bevan
Jurjen Bos Jurjen Bos
Peter Bosch Peter Bosch
Eric Bouck Eric Bouck
Monty Brandenberg
Terrence Brannon Terrence Brannon
Dave Brennan Dave Brennan
Erik de Bueger Erik de Bueger
...@@ -30,6 +32,7 @@ Steve Clift ...@@ -30,6 +32,7 @@ Steve Clift
Matt Conway Matt Conway
Tom Culliton Tom Culliton
John Cugini John Cugini
Eric Daniel
Jonathan Dasteel Jonathan Dasteel
John DeGood John DeGood
Roger Dev Roger Dev
...@@ -50,6 +53,7 @@ Barry Hantman ...@@ -50,6 +53,7 @@ Barry Hantman
Lynda Hardman Lynda Hardman
Rycharde Hawkes Rycharde Hawkes
Ivan Herman Ivan Herman
Kevan Heydon
David Hobley David Hobley
Chris Hoffman Chris Hoffman
Philip Homburg Philip Homburg
...@@ -63,6 +67,7 @@ Lou Kates ...@@ -63,6 +67,7 @@ Lou Kates
Steve Kirsch Steve Kirsch
Bob Kras Bob Kras
Andrew Kuchling Andrew Kuchling
Soren Larsen
William Lewis William Lewis
Robert van Liere Robert van Liere
Anne Lord Anne Lord
...@@ -87,6 +92,7 @@ Tim Peters ...@@ -87,6 +92,7 @@ Tim Peters
Adrian Phillips Adrian Phillips
Amrit Prem Amrit Prem
John Redford John Redford
Steven Reiz
Timothy Roscoe Timothy Roscoe
Jim Roskind Jim Roskind
Kevin Samborn Kevin Samborn
...@@ -104,6 +110,7 @@ Jim St. Pierre ...@@ -104,6 +110,7 @@ Jim St. Pierre
Quentin Stafford-Fraser Quentin Stafford-Fraser
Richard Stoakley Richard Stoakley
Casper Stoel Casper Stoel
Ken Stox
Tracy Tims Tracy Tims
R Lindsay Todd R Lindsay Todd
Bennett Todd Bennett Todd
...@@ -116,4 +123,5 @@ Steve Waterbury ...@@ -116,4 +123,5 @@ Steve Waterbury
Bob Watson Bob Watson
Rickard Westman Rickard Westman
Dik Winter Dik Winter
hajime@jsk.t.u-tokyo.ac.jp
tim@prl.philips.nl tim@prl.philips.nl
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
=================================== ===================================
- Most known bugs have been fixed. For example the pow(2,2,3L) bug on - Virtually all known bugs have been fixed. For example the
Linux has been fixed. Also the re-entrancy problems with __del__ have pow(2,2,3L) bug on Linux has been fixed. Also the re-entrancy
been fixed. problems with __del__ have been fixed.
- Most known memory leaks have been fixed. - Most known memory leaks have been fixed.
...@@ -63,6 +63,52 @@ shortly, plus instructions on how to compile with THINK C 6.0.) ...@@ -63,6 +63,52 @@ shortly, plus instructions on how to compile with THINK C 6.0.)
- Used autoconf 2.0 to generate the configure script. Adapted - Used autoconf 2.0 to generate the configure script. Adapted
configure.in to use the new features in autoconf 2.0. configure.in to use the new features in autoconf 2.0.
- It should now build on the NeXT without intervention, even on the
3.3 Sparc pre-release.
- __import__ is now called with 4 arguments:
(modulename, globals, locals, fromlist)
- Characters passed to isspace() and friends are masked to nonnegative
values
- Correctly compute pow(-3.0, 3)
- Fix portability problems with getopt (configure now checks for a
non-GNU getopt)
- Don't add frozenmain.o to libPython.a
- Exceptions can now be classes
- The socket module exports a long list of socket related symbols
- Lots of Mac specific changes (this area of the source is not
completed!)
- When a module object is deleted, it clears out its own dictionary
(this fixes a circularity in the references between functions and
their global dictionary)
- Changed the error handling by [new]getargs() e.g. for "O&"
- Dynamic loading of modules using shared libraries is supported for
several new platforms
- Support "O&" in mkvalue()
- Extension to findmethod(): findmethodinchain() (where a chain is a
linked list of methodlist arrays)
- Callable() function is now public
Known bugs still remaining:
---------------------------
- There's still a memory leak in threads; bigger when
thread.exit_thread() is used
--Guido van Rossum, CWI, Amsterdam <Guido.van.Rossum@cwi.nl> --Guido van Rossum, CWI, Amsterdam <Guido.van.Rossum@cwi.nl>
URL: <http://www.cwi.nl/cwi/people/Guido.van.Rossum.html> URL: <http://www.cwi.nl/cwi/people/Guido.van.Rossum.html>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment