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

Skip to content

Commit 6610ad9

Browse files
committed
Added 1995 to copyright message.
floatobject.c: fix hash(). methodobject.c: support METH_FREENAME flag bit.
1 parent 5799b52 commit 6610ad9

19 files changed

Lines changed: 50 additions & 47 deletions

Objects/accessobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***********************************************************
2-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
3-
Amsterdam, The Netherlands.
2+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3+
The Netherlands.
44
55
All Rights Reserved
66

Objects/classobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***********************************************************
2-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
3-
Amsterdam, The Netherlands.
2+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3+
The Netherlands.
44
55
All Rights Reserved
66

Objects/dictobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***********************************************************
2-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
3-
Amsterdam, The Netherlands.
2+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3+
The Netherlands.
44
55
All Rights Reserved
66

Objects/fileobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***********************************************************
2-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
3-
Amsterdam, The Netherlands.
2+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3+
The Netherlands.
44
55
All Rights Reserved
66

Objects/floatobject.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***********************************************************
2-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
3-
Amsterdam, The Netherlands.
2+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3+
The Netherlands.
44
55
All Rights Reserved
66
@@ -212,7 +212,7 @@ float_hash(v)
212212
}
213213
else {
214214
fractpart = frexp(fractpart, &expo);
215-
fractpart = fractpart*4294967296.0; /* 2**32 */
215+
fractpart = fractpart*2147483648.0; /* 2**31 */
216216
x = (long) (intpart + fractpart) ^ expo; /* Rather arbitrary */
217217
}
218218
if (x == -1)

Objects/frameobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***********************************************************
2-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
3-
Amsterdam, The Netherlands.
2+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3+
The Netherlands.
44
55
All Rights Reserved
66

Objects/funcobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***********************************************************
2-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
3-
Amsterdam, The Netherlands.
2+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3+
The Netherlands.
44
55
All Rights Reserved
66

Objects/intobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***********************************************************
2-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
3-
Amsterdam, The Netherlands.
2+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3+
The Netherlands.
44
55
All Rights Reserved
66

Objects/listobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***********************************************************
2-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
3-
Amsterdam, The Netherlands.
2+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3+
The Netherlands.
44
55
All Rights Reserved
66

Objects/longobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/***********************************************************
2-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
3-
Amsterdam, The Netherlands.
2+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3+
The Netherlands.
44
55
All Rights Reserved
66

0 commit comments

Comments
 (0)