vote up 4 vote down star

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

flag

I Googled it too and found a Wikipedia article and the Python Language Reference. These are hardly a specification, which he is looking for. – cdmckay Jul 8 at 2:21
2  
@S.Lott Yes actually I did Google it, not that it matters, these are the types of questions that SO is here for. Instead of a snippy comment maybe you could try answering helpfully. – kgrad Jul 8 at 2:25
Why was the Google result of a Python Language Specification unacceptable? What was wrong with it? – S.Lott Jul 8 at 2:36
@S.Lott because it did not answer the question. Google gave me a wiki article on the PLR and the PLR itself. It did not tell me there was no formal spec nor did it say there was. It remained unclear. Furthermore, I thought this would be a good question for SO seeing as SO is MEANT for these types of questions. – kgrad Jul 8 at 2:59

3 Answers

vote up 10 vote down check

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

link|flag
vote up 0 vote down

No, python is defined by its implementation.

link|flag
11  
Not true -- what's generally considered the de facto reference implementation (CPython) has some aspects that are NOT part of the Python Language (as defined in the Reference), such as reference counting, the GIL, &c, and other perfectly correct implementations of Python (such as Jython and IronPython) do NOT mimic these parts of CPython. So the PLR is closer to a specification, than any single implementation out of the several ones available can be. – Alex Martelli Jul 7 at 22:08
vote up 2 vote down

You can check out the Python Reference

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.