Fix one more PyInt occurrence.

This commit is contained in:
Georg Brandl 2007-12-08 18:59:56 +00:00
parent d019fe295e
commit da65f60783

View file

@ -70,12 +70,12 @@ probably will! (On Windows, MSVC is known to call this an error and refuse to
compile the code.) compile the code.)
For contrast, let's take a look at the corresponding definition for standard For contrast, let's take a look at the corresponding definition for standard
Python integers:: Python floats::
typedef struct { typedef struct {
PyObject_HEAD PyObject_HEAD
long ob_ival; double ob_fval;
} PyIntObject; } PyFloatObject;
Moving on, we come to the crunch --- the type object. :: Moving on, we come to the crunch --- the type object. ::