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
not 2/3 compatible, need to run 2to3 on all of the .py files that get created in modules
doesn't autocopy the python into the base/bin/python file nor does it know how to properly use the given python enviorment...
tokenization.py is broken because of the
def next(self): functions in class fss_iterator and class ssl_iterator:
there are two def next(self): in these functions. The second and simplier next causes a recursion runtime error. commenting these functions out solves a lot of the problems thus far
def next(self):
return self.next()
The text was updated successfully, but these errors were encountered:
Found a few issues in the configure.sh process:
def next(self): functions in class fss_iterator and class ssl_iterator:
there are two def next(self): in these functions. The second and simplier next causes a recursion runtime error. commenting these functions out solves a lot of the problems thus far
def next(self):
return self.next()
The text was updated successfully, but these errors were encountered: