adding from new mac

This commit is contained in:
2019-11-19 23:50:00 +00:00
parent a3ad3fd1d0
commit 16e455bc83
67 changed files with 2677 additions and 0 deletions

View File

@@ -0,0 +1 @@
print('submod1.__init__')

View File

@@ -0,0 +1,13 @@
print('imported submod1')
def submod1(myStr: str) -> None:
"""test module for submod1
Parameters
----------
myStr : str
a test string
"""
print('submod1')
print(myStr)