Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 04cba5b

Browse files
committed
the usual
1 parent e109aa7 commit 04cba5b

2 files changed

Lines changed: 57 additions & 3 deletions

File tree

Misc/ACKS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Without you I would've stopped working on Python long ago!
99
--Guido
1010

1111
Mark Anacker
12+
Stig Bakken
1213
Ulf Bartelt
1314
Anthony Baxter
1415
Donald Beaudry
@@ -18,6 +19,7 @@ Stephen Bevan
1819
Jurjen Bos
1920
Peter Bosch
2021
Eric Bouck
22+
Monty Brandenberg
2123
Terrence Brannon
2224
Dave Brennan
2325
Erik de Bueger
@@ -30,6 +32,7 @@ Steve Clift
3032
Matt Conway
3133
Tom Culliton
3234
John Cugini
35+
Eric Daniel
3336
Jonathan Dasteel
3437
John DeGood
3538
Roger Dev
@@ -50,6 +53,7 @@ Barry Hantman
5053
Lynda Hardman
5154
Rycharde Hawkes
5255
Ivan Herman
56+
Kevan Heydon
5357
David Hobley
5458
Chris Hoffman
5559
Philip Homburg
@@ -63,6 +67,7 @@ Lou Kates
6367
Steve Kirsch
6468
Bob Kras
6569
Andrew Kuchling
70+
Soren Larsen
6671
William Lewis
6772
Robert van Liere
6873
Anne Lord
@@ -87,6 +92,7 @@ Tim Peters
8792
Adrian Phillips
8893
Amrit Prem
8994
John Redford
95+
Steven Reiz
9096
Timothy Roscoe
9197
Jim Roskind
9298
Kevin Samborn
@@ -104,6 +110,7 @@ Jim St. Pierre
104110
Quentin Stafford-Fraser
105111
Richard Stoakley
106112
Casper Stoel
113+
Ken Stox
107114
Tracy Tims
108115
R Lindsay Todd
109116
Bennett Todd
@@ -116,4 +123,5 @@ Steve Waterbury
116123
Bob Watson
117124
Rickard Westman
118125
Dik Winter
126+
119127

Misc/NEWS

Lines changed: 49 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
===================================
44

55

6-
- Most known bugs have been fixed. For example the pow(2,2,3L) bug on
7-
Linux has been fixed. Also the re-entrancy problems with __del__ have
8-
been fixed.
6+
- Virtually all known bugs have been fixed. For example the
7+
pow(2,2,3L) bug on Linux has been fixed. Also the re-entrancy
8+
problems with __del__ have been fixed.
99

1010
- Most known memory leaks have been fixed.
1111

@@ -63,6 +63,52 @@ shortly, plus instructions on how to compile with THINK C 6.0.)
6363
- Used autoconf 2.0 to generate the configure script. Adapted
6464
configure.in to use the new features in autoconf 2.0.
6565

66+
- It should now build on the NeXT without intervention, even on the
67+
3.3 Sparc pre-release.
68+
69+
- __import__ is now called with 4 arguments:
70+
(modulename, globals, locals, fromlist)
71+
72+
- Characters passed to isspace() and friends are masked to nonnegative
73+
values
74+
75+
- Correctly compute pow(-3.0, 3)
76+
77+
- Fix portability problems with getopt (configure now checks for a
78+
non-GNU getopt)
79+
80+
- Don't add frozenmain.o to libPython.a
81+
82+
- Exceptions can now be classes
83+
84+
- The socket module exports a long list of socket related symbols
85+
86+
- Lots of Mac specific changes (this area of the source is not
87+
completed!)
88+
89+
- When a module object is deleted, it clears out its own dictionary
90+
(this fixes a circularity in the references between functions and
91+
their global dictionary)
92+
93+
- Changed the error handling by [new]getargs() e.g. for "O&"
94+
95+
- Dynamic loading of modules using shared libraries is supported for
96+
several new platforms
97+
98+
- Support "O&" in mkvalue()
99+
100+
- Extension to findmethod(): findmethodinchain() (where a chain is a
101+
linked list of methodlist arrays)
102+
103+
- Callable() function is now public
104+
105+
106+
Known bugs still remaining:
107+
---------------------------
108+
109+
- There's still a memory leak in threads; bigger when
110+
thread.exit_thread() is used
111+
66112

67113
--Guido van Rossum, CWI, Amsterdam <[email protected]>
68114
URL: <http://www.cwi.nl/cwi/people/Guido.van.Rossum.html>

0 commit comments

Comments
 (0)