I tried to find out what this is in Python 2:
>>> x=0100644
>>> x
33188
>>> x=100644
>>> x
100644
As you can see with or without the leading '0', x value is different in Python 2. I am not largely familiar with Python 2 types. Can you help show me what 0100644
is in python 2?