Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in python-internals

Python eval: is it still dangerous if I disable builtins and attribute access?

Are sets ordered like dicts in python3.6

What exactly is contained within a obj.__closure__?

The `is` operator behaves unexpectedly with non-cached integers

Why is this loop faster than a dictionary comprehension for creating a dictionary?

Why does `False is False is False` evaluate to `True`?

python python-internals

How does Python's cmp_to_key function work?

Very strange behavior of operator 'is' with methods

Why does '() is ()' return True when '[] is []' and '{} is {}' return False?

Why is hardcoding this list slower than calculating it?

Where is Python's shutdown procedure setting module globals to None documented?

Why does creating a list from a list make it larger?

Why is the size of 2⁶³ 36 bytes, but 2⁶³-1 is only 24 bytes?

Python Compilation/Interpretation Process

About the changing id of an immutable string

Why is variable1 += variable2 much faster than variable1 = variable1 + variable2?

Two variables in Python have same id, but not lists or tuples

How references to variables are resolved in Python

Complexity of len() with regard to sets and lists

Why is string's startswith slower than in?