Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in cpython

can't install software using brew on my mac?

macos homebrew cpython libtool

Making copies of built-ins classes

Why 2 different python lambda's have the same bytecode?

python lambda cpython

Are `.__mro__` and `.mro()` a CPython implementation details?

Python: where is the method listdir because there is no "def listdir()" in module os.py?

python cpython listdir

What does the following code do in cpython?

How to get timezone from Python C API?

python c cpython

Why and where python interned strings when executing `a = 'python'` while the source code does not show that?

python python-c-api cpython

Why cpython exposes 'PyTuple_SetItem' as C-API if tuple is immutable by design?

RuntimeError: lost sys.stdout

Why is CPython's hash(-1) != -1

python hash cpython

What is the `ExceptionTable` in the output of `dis`?

How are small sets stored in memory?

collections.deque: why q[9999] is faster than q[-1]?

python cpython deque

Why does the float object behave differently with the "is" operator?