Typically strong programming languages has Standart, does Python Language ISO/IEC standard?
I am interested in a whole language standard, not something like a reference. Reference can be created by people who create their own DSL Languages, but Python is widely adopted and strangely it's used not only for scripting purposes.
It's needed if I want:
- To create my own Python interpreter
- Understand some detail of the language and how instructions are "compiled" and its guarantees (for example regarding multithreading)
There is a reference manual about the language: https://docs.python.org/3/reference/index.html
Standards about another language (C++) has the following standarts for example:
C++2011 standard - ISO C++ standard (ISO/IEC 14882-2011)
C++2014 standard - ISO C++ standard (ISO/IEC 14882:2014)
And what I'm looking for similar thigns for Python Language?