summaryrefslogtreecommitdiffstats
path: root/Lib/inspect.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-07-15 21:08:29 (GMT)
committerGuido van Rossum <guido@python.org>2001-07-15 21:08:29 (GMT)
commitb09f7ed6235783fca27a4f8730c4c33e0f53c16c (patch)
treed76806c53fd83557378dcd7395ce5309f707eb15 /Lib/inspect.py
parent045ca7ae72368ce65fe7debbd343cf8133eea5e4 (diff)
downloadcpython-b09f7ed6235783fca27a4f8730c4c33e0f53c16c.zip
cpython-b09f7ed6235783fca27a4f8730c4c33e0f53c16c.tar.gz
cpython-b09f7ed6235783fca27a4f8730c4c33e0f53c16c.tar.bz2
Preliminary support for "from __future__ import generators" to enable
the yield statement. I figure we have to have this in before I can release 2.2a1 on Wednesday. Note: test_generators is currently broken, I'm counting on Tim to fix this.
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r--Lib/inspect.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index 2d88bc1..6183b0e 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -24,6 +24,8 @@ Here are some of the useful functions provided by this module:
# This module is in the public domain. No warranties.
+from __future__ import generators
+
__author__ = 'Ka-Ping Yee <ping@lfw.org>'
__date__ = '1 Jan 2001'