summaryrefslogtreecommitdiff
path: root/Lib/test/test_inspect.py
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2008-12-14 10:54:50 +0000
committerNick Coghlan <ncoghlan@gmail.com>2008-12-14 10:54:50 +0000
commitf6c7807c55b959362ad422d7c3479ef06407e6e9 (patch)
tree23ef2f96f23deacee5ae320867fec46547cee073 /Lib/test/test_inspect.py
parentffc2c15d43eed599dbfe0d68e37b4ac3f5c185c1 (diff)
downloadcpython-f6c7807c55b959362ad422d7c3479ef06407e6e9.tar.gz
Fix several issues relating to access to source code inside zipfiles. Initial work by Alexander Belopolsky. See Misc/NEWS in this checkin for details.
Diffstat (limited to 'Lib/test/test_inspect.py')
-rw-r--r--Lib/test/test_inspect.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py
index 32eeb57d31..300d1436f2 100644
--- a/Lib/test/test_inspect.py
+++ b/Lib/test/test_inspect.py
@@ -16,6 +16,9 @@ from test import inspect_fodder2 as mod2
# getclasstree, getargspec, getargvalues, formatargspec, formatargvalues,
# currentframe, stack, trace, isdatadescriptor
+# NOTE: There are some additional tests relating to interaction with
+# zipimport in the test_zipimport_support test module.
+
modfile = mod.__file__
if modfile.endswith(('c', 'o')):
modfile = modfile[:-1]