-
Notifications
You must be signed in to change notification settings - Fork 28
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
Zope5.2.1 install warnings #174
Comments
Moved to Thanks for reporting the issue! |
Thanks for the report. The warnings here are just about unused static functions. They arise because of the complicated way this package builds its sources by using low-level C macros and These warnings do not represent any actual problem. And most users won't ever see them; most users will get binary wheels, or use This could probably be worked around with more low-level C macro hijinks or yet more |
Thanks to all of you guys. |
Hi, some warning during installation on mac OS 10.13.6 - Python 3.7.7 with minimal buildout.cfg as in documentation.
src/ExtensionClass/_ExtensionClass.c:800:33: warning: comparison of integers of
different signs: 'Py_ssize_t' (aka 'long') and 'unsigned long'
[-Wsign-compare]
if (typ->tp_basicsize <= sizeof(_emptyobject))
In file included from src/BTrees/_LQBTree.c:44:
src/BTrees/BTreeModuleTemplate.c:103:1: warning: unused function
'ulonglong_check' [-Wunused-function]
ulonglong_check(PyObject *ob)
In file included from src/BTrees/_QOBTree.c:42:
src/BTrees/BTreeModuleTemplate.c:132:1: warning: unused function
'longlong_check' [-Wunused-function]
longlong_check(PyObject *ob)
src/BTrees/BTreeModuleTemplate.c:201:1: warning: unused function
'longlong_as_object' [-Wunused-function]
longlong_as_object(PY_LONG_LONG val)
src/BTrees/BTreeModuleTemplate.c:209:1: warning: unused function
'longlong_convert' [-Wunused-function]
longlong_convert(PyObject *ob, PY_LONG_LONG *value)
In file included from src/BTrees/_QQBTree.c:45:
src/BTrees/BTreeModuleTemplate.c:132:1: warning: unused function
'longlong_check' [-Wunused-function]
longlong_check(PyObject *ob)
src/BTrees/BTreeModuleTemplate.c:201:1: warning: unused function
'longlong_as_object' [-Wunused-function]
longlong_as_object(PY_LONG_LONG val)
src/BTrees/BTreeModuleTemplate.c:209:1: warning: unused function
'longlong_convert' [-Wunused-function]
longlong_convert(PyObject *ob, PY_LONG_LONG *value)
In file included from src/BTrees/_QFBTree.c:44:
src/BTrees/BTreeModuleTemplate.c:132:1: warning: unused function
'longlong_check' [-Wunused-function]
longlong_check(PyObject *ob)
src/BTrees/BTreeModuleTemplate.c:201:1: warning: unused function
'longlong_as_object' [-Wunused-function]
longlong_as_object(PY_LONG_LONG val)
^
src/BTrees/BTreeModuleTemplate.c:209:1: warning: unused function
'longlong_convert' [-Wunused-function]
longlong_convert(PyObject *ob, PY_LONG_LONG *value)
In file included from src/BTrees/_QLBTree.c:44:
src/BTrees/BTreeModuleTemplate.c:132:1: warning: unused function
'longlong_check' [-Wunused-function]
longlong_check(PyObject *ob)
^
1 warning generated.
In file included from src/BTrees/_OQBTree.c:42:
src/BTrees/BTreeModuleTemplate.c:201:1: warning: unused function
'longlong_as_object' [-Wunused-function]
longlong_as_object(PY_LONG_LONG val)
^
src/BTrees/BTreeModuleTemplate.c:209:1: warning: unused function
'longlong_convert' [-Wunused-function]
longlong_convert(PyObject *ob, PY_LONG_LONG *value)
Getting distribution for 'AccessControl==5.0'.
src/AccessControl/cAccessControl.c:2202:7: warning: code will never be executed
[-Wunreachable-code]
unauthErr(name, v);
^~~~~~~~~
The text was updated successfully, but these errors were encountered: