Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / tests / errors / e_tempcast.pyx
Size: Mime:
# mode: error

cdef object blarg

def foo(obj):
	cdef void *p
	p = <void *>blarg # ok
	p = <void *>(obj + blarg) # error - temporary

_ERRORS = u"""
8:5: Casting temporary Python object to non-numeric non-Python type
8:5: Storing unsafe C derivative of temporary Python reference
"""