-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Traceback on shared objects #122
Comments
Original comment by Sylvain Thénault (BitBucket: sthenault, GitHub: @sthenault?): curious about that one but doesn't have environment to test it easily. Could you provide minimal source code to reproduce this? |
Original comment by BitBucket: mcrusoe: We also experience this with the khmer project.
|
Original comment by Sylvain Thénault (BitBucket: sthenault, GitHub: @sthenault?): Issue #185 was marked as a duplicate of this issue. |
Original comment by Sylvain Thénault (BitBucket: sthenault, GitHub: @sthenault?): Do not attempt to analyze non python file, eg .so file. Closes #122 |
Original comment by Sylvain Thénault (BitBucket: sthenault, GitHub: @sthenault?): Removing version: 1.0 (automated comment) |
* refactor: move generated client instantiation out of base class * feat: integrate microgen async client to client * feat: make collections call backed by async * fix: failing asyncmock assertion * refactor: remove unused install * fix: lint * refactor: shared functionality in client to base class * refactor: move AsyncMock to test helpers * fix: return type in client docs * feat: integrate microgen async client to collection * fix: lint * feat: integrate microgen async client to document * feat: integrate microgen async client to batch * fix: use AsyncMock for batch async tests: * fix: collection and document testing batch
Originally reported by: Anonymous
When I run pylint2 on a Cython module compiled in-place, it tracebacks trying to parse the compiled shared object as a Python file:
It happens both using the dotted notation for the module
pylint2 pytouhou.formats.anm0
and the file path notationpylint2 pytouhou/formats/anm0.so
, while trying to load the pyx or pxd correctly stops with a syntax-error.The text was updated successfully, but these errors were encountered: