Fix one more PyInt occurrence.

This commit is contained in:
Georg Brandl 2007-12-08 18:59:56 +00:00
parent d019fe295e
commit da65f60783
1 changed files with 3 additions and 3 deletions

View File

@ -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. ::