PY-34617 Take into account sys.version_info checks when analyzing Python files

Added test for version-specific stub elements

GitOrigin-RevId: fde82213359e577cb45006d8a795ec8e44129328
This commit is contained in:
Petr
2024-08-13 19:25:13 +02:00
committed by intellij-monorepo-bot
parent 6652280052
commit 0020fdc7e9
3 changed files with 95 additions and 1 deletions

View File

@@ -7,4 +7,4 @@ interface PyVersionSpecificStub {
val versionRange: PyVersionRange
}
class PyVersionRange(val lowInclusive: Version?, val highExclusive: Version?)
data class PyVersionRange(val lowInclusive: Version?, val highExclusive: Version?)