mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Fix one more PyInt occurrence.
This commit is contained in:
parent
d019fe295e
commit
da65f60783
1 changed files with 3 additions and 3 deletions
|
|
@ -70,12 +70,12 @@ probably will! (On Windows, MSVC is known to call this an error and refuse to
|
|||
compile the code.)
|
||||
|
||||
For contrast, let's take a look at the corresponding definition for standard
|
||||
Python integers::
|
||||
Python floats::
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD
|
||||
long ob_ival;
|
||||
} PyIntObject;
|
||||
double ob_fval;
|
||||
} PyFloatObject;
|
||||
|
||||
Moving on, we come to the crunch --- the type object. ::
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue