mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
13 lines
280 B
Plaintext
13 lines
280 B
Plaintext
/**
|
|
* @id py/examples/backticks
|
|
* @name String conversion expressions
|
|
* @description Finds `String conversions` expressions (expressions enclosed in backticks), which are removed in Python 3
|
|
* @tags backtick
|
|
* string conversion
|
|
*/
|
|
|
|
import python
|
|
|
|
from Repr r
|
|
select r
|