We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dff76e commit a63fdceCopy full SHA for a63fdce
pdal/plang/Invocation.cpp
@@ -53,7 +53,7 @@ int argCount(PyObject *function)
53
// Owned by module.
54
PyObject *dictionary = PyModule_GetDict(module);
55
// Owned by dictionary.
56
- PyObject *getargFunc = PyDict_GetItemString(dictionary, "getargspec");
+ PyObject *getargFunc = PyDict_GetItemString(dictionary, "getfullargspec");
57
58
// New object.
59
PyObject *inArgs = PyTuple_New(1);
test/test_pipeline.py
@@ -352,7 +352,7 @@ def test_read_arrays(self):
352
z_vals = [1.5, 3.5, 5.5, 7.5, 9.5]
353
test_data = np.array(
354
[(x, y, z) for x, y, z in zip(x_vals, y_vals, z_vals)],
355
- dtype=[("X", np.float), ("Y", np.float), ("Z", np.float)],
+ dtype=[("X", float), ("Y", float), ("Z", float)],
356
)
357
358
pipeline = """
@@ -379,7 +379,7 @@ def test_reference_counting(self):
379
380
381
382
383
384
385
0 commit comments