Is there a Python language specification?

python, specifications

Solution

There's no specification per se. The closest thing is the Python Language Reference, which details the syntax and semantics of the language.

Problem

Is there anything in Python akin to Java's JLS or C#'s spec?

Original source