summaryrefslogtreecommitdiff
path: root/devdocs/python~3.12/reference%2Fintroduction.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2024-04-07 13:41:34 -0500
committerCraig Jennings <c@cjennings.net>2024-04-07 13:41:34 -0500
commit754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 (patch)
treef1190704f78f04a2b0b4c977d20fe96a828377f1 /devdocs/python~3.12/reference%2Fintroduction.html
new repository
Diffstat (limited to 'devdocs/python~3.12/reference%2Fintroduction.html')
-rw-r--r--devdocs/python~3.12/reference%2Fintroduction.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/devdocs/python~3.12/reference%2Fintroduction.html b/devdocs/python~3.12/reference%2Fintroduction.html
new file mode 100644
index 00000000..8ba5173f
--- /dev/null
+++ b/devdocs/python~3.12/reference%2Fintroduction.html
@@ -0,0 +1,21 @@
+ <span id="id1"></span><h1> Introduction</h1> <p>This reference manual describes the Python programming language. It is not intended as a tutorial.</p> <p>While I am trying to be as precise as possible, I chose to use English rather than formal specifications for everything except syntax and lexical analysis. This should make the document more understandable to the average reader, but will leave room for ambiguities. Consequently, if you were coming from Mars and tried to re-implement Python from this document alone, you might have to guess things and in fact you would probably end up implementing quite a different language. On the other hand, if you are using Python and wonder what the precise rules about a particular area of the language are, you should definitely be able to find them here. If you would like to see a more formal definition of the language, maybe you could volunteer your time — or invent a cloning machine :-).</p> <p>It is dangerous to add too many implementation details to a language reference document — the implementation may change, and other implementations of the same language may work differently. On the other hand, CPython is the one Python implementation in widespread use (although alternate implementations continue to gain support), and its particular quirks are sometimes worth being mentioned, especially where the implementation imposes additional limitations. Therefore, you’ll find short “implementation notes” sprinkled throughout the text.</p> <p>Every Python implementation comes with a number of built-in and standard modules. These are documented in <a class="reference internal" href="../library/index#library-index"><span class="std std-ref">The Python Standard Library</span></a>. A few built-in modules are mentioned when they interact in a significant way with the language definition.</p> <section id="alternate-implementations"> <span id="implementations"></span><h2>
+<span class="section-number">1.1. </span>Alternate Implementations</h2> <p>Though there is one Python implementation which is by far the most popular, there are some alternate implementations which are of particular interest to different audiences.</p> <p>Known implementations include:</p> <dl class="simple"> <dt>CPython</dt>
+<dd>
+<p>This is the original and most-maintained implementation of Python, written in C. New language features generally appear here first.</p> </dd> <dt>Jython</dt>
+<dd>
+<p>Python implemented in Java. This implementation can be used as a scripting language for Java applications, or can be used to create applications using the Java class libraries. It is also often used to create tests for Java libraries. More information can be found at <a class="reference external" href="https://www.jython.org/">the Jython website</a>.</p> </dd> <dt>Python for .NET</dt>
+<dd>
+<p>This implementation actually uses the CPython implementation, but is a managed .NET application and makes .NET libraries available. It was created by Brian Lloyd. For more information, see the <a class="reference external" href="https://pythonnet.github.io/">Python for .NET home page</a>.</p> </dd> <dt>IronPython</dt>
+<dd>
+<p>An alternate Python for .NET. Unlike Python.NET, this is a complete Python implementation that generates IL, and compiles Python code directly to .NET assemblies. It was created by Jim Hugunin, the original creator of Jython. For more information, see <a class="reference external" href="https://ironpython.net/">the IronPython website</a>.</p> </dd> <dt>PyPy</dt>
+<dd>
+<p>An implementation of Python written completely in Python. It supports several advanced features not found in other implementations like stackless support and a Just in Time compiler. One of the goals of the project is to encourage experimentation with the language itself by making it easier to modify the interpreter (since it is written in Python). Additional information is available on <a class="reference external" href="https://www.pypy.org/">the PyPy project’s home page</a>.</p> </dd> </dl> <p>Each of these implementations varies in some way from the language as documented in this manual, or introduces specific information beyond what’s covered in the standard Python documentation. Please refer to the implementation-specific documentation to determine what else you need to know about the specific implementation you’re using.</p> </section> <section id="notation"> <span id="id2"></span><h2>
+<span class="section-number">1.2. </span>Notation</h2> <p id="index-0">The descriptions of lexical analysis and syntax use a modified <a class="reference external" href="https://en.wikipedia.org/wiki/Backus%E2%80%93Naur_form">Backus–Naur form (BNF)</a> grammar notation. This uses the following style of definition:</p> <pre>
+<strong id="grammar-token-notation-name"><span id="grammar-token-name"></span>name </strong> ::= <a class="reference internal" href="#grammar-token-notation-lc_letter">lc_letter</a> (<a class="reference internal" href="#grammar-token-notation-lc_letter">lc_letter</a> | "_")*
+<strong id="grammar-token-notation-lc_letter"><span id="grammar-token-lc-letter"></span>lc_letter</strong> ::= "a"..."z"
+</pre> <p>The first line says that a <code>name</code> is an <code>lc_letter</code> followed by a sequence of zero or more <code>lc_letter</code>s and underscores. An <code>lc_letter</code> in turn is any of the single characters <code>'a'</code> through <code>'z'</code>. (This rule is actually adhered to for the names defined in lexical and grammar rules in this document.)</p> <p>Each rule begins with a name (which is the name defined by the rule) and <code>::=</code>. A vertical bar (<code>|</code>) is used to separate alternatives; it is the least binding operator in this notation. A star (<code>*</code>) means zero or more repetitions of the preceding item; likewise, a plus (<code>+</code>) means one or more repetitions, and a phrase enclosed in square brackets (<code>[ ]</code>) means zero or one occurrences (in other words, the enclosed phrase is optional). The <code>*</code> and <code>+</code> operators bind as tightly as possible; parentheses are used for grouping. Literal strings are enclosed in quotes. White space is only meaningful to separate tokens. Rules are normally contained on a single line; rules with many alternatives may be formatted alternatively with each line after the first beginning with a vertical bar.</p> <p id="index-1">In lexical definitions (as the example above), two more conventions are used: Two literal characters separated by three dots mean a choice of any single character in the given (inclusive) range of ASCII characters. A phrase between angular brackets (<code>&lt;...&gt;</code>) gives an informal description of the symbol defined; e.g., this could be used to describe the notion of ‘control character’ if needed.</p> <p>Even though the notation used is almost the same, there is a big difference between the meaning of lexical and syntactic definitions: a lexical definition operates on the individual characters of the input source, while a syntax definition operates on the stream of tokens generated by the lexical analysis. All uses of BNF in the next chapter (“Lexical Analysis”) are lexical definitions; uses in subsequent chapters are syntactic definitions.</p> </section> <div class="_attribution">
+ <p class="_attribution-p">
+ &copy; 2001&ndash;2023 Python Software Foundation<br>Licensed under the PSF License.<br>
+ <a href="https://docs.python.org/3.12/reference/introduction.html" class="_attribution-link">https://docs.python.org/3.12/reference/introduction.html</a>
+ </p>
+</div>