We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Just found a Python 3 incompatibility at:
Products.PlonePAS/src/Products/PlonePAS/sheet.py
Lines 62 to 64 in e988432
The data type long does not exists anymore in Python 3. long has become int with Python 3.
long
int
Possible fix for Python 2 and 3:
PropertySchema.addType( 'long', lambda x: x is None or isinstance(x, six.integer_types) )
From six documentation:
six.integer_types Possible integer types. In Python 2, this is long and int, and in Python 3, just int.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Just found a Python 3 incompatibility at:
Products.PlonePAS/src/Products/PlonePAS/sheet.py
Lines 62 to 64 in e988432
The data type
long
does not exists anymore in Python 3.long
has becomeint
with Python 3.Possible fix for Python 2 and 3:
From six documentation:
The text was updated successfully, but these errors were encountered: