Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in cpython

How are variables names stored and mapped internally?

What exactly is the optimization `functools.partial` is making?

Which characters are considered whitespace by split()?

python python-2.x cpython

Why does naive string concatenation become quadratic above a certain length?

What resources does an instance of a class use?

C Python: Running Python code within a context

Why doesn't Python always require spaces around keywords?

python pypy cpython

How does module loading work in CPython?

Boost.python vs Cython for C++/python interface

CPython - locking the GIL in the main thread

python c cpython

Performance of map vs starmap?

What are some strategies to write python code that works in CPython, Jython and IronPython

What is Python's sequence protocol?

Using NumPy and Cpython with Jython

java python numpy jython cpython

CPython memory allocation

Why does Python optimize out "if 0", but not "if None"?

python python-2.7 cpython

How to generate a repeatable random number sequence?

python random cpython

Why is deque implemented as a linked list instead of a circular array?

Comparing None with built-in types using arithmetic operators?

python comparison cpython

Why does id({}) == id({}) and id([]) == id([]) in CPython?