-
-
Notifications
You must be signed in to change notification settings - Fork 386
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
error C2275: 'PyObject' : illegal use of this type as an expression #53
Comments
jdavid
added a commit
that referenced
this issue
Jan 25, 2012
Applied the change you have suggested. Close the issue if it works for you. Thanks. |
Great! Thanks David. |
windows platform could not compile for the same error in branch.c, I use vc compile with chinese locale, so information is: src\branch.c(160) : error C2275: “PyObject”: 将此类型用作表达式非法 so how to compile with msvc vs2008 |
Should be fixed, see #298 |
rickprice
added a commit
to ActiveState/numpy
that referenced
this issue
Sep 19, 2023
…Windows Caused by there being a variable definition after the function start. As an example: libgit2/pygit2#53
rickprice
added a commit
to ActiveState/numpy
that referenced
this issue
Sep 19, 2023
…Windows Caused by there being a variable definition after the function start. As an example: libgit2/pygit2#53
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Installing in Windows crashes in setup.py
Error is caused by variable declaration in the middle of the method in Repository_read;
Fix is to move the declaration to the beginning of the method
The text was updated successfully, but these errors were encountered: