An iterable object is an object that implements __iter__, which is expected to return an iterator object. | wiki.python.org
This index organizes articles written from or about conferences.| lwn.net
Earlier this year, an experimental “just-in-time” compiler was merged into CPython’s main development branch. While recent CPython releases have included other substantial internal changes, this addition represents a particularly significant departure f...| Python Enhancement Proposals (PEPs)
Generator functions allow you to declare a function that behaves like an iterator, i.e. it can be used in a for loop. | wiki.python.org
This chapter explains the meaning of the elements of expressions in Python. Syntax Notes: In this and the following chapters, extended BNF notation will be used to describe syntax, not lexical anal...| Python documentation
man7.org > Linux > man-pages| man7.org
Source code: Lib/profile.py and Lib/pstats.py Introduction to the profilers: cProfile and profile provide deterministic profiling of Python programs. A profile is a set of statistics that describes...| Python documentation
In order to perform well, virtual machines for dynamic languages must specialize the code that they execute to the types and values in the program being run. This specialization is often associated with “JIT” compilers, but is beneficial even without ma...| Python Enhancement Proposals (PEPs)
Source code: Lib/pdb.py The module pdb defines an interactive source code debugger for Python programs. It supports setting (conditional) breakpoints and single stepping at the source line level, i...| Python documentation