Skip to content

Commit

Permalink
Fixed codetup import/export for teleportation on python 3.11; Correct…
Browse files Browse the repository at this point in the history
…ed parameters used in 3.10 (3.10 lnotab was replaced w/ linetable)
  • Loading branch information
comrumino committed Nov 20, 2022
1 parent eda54be commit b834db8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rpyc/lib/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

is_py_3k = (sys.version_info[0] >= 3)
is_py_gte311 = is_py_3k and (sys.version_info[1] >= 11)
is_py_gte310 = is_py_3k and (sys.version_info[1] >= 10)
is_py_gte38 = is_py_3k and (sys.version_info[1] >= 8)
is_py_gte37 = is_py_3k and (sys.version_info[1] >= 7)

Expand Down

0 comments on commit b834db8

Please sign in to comment.