Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in python-internals

Why are f-strings faster than str() to parse values?

Can someone explain how the source code of staticmethod works in python

What does self = None do?

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

Why are assignments not allowed in Python's `lambda` expressions?

Python frozenset hashing algorithm / implementation

Identifier normalization: Why is the micro sign converted into the Greek letter mu?

python generators garbage collection

Why does Python handle '1 is 1**2' differently from '1000 is 10**3'?

Python's Passing by References [duplicate]

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

Accessing dictionary items by position in Python 3.6+ efficiently

Converting a series of ints to strings - Why is apply much faster than astype?

Using a function defined in an exec'ed string in Python 3 [duplicate]

Printing without parentheses varying error message using Python 3

Fatal Python error and `BufferedWriter`

When is a function in a standard library module called a built-in function?

How is the __name__ variable in a Python module defined?

Why do ints require three times as much memory in Python?

How is tuple implemented in CPython?