-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
port to python3 #10
port to python3 #10
Conversation
@quozl please review! |
Thanks. Tested. Makes an error before and after porting. Please fix the error. |
I didn't get an error before, but when you said so i tested it extensively and somehow got this in my traceback
As you didn't mention the error, is this what you were talking about? tried to fix it, not getting this error now. |
No, this was the error;
|
Although I didn't encounter this error but fixed it as suggested by logs displayed by you. To be sure, used this Tested. |
Wording we use in other activities in this classification is "is not part of the Sugar desktop, but can be added." Tested. Fixes #11. Reviewed. |
Done. Closes #11 |
Tested, I get this error
The error referring to the hexagon select game button occurs before and after the port. |
@chimosky if you don't mind, can you please provide steps to reproduce this error because I am not getting this in my logs again 😬 |
@chimosky, your traceback contains |
@@ -48,7 +48,7 @@ def initialize_cards(self, sprites, path, card_dim, scale, shape): | |||
for c in self.card_table: | |||
c.spr.hide() | |||
self.card_table = [] | |||
for i in self.grid: | |||
for i in range(0,24): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change at this point seems unintuitive. It was made in 20aca72. Could you explain the change further?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont agree with change made in 20aca72 . There is no need to do that the loop is already running with length of self.grid times.
Yes, tested again and this is the traceback gotten when
|
I'm getting the same errors. I will try fixing them in #13. I think I will use the changes made by @ayushnawal and will cherry-pick commits along with other fixes in #13 |
@JuiP, please do fix the error in master before porting. You will need to use a Python 2 capable environment. |
We can close this now. |
i agree. thanks @ayushnawal! |
Tested