We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8ded95 commit a9fa247Copy full SHA for a9fa247
2 files changed
src/examples/testpkg/mypkg/__init__.py
@@ -1 +1,13 @@
1
+from .foo import hello
2
+
3
4
title = 'PyArmor Test Case'
5
6
7
+def open_hello(msg):
8
+ print('This is public hello: %s' % msg)
9
10
11
+def proxy_hello(msg):
12
+ print('This is proxy hello: %s' % msg)
13
+ hello(msg)
src/examples/testpkg/mypkg/foo.py
@@ -1,2 +1,2 @@
def hello(msg):
- print('Hello! %s' % msg)
+ print('Hello! %s' % msg)
0 commit comments