aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/py_native/bin.py
diff options
context:
space:
mode:
authorGravatar Mouad Benchchaoui <mbenchchaoui@newstore.com>2018-02-14 05:09:15 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-02-14 05:10:36 -0800
commit0f9c6ea574918dda094cf5423fa3822112846c30 (patch)
tree52b1deea8f09ef9ed23fd68589a227f8f14c412f /examples/py_native/bin.py
parentb4545ba2b1aa4079b09a346a6d441ffa1e1b7d20 (diff)
Make __init__.py files creation optional
Introduce a new attribute to py_binary and py_test to control whether to create `__init__.py` or not. Fixes https://github.com/bazelbuild/rules_python/issues/55 Closes #4470. PiperOrigin-RevId: 185672243
Diffstat (limited to 'examples/py_native/bin.py')
-rw-r--r--examples/py_native/bin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/py_native/bin.py b/examples/py_native/bin.py
index 45c68b26e5..b7e1223988 100644
--- a/examples/py_native/bin.py
+++ b/examples/py_native/bin.py
@@ -1,7 +1,7 @@
# pylint: disable=superfluous-parens
"""A tiny example binary for the native Python rules of Bazel."""
-from examples.py_native.lib import GetNumber
from fib import Fib
+from lib import GetNumber
print("The number is %d" % GetNumber())
print("Fib(5) == %d" % Fib(5))