summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-06-10 07:45:28 (GMT)
committerGeorg Brandl <georg@python.org>2008-06-10 07:45:28 (GMT)
commit8509db5a21abc43086a0b9f6727a89f25ac7d2eb (patch)
treeadce5bbb0264cb1c5ca6ac5f120c503b708ff32b /Misc
parentdf7036d2fac9cb6b6f79bed2b2e0fbe9166f2e5f (diff)
downloadcpython-8509db5a21abc43086a0b9f6727a89f25ac7d2eb.zip
cpython-8509db5a21abc43086a0b9f6727a89f25ac7d2eb.tar.gz
cpython-8509db5a21abc43086a0b9f6727a89f25ac7d2eb.tar.bz2
Add the "ast" module, containing helpers to ease use of the "_ast" classes.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index e3a3d9f..e705a4b 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -574,6 +574,7 @@ Andy Robinson
Kevin Rodgers
Giampaolo Rodola
Mike Romberg
+Armin Ronacher
Case Roole
Timothy Roscoe
Jim Roskind
diff --git a/Misc/NEWS b/Misc/NEWS
index 8f4963b..f36b414 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -77,6 +77,8 @@ Extension Modules
Library
-------
+- Added the ast module.
+
- Factored out the indentation cleaning from inspect.getdoc() into
inspect.cleandoc() to ease standalone use.