Skip to content

Commit 0a5f5ac

Browse files
committed
Add support for positional-only arguments
cpython commit: 8c77b8cb9188165a123f2512026e3629bf03dc9b
1 parent ae3eada commit 0a5f5ac

File tree

5 files changed

+475
-106
lines changed

5 files changed

+475
-106
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22

33
work in progress
44

5+
Support for 3.8 syntax
6+
57
Breaking changes:
68

79
* Added `Expression::Await` variant
10+
* Added `Expression::Named` variant
11+
* Changed TypedArgsList and UntypedArgsList to add `posonly_args` field, and rename `positional_args` to `args`
812

913
Other changes
1014

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# rust-python-parser
22
A Python parser for Rust libraries and programs.
33

4-
Currently supports Python 3.7's syntax (and Python 3.8 up to
5-
[2018-09-22](http://github.com/python/cpython/commit/fd97d1f1af910a6222ea12aec42c456b64f9aee4)).
4+
Currently supports Python 3.8's syntax (except type comments,
5+
which are ignored like regular comments)

src/ast.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ impl<T> Default for StarParams<T> {
4545
/// The list of parameters of a function definition.
4646
#[derive(Clone, Debug, PartialEq, Default)]
4747
pub struct TypedArgsList {
48-
pub positional_args: Vec<(Name, Option<Expression>, Option<Expression>)>,
48+
pub posonly_args: Vec<(Name, Option<Expression>, Option<Expression>)>,
49+
pub args: Vec<(Name, Option<Expression>, Option<Expression>)>,
4950
pub star_args: StarParams<(Name, Option<Expression>)>,
5051
pub keyword_args: Vec<(Name, Option<Expression>, Option<Expression>)>,
5152
pub star_kwargs: Option<(Name, Option<Expression>)>,
@@ -54,7 +55,8 @@ pub struct TypedArgsList {
5455
/// The list of parameters of a lambda definition.
5556
#[derive(Clone, Debug, PartialEq, Default)]
5657
pub struct UntypedArgsList {
57-
pub positional_args: Vec<(Name, Option<Expression>)>,
58+
pub posonly_args: Vec<(Name, Option<Expression>)>,
59+
pub args: Vec<(Name, Option<Expression>)>,
5860
pub star_args: StarParams<Name>,
5961
pub keyword_args: Vec<(Name, Option<Expression>)>,
6062
pub star_kwargs: Option<Name>,

0 commit comments

Comments
 (0)