mirror of
https://github.com/github/codeql.git
synced 2026-03-06 07:36:47 +01:00
15 lines
158 B
Python
15 lines
158 B
Python
#There is no xxxx, rely on AbsentModule
|
|
|
|
import xxxx
|
|
xxxx
|
|
|
|
from xxxx import open
|
|
|
|
open()
|
|
|
|
|
|
#This is be present, so shouldn't be missing
|
|
import module
|
|
|
|
module
|