mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
* Microscopic corrections to make things compile on the Cray APP.
* Removed one use of $> in Makefile and warned about others. Added configurable lines in Makefile to change CC and AR.
This commit is contained in:
parent
f56e3db1dd
commit
9575a44575
6 changed files with 32 additions and 5 deletions
|
@ -426,7 +426,7 @@ int_int(v)
|
|||
intobject *v;
|
||||
{
|
||||
INCREF(v);
|
||||
return v;
|
||||
return (object *)v;
|
||||
}
|
||||
|
||||
static object *
|
||||
|
@ -512,5 +512,5 @@ typeobject Inttype = {
|
|||
&int_as_number, /*tp_as_number*/
|
||||
0, /*tp_as_sequence*/
|
||||
0, /*tp_as_mapping*/
|
||||
&int_hash, /*tp_hash*/
|
||||
int_hash, /*tp_hash*/
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue