summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-04-01 09:13:02 -0600
committerGitHub <noreply@github.com>2021-04-01 09:13:02 -0600
commit623bc1fae1d47df24e7f1e29321d0c0ba2771ce0 (patch)
tree0414026513559cbec9c6d9c19687dc139c7f3570
parent79086a575643fe2505edaa444d2b800ec23f62ed (diff)
parent7f14329dc9b1b15b5de5f42cfd1d7ff30b4a871c (diff)
downloadnumpy-623bc1fae1d47df24e7f1e29321d0c0ba2771ce0.tar.gz
Merge pull request #18706 from charris/update-upcoming_changes
DOC: Add release notes to upcoming_changes
-rw-r--r--doc/release/upcoming_changes/18629.new_feature.rst10
-rw-r--r--doc/release/upcoming_changes/18695.new_feature.rst3
2 files changed, 13 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/18629.new_feature.rst b/doc/release/upcoming_changes/18629.new_feature.rst
new file mode 100644
index 000000000..7d75c323f
--- /dev/null
+++ b/doc/release/upcoming_changes/18629.new_feature.rst
@@ -0,0 +1,10 @@
+New ``min_digits`` argument for printing float values
+-----------------------------------------------------
+A new ``min_digits`` argument has been added to the dragon4 float printing
+functions `np.format_float_positional` and `np.format_float_scientific` . This
+kwd guarantees that at least the given number of digits will be printed when
+printing in unique=True mode, even if the extra digits are unnecessary to
+uniquely specify the value. It is the counterpart to the precision argument
+which sets the maximum number of digits to be printed. When unique=False in
+fixed precision mode, it has no effect and the precision argument fixes the
+number of digits.
diff --git a/doc/release/upcoming_changes/18695.new_feature.rst b/doc/release/upcoming_changes/18695.new_feature.rst
new file mode 100644
index 000000000..a1f108176
--- /dev/null
+++ b/doc/release/upcoming_changes/18695.new_feature.rst
@@ -0,0 +1,3 @@
+f2py now recognizes Fortran abstract interface blocks
+-----------------------------------------------------
+`np.f2py` can now parse abstract interface blocks.