mirror of
https://github.com/github/codeql.git
synced 2026-04-05 07:08:31 +02:00
Python: Add test for package inside namespace package
This commit is contained in:
@@ -1,2 +1,5 @@
|
||||
def process(value):
|
||||
sink(value) #$ flow=source
|
||||
|
||||
def process2(value):
|
||||
sink(value) #$ flow=source
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
from .. import helper
|
||||
|
||||
def use_multi_level_relative():
|
||||
tainted = source()
|
||||
helper.process2(tainted)
|
||||
Reference in New Issue
Block a user