[Python-checkins] r61559 - python/trunk/Lib/test/test_extcall.py
neal.norwitz
python-checkins at python.org
Tue Mar 18 21:30:38 CET 2008
Author: neal.norwitz
Date: Tue Mar 18 21:30:38 2008
New Revision: 61559
Modified:
python/trunk/Lib/test/test_extcall.py
Log:
Import the test properly. This is especially important for py3k.
Modified: python/trunk/Lib/test/test_extcall.py
==============================================================================
--- python/trunk/Lib/test/test_extcall.py (original)
+++ python/trunk/Lib/test/test_extcall.py Tue Mar 18 21:30:38 2008
@@ -255,7 +255,7 @@
from test import test_support
def test_main():
- import test_extcall # self import
+ from test import test_extcall # self import
test_support.run_doctest(test_extcall, True)
if __name__ == '__main__':
More information about the Python-checkins
mailing list