When you get the help string for int types using help(int). The very last part is:
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| denominator
| the denominator of a rational number in lowest terms
|
| imag
| the imaginary part of a complex number
|
| numerator
| the numerator of a rational number in lowest terms
|
| real
| the real part of a complex number
So these are attributes of the complex type and fraction class, so why are they listed here in relation to ints. Are the some type of global data descriptor?