File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
# rust-python-parser
2
2
A Python parser for Rust libraries and programs.
3
+
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 ) ).
Original file line number Diff line number Diff line change 13
13
//! # String encoding
14
14
//!
15
15
//! `ast::PyString`s are WTF8-encoded if the `wtf8` feature is enabled
16
- //! (the default) allowing full support for Python's string litteral .
16
+ //! (the default) allowing full support for Python's string literals .
17
17
//!
18
- //! If that feature is disabled, they default to regular Rust string
18
+ //! If that feature is disabled, they default to regular Rust strings.
19
19
//! Note that without the `wtf8` feature, some valid string
20
20
//! literals will be badly parsed (missing characters).
21
21
//!
22
+ //! # Python version support
23
+ //!
24
+ //! Currently supports Python 3.7's syntax (and Python 3.8 up to
25
+ //! [2018-09-22](http://github.com/python/cpython/commit/fd97d1f1af910a6222ea12aec42c456b64f9aee4)).
26
+ //!
22
27
//! # Example
23
28
//!
24
29
//! ```
You can’t perform that action at this time.
0 commit comments