mirror of
https://github.com/davidhalter/parso.git
synced 2026-02-15 14:42:03 +08:00
Remove some Python 3.6 references
This commit is contained in:
@@ -31,7 +31,7 @@ A simple example:
|
||||
.. code-block:: python
|
||||
|
||||
>>> import parso
|
||||
>>> module = parso.parse('hello + 1', version="3.6")
|
||||
>>> module = parso.parse('hello + 1', version="3.9")
|
||||
>>> expr = module.children[0]
|
||||
>>> expr
|
||||
PythonNode(arith_expr, [<Name: hello@1,0>, <Operator: +>, <Number: 1>])
|
||||
|
||||
Reference in New Issue
Block a user