mirror of
https://github.com/github/codeql.git
synced 2026-04-28 18:25:24 +02: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
|