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
temporary solution:
2to3; # but it can not solve sorts of create_string_buffer
find . -name ".py" -type f -exec sed -i "s/create_unicode_buffer(u'', /create_unicode_buffer(/gi" {} ;
find . -name ".py" -type f -exec sed -i 's/create_unicode_buffer(u"", /create_unicode_buffer(/gi' {} ;
find . -name ".py" -type f -exec sed -i "s/create_string_buffer('', /create_string_buffer(/gi" {} ;
find . -name ".py" -type f -exec sed -i 's/create_string_buffer("", /create_string_buffer(/gi' {} ;
it seems that some functions are under the prototypes on python 2 .
The text was updated successfully, but these errors were encountered: