From 200144dd009d33ff8334be24d0fb2cc91b3a87ab Mon Sep 17 00:00:00 2001 From: murphy Date: Wed, 14 Apr 2010 23:59:03 +0000 Subject: Moving scanner tests into separate repository. The repository can be reached at http://svn.rubychan.de/coderay-scanner-tests/trunk. --- test/scanners/python/import.in.py | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 test/scanners/python/import.in.py (limited to 'test/scanners/python/import.in.py') diff --git a/test/scanners/python/import.in.py b/test/scanners/python/import.in.py deleted file mode 100644 index 95dce3d..0000000 --- a/test/scanners/python/import.in.py +++ /dev/null @@ -1,26 +0,0 @@ -import YourModule # Import the module into my package - # (does not import any of its symbols) - -import YourModule as Module # Use a different name for the module - -from YourModule import * # Import all module symbols not starting - # with an underscore (default); if __all__ - # is defined, only imports those symbols. - # Using this is discouraged unless the - # module is specifically designed for it. - -from YourModule import name1, name2, xxx - # Import the named symbols from the module - -from YourModule import name1 as name2 - # Import the named object, but use a - # different name to access it locally. - -#----------------------------- -__all__ = ["F1", "F2", "List"] -#----------------------------- -__all__ = ["Op_Func", "Table"] -#----------------------------- -from YourModule import Op_Func, Table, F1 -#----------------------------- -from YourModule import Functions, Table \ No newline at end of file -- cgit v1.2.1