Commit da65f607 authored by Georg Brandl's avatar Georg Brandl

Fix one more PyInt occurrence.

parent d019fe29
...@@ -70,12 +70,12 @@ probably will! (On Windows, MSVC is known to call this an error and refuse to ...@@ -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. ::
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment