mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
8 lines
116 B
Python
Executable File
8 lines
116 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import myfile
|
|
import mydir.myfile_user
|
|
|
|
assert myfile.a == 1
|
|
assert mydir.myfile_user.b == 2
|