Unverified Commit 37177a84 by Chris Jones Committed by GitHub

Fix python extension import (#1000)

parent 39c8d58a
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
"""Python benchmarking utilities. """Python benchmarking utilities.
Example usage: Example usage:
import benchmark import google_benchmark as benchmark
@benchmark.register @benchmark.register
def my_benchmark(state): def my_benchmark(state):
...@@ -28,7 +28,7 @@ Example usage: ...@@ -28,7 +28,7 @@ Example usage:
""" """
from absl import app from absl import app
from benchmark import _benchmark from google_benchmark import _benchmark
__all__ = [ __all__ = [
"register", "register",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment