Fix a bug in the test for using __loader__.get_data().

This commit is contained in:
Brett Cannon 2007-11-23 00:06:51 +00:00
parent e8954f8ce7
commit eaa2c980ee
1 changed files with 1 additions and 0 deletions

View File

@ -1912,6 +1912,7 @@ def test_DocFileSuite():
provided.
>>> import unittest, pkgutil, test
>>> added_loader = False
>>> if not hasattr(test, '__loader__'):
... test.__loader__ = pkgutil.get_loader(test)
... added_loader = True