Skip to content

Commit a9fa247

Browse files
committed
Refine test script
1 parent f8ded95 commit a9fa247

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
1+
from .foo import hello
2+
3+
14
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
def hello(msg):
2-
print('Hello! %s' % msg)
2+
print('Hello! %s' % msg)

0 commit comments

Comments
 (0)