Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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?

How to raise an exception in the init method for a CPython module

call PyErr_SetString twice without clearing

c++ exception cpython

How to work around the limitation of `len` function in Python?

python python-3.x cpython