Skip to content

Commit 6345181

Browse files
author
whitequark
committedMay 9, 2015
Update notice in ast.
1 parent d1e5923 commit 6345181

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

Diff for: ‎pyparser/ast.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,13 @@
1212
to cut the range contained inside ``loc`` of a parsetree fragment and paste it
1313
somewhere else without altering said parsetree fragment that.
1414
15-
The AST format for all supported versions is generally normalized to match the native
16-
:mod:`..ast` module of the latest supported Python version. In particular this affects:
15+
The AST format for all supported versions is generally normalized to be a superset
16+
of the native :mod:`..ast` module of the latest supported Python version.
17+
In particular this affects:
1718
1819
* :class:`With`: on 2.6-2.7 it uses the 3.0 format.
20+
* :class:`arguments`: on 2.6-3.1 it uses the 3.2 format, with dedicated
21+
:class:`arg` in ``vararg`` and ``kwarg`` slots.
1922
"""
2023

2124
from __future__ import absolute_import, division, print_function, unicode_literals

0 commit comments

Comments
 (0)
Please sign in to comment.