views:

503

answers:

3

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

A: 

No, python is defined by its implementation.

Dev er dev
Alex Martelli
+2  A: 

You can check out the Python Reference

nojevive
+11  A: 

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

Noldorin