From d75591fbc47d5c0fbc859b3e9340a69b0f9cc64a Mon Sep 17 00:00:00 2001 From: hauntsaninja <> Date: Tue, 14 Apr 2020 16:18:32 -0700 Subject: [PATCH] Update README.md to reflect Python 3.8 support Fixes #48 --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 9c9f1d6..31ae825 100644 --- a/README.rst +++ b/README.rst @@ -30,9 +30,9 @@ Basic example:: astunparse.dump(ast.parse(inspect.getsource(ast))) -This library is single-source compatible with Python 2.6 through Python 3.5. It +This library is single-source compatible with Python 2.6 through Python 3.8. It is authored by the Python core developers; I have simply merged the Python 2.7 -and the Python 3.5 source and test suites, and added a wrapper. This factoring +and the Python 3.8 source and test suites, and added a wrapper. This factoring out is to provide a library implementation that supports both versions. Added to this is a pretty-printing ``dump`` utility function.