Damien George
8 years ago
6 changed files with 34 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||
# test frozen package with __init__.py |
|||
print('frzmpy_pkg1.__init__') |
|||
x = 1 |
@ -0,0 +1,4 @@ |
|||
# test frozen package without __init__.py |
|||
print('frzmpy_pkg2.mod') |
|||
class Foo: |
|||
x = 1 |
@ -0,0 +1,3 @@ |
|||
# test frozen package with __init__.py |
|||
print('frzstr_pkg1.__init__') |
|||
x = 1 |
@ -0,0 +1,4 @@ |
|||
# test frozen package without __init__.py |
|||
print('frzstr_pkg2.mod') |
|||
class Foo: |
|||
x = 1 |
Loading…
Reference in new issue