Merge pull request #4150 from RasmusWL/python-dataflow-private-import

Python: Make import of python private in shared dataflow
This commit is contained in:
Taus
2020-08-27 18:05:55 +02:00
committed by GitHub
12 changed files with 12 additions and 4 deletions

View File

@@ -15,7 +15,7 @@
* `DataFlow::localFlowStep` with arguments of type `DataFlow::Node`.
*/
import python
private import python
/**
* Provides classes for performing local (intra-procedural) and

View File

@@ -15,7 +15,7 @@
* `DataFlow::localFlowStep` with arguments of type `DataFlow::Node`.
*/
import python
private import python
/**
* Provides classes for performing local (intra-procedural) and

View File

@@ -8,7 +8,7 @@
* `TaintTracking::localTaintStep` with arguments of type `DataFlow::Node`.
*/
import python
private import python
/**
* Provides classes for performing local (intra-procedural) and

View File

@@ -2,7 +2,7 @@
* Provides Python-specific definitions for use in the data flow library.
*/
import python
private import python
private import DataFlowPrivate
/**

View File

@@ -1,3 +1,4 @@
private import python
import experimental.dataflow.DataFlow
/**

View File

@@ -1,3 +1,4 @@
import python
import experimental.dataflow.DataFlow
/**

View File

@@ -1,3 +1,4 @@
import python
import experimental.dataflow.DataFlow
/**

View File

@@ -1,3 +1,4 @@
import python
import experimental.dataflow.DataFlow
/**

View File

@@ -1,3 +1,4 @@
import python
import experimental.dataflow.DataFlow
/**

View File

@@ -2,6 +2,7 @@
* @kind path-problem
*/
import python
import experimental.dataflow.testConfig
import DataFlow::PathGraph

View File

@@ -5,6 +5,7 @@
* hope to remove the false positive.
*/
import python
import experimental.dataflow.testConfig
from DataFlow::Node source, DataFlow::Node sink

View File

@@ -20,6 +20,7 @@
* complex | `42j` (not supported yet)
*/
private import python
import experimental.dataflow.DataFlow
class TestConfiguration extends DataFlow::Configuration {