-
Notifications
You must be signed in to change notification settings - Fork 158
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
Support Cython #466
Comments
`cdef class BaseMarket:
cdef class SOMECLASSMarket(BaseMarket):
the code is like that |
the Cython version is 'cython==0.29.5' |
Hey sorry for the delay, I never tested compatibility with |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get this error :
AttributeError: 'method_descriptor' object has no attribute 'module'
File "C:\Users\fff.conda\envs\biconome\lib\asyncio\base_events.py", line 579, in run_until_complete
return future.result()
File "C:\Users\fff.conda\envs\biconome\lib\site-packages\aiocache\decorators.py", line 73, in wrapper
return await self.decorator(f, *args, **kwargs)
File "C:\Users\fff.conda\envs\biconome\lib\site-packages\aiocache\decorators.py", line 79, in decorator
key = self.get_cache_key(f, args, kwargs)
File "C:\Users\fff.conda\envs\biconome\lib\site-packages\aiocache\decorators.py", line 99, in get_cache_key
return self._key_from_args(f, args, kwargs)
File "C:\Users\fff.conda\envs\biconome\lib\site-packages\aiocache\decorators.py", line 104, in _key_from_args
args[1:] if self.noself else args) + str(ordered_kwargs)
AttributeError: 'method_descriptor' object has no attribute 'module'
The version that I used is ' pip install aiocache==0.10.0' and ' aiocache-0.11.1'
The text was updated successfully, but these errors were encountered: