summaryrefslogtreecommitdiff
path: root/numpy/polynomial/polyutils.pyi
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/polynomial/polyutils.pyi')
-rw-r--r--numpy/polynomial/polyutils.pyi12
1 files changed, 12 insertions, 0 deletions
diff --git a/numpy/polynomial/polyutils.pyi b/numpy/polynomial/polyutils.pyi
new file mode 100644
index 000000000..52c9cfc4a
--- /dev/null
+++ b/numpy/polynomial/polyutils.pyi
@@ -0,0 +1,12 @@
+from typing import List
+
+__all__: List[str]
+
+class RankWarning(UserWarning): ...
+
+def trimseq(seq): ...
+def as_series(alist, trim=...): ...
+def trimcoef(c, tol=...): ...
+def getdomain(x): ...
+def mapparms(old, new): ...
+def mapdomain(x, old, new): ...