Every line of 'python astype' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
37 def astype(a, ty): 38 return F.cast(a, ty)
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
103 def astype(self, dtype): 104 """Changes the (numpy) datatype of the values""" 105 self.values[:] = self.values.astype(dtype)