Fix Python version checking in Python tests
This commit is contained in:
parent
8700e79b3e
commit
074c0039db
3 changed files with 3 additions and 3 deletions
|
|
@ -122,7 +122,7 @@ check(A.func3static.__doc__, "\n"
|
|||
" "
|
||||
)
|
||||
|
||||
if sys.version[0:2] > (2, 4):
|
||||
if sys.version_info[0:2] > (2, 4):
|
||||
# Python 2.4 does not seem to work
|
||||
check(A.variable_a.__doc__, "A_variable_a_get(self) -> int")
|
||||
check(A.variable_b.__doc__, "A_variable_b_get(A self) -> int")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue