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)
103 def astype(self, dtype): 104 """Changes the (numpy) datatype of the values""" 105 self.values[:] = self.values.astype(dtype)