Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / tools / telemetry / telemetry / __init__.py
index 395ffe2..9929260 100644 (file)
@@ -4,9 +4,6 @@
 
 """A library for cross-platform browser tests."""
 
-import inspect
-import logging
-import os
 import sys
 
 # Ensure Python >= 2.7.
@@ -16,25 +13,3 @@ if sys.version_info < (2, 7):
 
 from telemetry.util import global_hooks
 global_hooks.InstallHooks()
-
-from telemetry.core.browser import Browser
-from telemetry.core.browser_options import BrowserFinderOptions
-from telemetry.core.tab import Tab
-
-from telemetry.page.page_measurement import PageMeasurement
-from telemetry.page.page_runner import Run as RunPage
-
-
-__all__ = []
-
-# Find all local vars that are classes or functions and make sure they're in the
-# __all__ array so they're included in docs.
-for x in dir():
-  if x.startswith('_'):
-    continue
-  if x in (inspect, os, sys):
-    continue
-  m = sys.modules[__name__]
-  if (inspect.isclass(getattr(m, x)) or
-      inspect.isfunction(getattr(m, x))):
-    __all__.append(x)