提交 4c1c7098 authored 作者: Frederic's avatar Frederic

Correctly detect python version that we didn't tested (I tested again 3.4 and it work ok)

上级 b15385f5
...@@ -43,7 +43,7 @@ def simple_extract_stack(f=None, limit=None): ...@@ -43,7 +43,7 @@ def simple_extract_stack(f=None, limit=None):
list.reverse() list.reverse()
return list return list
if sys.version_info[:2] <= (3, 2): if sys.version_info[:2] > (3, 4):
# I enable my implementation only for some python version just to # I enable my implementation only for some python version just to
# be sure the Python internal do not change. If this work with # be sure the Python internal do not change. If this work with
# other python version, you can enable it. # other python version, you can enable it.
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论