You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 10, 2018. It is now read-only.
on thrift.py line# 73, there is this statement linecache.cache[name] but cache attribute does not exists for linecache on python3 (at least for 3.5)
This works on python2. I've downgraded to previous version 0.3.8 as this statement does not exist on the version.
The text was updated successfully, but these errors were encountered:
I don't have Python 3.5 handy, but it appears to exist in Python 3.6:
Python 3.6.3 (default, Oct 4 2017, 06:09:15)
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.37)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import linecache
>>> linecache.cache
{}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
on thrift.py line# 73, there is this statement
linecache.cache[name]
butcache
attribute does not exists forlinecache
on python3 (at least for 3.5)This works on python2. I've downgraded to previous version
0.3.8
as this statement does not exist on the version.The text was updated successfully, but these errors were encountered: