[ctypes-commit] ctypes/ctypes/test test_loading.py,1.1.2.1,1.1.2.2 test_functions.py,1.1.2.1,1.1.2.2
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2006-01-02 15:09:09
|
Update of /cvsroot/ctypes/ctypes/ctypes/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15853 Modified Files: Tag: branch_1_0 test_loading.py test_functions.py Log Message: Add missing 'import sys'. Index: test_loading.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/ctypes/test/Attic/test_loading.py,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** test_loading.py 22 Dec 2005 20:34:57 -0000 1.1.2.1 --- test_loading.py 2 Jan 2006 15:09:01 -0000 1.1.2.2 *************** *** 1,4 **** from ctypes import * ! import unittest import os, StringIO --- 1,4 ---- from ctypes import * ! import sys, unittest import os, StringIO Index: test_functions.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/ctypes/test/Attic/test_functions.py,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** test_functions.py 3 Nov 2005 19:49:19 -0000 1.1.2.1 --- test_functions.py 2 Jan 2006 15:09:01 -0000 1.1.2.2 *************** *** 5,11 **** Later... """ ! from ctypes import * - import unittest try: --- 5,10 ---- Later... """ ! import sys, unittest from ctypes import * try: |