Posts Tagged ‘ integer ’

Python integer objects implementation | Laurent Luce's Blog

May 16, 2011
By

This article describes how integer objects are managed by Python internally. An integer object in Python is represented internally by the structure PyIntObject. Its value is an attribute of type long. ...

Read more »

Translating PHP error constants

May 12, 2009
By

I wanted to log all the errors thrown out by Fwd:Vault processes to ensure that any bugs I don’t catch myself bubble to the top very quickly. To get started, I replaced PHP’s default error handling with a custom error handler function, ...

Read more »