summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2016-12-19 10:38:42 -0700
committerCharles Harris <charlesr.harris@gmail.com>2016-12-19 12:12:30 -0700
commit6002de5cf593faf79796f70ab775102855ef50b8 (patch)
treef8b2908e07d9357116e2fe19b7882f7a40969053 /doc
parenta35f997dd6e50560391519c71c814f1175ea8c71 (diff)
downloadnumpy-6002de5cf593faf79796f70ab775102855ef50b8.tar.gz
DOC: Update 1.12.0-notes.
[ci skip]
Diffstat (limited to 'doc')
-rw-r--r--doc/release/1.12.0-notes.rst164
1 files changed, 91 insertions, 73 deletions
diff --git a/doc/release/1.12.0-notes.rst b/doc/release/1.12.0-notes.rst
index 8db9b106f..b9bc3d197 100644
--- a/doc/release/1.12.0-notes.rst
+++ b/doc/release/1.12.0-notes.rst
@@ -2,14 +2,21 @@
NumPy 1.12.0 Release Notes
==========================
-This release supports Python 2.7 and 3.4 - 3.6.
+This release supports Python 2.7 and 3.4 - 3.6.
Highlights
==========
+The NumPy 1.12.0 release contains a large number of fixes and improvements, but
+few that stand out above all others. That makes picking out the highlights
+somewhat arbitrary but the following may be of particular interest or indicate
+areas likely to have future consequences.
-* Order of operations in ``np.einsum`` now can be optimized for large speed improvements.
+* Order of operations in ``np.einsum`` can now be optimized for large speed improvements.
* New ``signature`` argument to ``np.vectorize`` for vectorizing with core dimensions.
* The ``keepdims`` argument was added to many functions.
+* New context manager for testing warnings
+* Support for BLIS in numpy.distutils
+* Much improved support for PyPy (not yet finished)
Dropped Support
===============
@@ -178,6 +185,11 @@ The following functions are changed: ``sum``, ``product``,
The previous identity was 1, it is now -1. See entry in `Improvements`_ for
more explanation.
+ma.median warns and returns nan when unmasked invalid values are encountered
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Similar to unmasked median the masked median `ma.median` now emits a Runtime
+warning and returns `NaN` in slices where an unmasked `NaN` is present.
+
Greater consistancy in ``assert_almost_equal``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The precision check for scalars has been changed to match that for arrays. It
@@ -483,10 +495,11 @@ python versions before 3.4, this can cause warnings to appear that were falsely
ignored before, which may be surprising especially in test suits.
+
Contributors to maintenance/1.12.x
==================================
-A total of 138 people contributed to this release. People with a "+" by their
+A total of 139 people contributed to this release. People with a "+" by their
names contributed a patch for the first time.
- Aditya Panchal
@@ -597,6 +610,7 @@ names contributed a patch for the first time.
- Rob Malouf +
- Robert Kern
- Samuel St-Jean
+- Sanchez Gonzalez Alvaro +
- Saurabh Mehta +
- Scott Sanderson +
- Sebastian Berg
@@ -620,29 +634,29 @@ names contributed a patch for the first time.
- Victor Stinner +
- Warren Weckesser
- Wendell Smith
+- Wojtek Ruszczewski +
- Xavier Abellan Ecija +
- Yaroslav Halchenko
- Yash Shah +
- Yinon Ehrlich +
- Yu Feng +
-- alvarosg +
- nevimov +
Pull requests merged for maintenance/1.12.x
===========================================
-A total of 402 pull requests were merged for this release.
+A total of 406 pull requests were merged for this release.
- `#4073 <https://github.com/numpy/numpy/pull/4073>`__: BUG: change real output checking to test if all imaginary parts...
- `#4619 <https://github.com/numpy/numpy/pull/4619>`__: BUG : np.sum silently drops keepdims for sub-classes of ndarray
- `#5488 <https://github.com/numpy/numpy/pull/5488>`__: ENH: add `contract`: optimizing numpy's einsum expression
- `#5706 <https://github.com/numpy/numpy/pull/5706>`__: ENH: make some masked array methods behave more like ndarray...
-- `#5822 <https://github.com/numpy/numpy/pull/5822>`__: ENH: Allow many distributions to have a scale of 0.
+- `#5822 <https://github.com/numpy/numpy/pull/5822>`__: Allow many distributions to have a scale of 0.
- `#6054 <https://github.com/numpy/numpy/pull/6054>`__: WIP: MAINT: Add deprecation warning to views of multi-field indexes
-- `#6298 <https://github.com/numpy/numpy/pull/6298>`__: BUG: Check lower base limit in base_repr.
-- `#6430 <https://github.com/numpy/numpy/pull/6430>`__: BUG: Fix issues with zero-width string fields
+- `#6298 <https://github.com/numpy/numpy/pull/6298>`__: Check lower base limit in base_repr.
+- `#6430 <https://github.com/numpy/numpy/pull/6430>`__: Fix issues with zero-width string fields
- `#6656 <https://github.com/numpy/numpy/pull/6656>`__: ENH: usecols now accepts an int when only one column has to be...
-- `#6660 <https://github.com/numpy/numpy/pull/6660>`__: ENH: Added pathlib support for several functions
+- `#6660 <https://github.com/numpy/numpy/pull/6660>`__: Added pathlib support for several functions
- `#6872 <https://github.com/numpy/numpy/pull/6872>`__: ENH: linear interpolation of complex values in lib.interp
- `#6997 <https://github.com/numpy/numpy/pull/6997>`__: MAINT: Simplify mtrand.pyx helpers
- `#7003 <https://github.com/numpy/numpy/pull/7003>`__: BUG: Fix string copying for np.place
@@ -655,7 +669,7 @@ A total of 402 pull requests were merged for this release.
- `#7087 <https://github.com/numpy/numpy/pull/7087>`__: BLD: fix compilation on non glibc-Linuxes
- `#7088 <https://github.com/numpy/numpy/pull/7088>`__: BUG: Have `norm` cast non-floating point arrays to 64-bit float...
- `#7090 <https://github.com/numpy/numpy/pull/7090>`__: ENH: Added 'doane' and 'sqrt' estimators to np.histogram in numpy.function_base
-- `#7091 <https://github.com/numpy/numpy/pull/7091>`__: BUG: Revert "BLD: fix compilation on non glibc-Linuxes"
+- `#7091 <https://github.com/numpy/numpy/pull/7091>`__: Revert "BLD: fix compilation on non glibc-Linuxes"
- `#7092 <https://github.com/numpy/numpy/pull/7092>`__: BLD: fix compilation on non glibc-Linuxes
- `#7099 <https://github.com/numpy/numpy/pull/7099>`__: TST: Suppressed warnings
- `#7102 <https://github.com/numpy/numpy/pull/7102>`__: MAINT: Removed conditionals that are always false in datetime_strings.c
@@ -667,17 +681,17 @@ A total of 402 pull requests were merged for this release.
- `#7119 <https://github.com/numpy/numpy/pull/7119>`__: BUG: Fixed mingw.lib error
- `#7125 <https://github.com/numpy/numpy/pull/7125>`__: DOC: Updated documentation wording and examples for np.percentile.
- `#7129 <https://github.com/numpy/numpy/pull/7129>`__: BUG: Fixed 'midpoint' interpolation of np.percentile in odd cases.
-- `#7131 <https://github.com/numpy/numpy/pull/7131>`__: REL: Fix setuptools sdist
+- `#7131 <https://github.com/numpy/numpy/pull/7131>`__: Fix setuptools sdist
- `#7133 <https://github.com/numpy/numpy/pull/7133>`__: ENH: savez: temporary file alongside with target file and improve...
- `#7134 <https://github.com/numpy/numpy/pull/7134>`__: MAINT: Fix some typos in a code string and comments
- `#7141 <https://github.com/numpy/numpy/pull/7141>`__: BUG: Unpickled void scalars should be contiguous
- `#7144 <https://github.com/numpy/numpy/pull/7144>`__: MAINT: Change `call_fortran` into `callfortran` in comments.
- `#7145 <https://github.com/numpy/numpy/pull/7145>`__: BUG: Fixed regressions in np.piecewise in ref to #5737 and #5729.
-- `#7147 <https://github.com/numpy/numpy/pull/7147>`__: REL: Temporarily disable __numpy_ufunc__
+- `#7147 <https://github.com/numpy/numpy/pull/7147>`__: Temporarily disable __numpy_ufunc__
- `#7148 <https://github.com/numpy/numpy/pull/7148>`__: ENH,TST: Bump stacklevel and add tests for warnings
- `#7149 <https://github.com/numpy/numpy/pull/7149>`__: TST: Add missing suffix to temppath manager
- `#7152 <https://github.com/numpy/numpy/pull/7152>`__: BUG: mode kwargs passed as unicode to np.pad raises an exception
-- `#7156 <https://github.com/numpy/numpy/pull/7156>`__: BUG: Reascertain that linspace respects ndarray subclasses in start,...
+- `#7156 <https://github.com/numpy/numpy/pull/7156>`__: BUG: Reascertain that linspace respects ndarray subclasses in...
- `#7167 <https://github.com/numpy/numpy/pull/7167>`__: DOC: Update Wikipedia references for mtrand.pyx
- `#7171 <https://github.com/numpy/numpy/pull/7171>`__: TST: Fixed f2py test for Anaconda non-win32
- `#7174 <https://github.com/numpy/numpy/pull/7174>`__: DOC: Fix broken pandas link in release notes
@@ -689,11 +703,11 @@ A total of 402 pull requests were merged for this release.
- `#7193 <https://github.com/numpy/numpy/pull/7193>`__: MAINT: Removed supurious assert in histogram estimators
- `#7194 <https://github.com/numpy/numpy/pull/7194>`__: BUG: Raise a quieter `MaskedArrayFutureWarning` for mask changes.
- `#7195 <https://github.com/numpy/numpy/pull/7195>`__: STY: Drop some trailing spaces in `numpy.ma.core`.
-- `#7196 <https://github.com/numpy/numpy/pull/7196>`__: BUG: Revert "DOC: add vstack, hstack, dstack reference to stack documentation."
+- `#7196 <https://github.com/numpy/numpy/pull/7196>`__: Revert "DOC: add vstack, hstack, dstack reference to stack documentation."
- `#7197 <https://github.com/numpy/numpy/pull/7197>`__: TST: Pin virtualenv used on Travis CI.
- `#7198 <https://github.com/numpy/numpy/pull/7198>`__: ENH: Unlock the GIL for gufuncs
- `#7199 <https://github.com/numpy/numpy/pull/7199>`__: MAINT: Cleanup for histogram bin estimator selection
-- `#7201 <https://github.com/numpy/numpy/pull/7201>`__: BUG: Raise IOError on not a file in python2
+- `#7201 <https://github.com/numpy/numpy/pull/7201>`__: Raise IOError on not a file in python2
- `#7202 <https://github.com/numpy/numpy/pull/7202>`__: MAINT: Made `iterable` return a boolean
- `#7209 <https://github.com/numpy/numpy/pull/7209>`__: TST: Bump `virtualenv` to 14.0.6
- `#7211 <https://github.com/numpy/numpy/pull/7211>`__: DOC: Fix fmin examples
@@ -702,7 +716,7 @@ A total of 402 pull requests were merged for this release.
- `#7231 <https://github.com/numpy/numpy/pull/7231>`__: MRG: allow distributors to run custom init
- `#7232 <https://github.com/numpy/numpy/pull/7232>`__: BLD: Switch order of test for lapack_mkl and openblas_lapack
- `#7239 <https://github.com/numpy/numpy/pull/7239>`__: DOC: Removed residual merge markup from previous commit
-- `#7240 <https://github.com/numpy/numpy/pull/7240>`__: MAINT: Change 'pubic' to 'public'.
+- `#7240 <https://github.com/numpy/numpy/pull/7240>`__: Change 'pubic' to 'public'.
- `#7241 <https://github.com/numpy/numpy/pull/7241>`__: MAINT: update doc/sphinxext to numpydoc 0.6.0, and fix up some...
- `#7243 <https://github.com/numpy/numpy/pull/7243>`__: ENH: Adding support to the range keyword for estimation of the...
- `#7246 <https://github.com/numpy/numpy/pull/7246>`__: DOC: metion writeable keyword in as_strided in release notes
@@ -710,14 +724,14 @@ A total of 402 pull requests were merged for this release.
- `#7248 <https://github.com/numpy/numpy/pull/7248>`__: DOC: remove link to documentation wiki editor from HOWTO_DOCUMENT.
- `#7250 <https://github.com/numpy/numpy/pull/7250>`__: DOC,REL: Update 1.11.0 notes.
- `#7251 <https://github.com/numpy/numpy/pull/7251>`__: BUG: only benchmark complex256 if it exists
-- `#7252 <https://github.com/numpy/numpy/pull/7252>`__: BUG: Forward port a fix and enhancement from 1.11.x
+- `#7252 <https://github.com/numpy/numpy/pull/7252>`__: Forward port a fix and enhancement from 1.11.x
- `#7253 <https://github.com/numpy/numpy/pull/7253>`__: DOC: note in h/v/dstack points users to stack/concatenate
- `#7254 <https://github.com/numpy/numpy/pull/7254>`__: BUG: Enforce dtype for randint singletons
- `#7256 <https://github.com/numpy/numpy/pull/7256>`__: MAINT: Use `is None` or `is not None` instead of `== None` or...
- `#7257 <https://github.com/numpy/numpy/pull/7257>`__: DOC: Fix mismatched variable names in docstrings.
- `#7258 <https://github.com/numpy/numpy/pull/7258>`__: ENH: Make numpy floor_divide and remainder agree with Python...
- `#7260 <https://github.com/numpy/numpy/pull/7260>`__: BUG/TST: Fix #7259, do not "force scalar" for already scalar...
-- `#7261 <https://github.com/numpy/numpy/pull/7261>`__: MAINT: Added self to mailmap
+- `#7261 <https://github.com/numpy/numpy/pull/7261>`__: Added self to mailmap
- `#7266 <https://github.com/numpy/numpy/pull/7266>`__: BUG: Segfault for classes with deceptive __len__
- `#7268 <https://github.com/numpy/numpy/pull/7268>`__: ENH: add geomspace function
- `#7274 <https://github.com/numpy/numpy/pull/7274>`__: BUG: Preserve array order in np.delete
@@ -728,10 +742,10 @@ A total of 402 pull requests were merged for this release.
- `#7280 <https://github.com/numpy/numpy/pull/7280>`__: MAINT: Remove redundant trailing semicolons.
- `#7285 <https://github.com/numpy/numpy/pull/7285>`__: BUG: Make Randint Backwards Compatible with Pandas
- `#7286 <https://github.com/numpy/numpy/pull/7286>`__: MAINT: Fix typos in docs/comments of `ma` and `polynomial` modules.
-- `#7292 <https://github.com/numpy/numpy/pull/7292>`__: MAINT: Clarify error on repr failure in assert_equal.
+- `#7292 <https://github.com/numpy/numpy/pull/7292>`__: Clarify error on repr failure in assert_equal.
- `#7294 <https://github.com/numpy/numpy/pull/7294>`__: ENH: add support for BLIS to numpy.distutils
- `#7295 <https://github.com/numpy/numpy/pull/7295>`__: DOC: understanding code and getting started section to dev doc
-- `#7296 <https://github.com/numpy/numpy/pull/7296>`__: BUG: Revert part of #3907 which incorrectly propogated MaskedArray...
+- `#7296 <https://github.com/numpy/numpy/pull/7296>`__: Revert part of #3907 which incorrectly propogated MaskedArray...
- `#7299 <https://github.com/numpy/numpy/pull/7299>`__: DOC: Fix mismatched variable names in docstrings.
- `#7300 <https://github.com/numpy/numpy/pull/7300>`__: DOC: dev: stop recommending keeping local master updated with...
- `#7301 <https://github.com/numpy/numpy/pull/7301>`__: DOC: Update release notes
@@ -739,39 +753,39 @@ A total of 402 pull requests were merged for this release.
- `#7307 <https://github.com/numpy/numpy/pull/7307>`__: DOC: Missing some characters in link.
- `#7308 <https://github.com/numpy/numpy/pull/7308>`__: BUG: Incrementing the wrong reference on return
- `#7310 <https://github.com/numpy/numpy/pull/7310>`__: STY: Fix GitHub rendering of ordered lists >9
-- `#7311 <https://github.com/numpy/numpy/pull/7311>`__: ENH Make _pointer_type_cache functional
+- `#7311 <https://github.com/numpy/numpy/pull/7311>`__: ENH: Make _pointer_type_cache functional
- `#7313 <https://github.com/numpy/numpy/pull/7313>`__: DOC: corrected grammatical error in quickstart doc
- `#7325 <https://github.com/numpy/numpy/pull/7325>`__: BUG, MAINT: Improve fromnumeric.py interface for downstream compatibility
- `#7328 <https://github.com/numpy/numpy/pull/7328>`__: DEP: Deprecated using a float index in linspace
-- `#7331 <https://github.com/numpy/numpy/pull/7331>`__: BUG: Add comment and fix MemoryError on win32
-- `#7332 <https://github.com/numpy/numpy/pull/7332>`__: BUG: Check for no solution in np.irr Fixes #6744
+- `#7331 <https://github.com/numpy/numpy/pull/7331>`__: Add comment, TST: fix MemoryError on win32
+- `#7332 <https://github.com/numpy/numpy/pull/7332>`__: Check for no solution in np.irr Fixes #6744
- `#7338 <https://github.com/numpy/numpy/pull/7338>`__: TST: Install `pytz` in the CI.
- `#7340 <https://github.com/numpy/numpy/pull/7340>`__: DOC: Fixed math rendering in tensordot docs.
- `#7341 <https://github.com/numpy/numpy/pull/7341>`__: TST: Add test for #6469
- `#7344 <https://github.com/numpy/numpy/pull/7344>`__: DOC: Fix more typos in docs and comments.
-- `#7346 <https://github.com/numpy/numpy/pull/7346>`__: ENH: Generalized flip
+- `#7346 <https://github.com/numpy/numpy/pull/7346>`__: Generalized flip
- `#7347 <https://github.com/numpy/numpy/pull/7347>`__: ENH Generalized rot90
-- `#7348 <https://github.com/numpy/numpy/pull/7348>`__: MAINT: Removed extra space from `ureduce`
+- `#7348 <https://github.com/numpy/numpy/pull/7348>`__: Maint: Removed extra space from `ureduce`
- `#7349 <https://github.com/numpy/numpy/pull/7349>`__: MAINT: Hide nan warnings for masked internal MA computations
- `#7350 <https://github.com/numpy/numpy/pull/7350>`__: BUG: MA ufuncs should set mask to False, not array([False])
- `#7351 <https://github.com/numpy/numpy/pull/7351>`__: TST: Fix some MA tests to avoid looking at the .data attribute
- `#7358 <https://github.com/numpy/numpy/pull/7358>`__: BUG: pull request related to the issue #7353
-- `#7359 <https://github.com/numpy/numpy/pull/7359>`__: DOC: Clarify valid integer range for random.seed...
+- `#7359 <https://github.com/numpy/numpy/pull/7359>`__: Update 7314, DOC: Clarify valid integer range for random.seed...
- `#7361 <https://github.com/numpy/numpy/pull/7361>`__: MAINT: Fix copy and paste oversight.
- `#7363 <https://github.com/numpy/numpy/pull/7363>`__: ENH: Make no unshare mask future warnings less noisy
- `#7366 <https://github.com/numpy/numpy/pull/7366>`__: TST: fix #6542, add tests to check non-iterable argument raises...
- `#7373 <https://github.com/numpy/numpy/pull/7373>`__: ENH: Add bitwise_and identity
-- `#7378 <https://github.com/numpy/numpy/pull/7378>`__: ENH: added NumPy logo and separator
+- `#7378 <https://github.com/numpy/numpy/pull/7378>`__: added NumPy logo and separator
- `#7382 <https://github.com/numpy/numpy/pull/7382>`__: MAINT: cleanup np.average
- `#7385 <https://github.com/numpy/numpy/pull/7385>`__: DOC: note about wheels / windows wheels for pypi
-- `#7386 <https://github.com/numpy/numpy/pull/7386>`__: ENH: Added label icon to Travis status
+- `#7386 <https://github.com/numpy/numpy/pull/7386>`__: Added label icon to Travis status
- `#7397 <https://github.com/numpy/numpy/pull/7397>`__: BUG: incorrect type for objects whose __len__ fails
- `#7398 <https://github.com/numpy/numpy/pull/7398>`__: DOC: fix typo
-- `#7404 <https://github.com/numpy/numpy/pull/7404>`__: MAINT: Use PyMem_RawMalloc on Python 3.4 and newer
+- `#7404 <https://github.com/numpy/numpy/pull/7404>`__: Use PyMem_RawMalloc on Python 3.4 and newer
- `#7406 <https://github.com/numpy/numpy/pull/7406>`__: ENH ufunc called on memmap return a ndarray
- `#7407 <https://github.com/numpy/numpy/pull/7407>`__: BUG: Fix decref before incref for in-place accumulate
- `#7410 <https://github.com/numpy/numpy/pull/7410>`__: DOC: add nanprod to the list of math routines
-- `#7414 <https://github.com/numpy/numpy/pull/7414>`__: BUG: Tweak corrcoef
+- `#7414 <https://github.com/numpy/numpy/pull/7414>`__: Tweak corrcoef
- `#7415 <https://github.com/numpy/numpy/pull/7415>`__: DOC: Documention fixes
- `#7416 <https://github.com/numpy/numpy/pull/7416>`__: BUG: Incorrect handling of range in `histogram` with automatic...
- `#7418 <https://github.com/numpy/numpy/pull/7418>`__: DOC: Minor typo fix, hermefik -> hermefit.
@@ -779,8 +793,8 @@ A total of 402 pull requests were merged for this release.
- `#7423 <https://github.com/numpy/numpy/pull/7423>`__: BUG: Ongoing fixes to PR#7416
- `#7430 <https://github.com/numpy/numpy/pull/7430>`__: DOC: Update 1.11.0-notes.
- `#7433 <https://github.com/numpy/numpy/pull/7433>`__: MAINT: FutureWarning for changes to np.average subclass handling
-- `#7437 <https://github.com/numpy/numpy/pull/7437>`__: BUG: np.full now defaults to the filling value's dtype.
-- `#7438 <https://github.com/numpy/numpy/pull/7438>`__: ENH: Allow rolling multiple axes at the same time.
+- `#7437 <https://github.com/numpy/numpy/pull/7437>`__: np.full now defaults to the filling value's dtype.
+- `#7438 <https://github.com/numpy/numpy/pull/7438>`__: Allow rolling multiple axes at the same time.
- `#7439 <https://github.com/numpy/numpy/pull/7439>`__: BUG: Do not try sequence repeat unless necessary
- `#7442 <https://github.com/numpy/numpy/pull/7442>`__: MANT: Simplify diagonal length calculation logic
- `#7445 <https://github.com/numpy/numpy/pull/7445>`__: BUG: reference count leak in bincount, fixes #6805
@@ -796,14 +810,14 @@ A total of 402 pull requests were merged for this release.
- `#7477 <https://github.com/numpy/numpy/pull/7477>`__: MAINT: Yet more .mailmap updates for recent contributors.
- `#7481 <https://github.com/numpy/numpy/pull/7481>`__: BUG: Fix segfault in PyArray_OrderConverter
- `#7482 <https://github.com/numpy/numpy/pull/7482>`__: BUG: Memory Leak in _GenericBinaryOutFunction
-- `#7489 <https://github.com/numpy/numpy/pull/7489>`__: ENH: Faster real_if_close.
+- `#7489 <https://github.com/numpy/numpy/pull/7489>`__: Faster real_if_close.
- `#7491 <https://github.com/numpy/numpy/pull/7491>`__: DOC: Update subclassing doc regarding downstream compatibility
- `#7496 <https://github.com/numpy/numpy/pull/7496>`__: BUG: don't use pow for integer power ufunc loops.
- `#7504 <https://github.com/numpy/numpy/pull/7504>`__: DOC: remove "arr" from keepdims docstrings
- `#7505 <https://github.com/numpy/numpy/pull/7505>`__: MAIN: fix to #7382, make scl in np.average writeable
- `#7507 <https://github.com/numpy/numpy/pull/7507>`__: MAINT: Remove nose.SkipTest import.
- `#7508 <https://github.com/numpy/numpy/pull/7508>`__: DOC: link frompyfunc and vectorize
-- `#7511 <https://github.com/numpy/numpy/pull/7511>`__: BUG: numpy.power(0, 0) should return 1
+- `#7511 <https://github.com/numpy/numpy/pull/7511>`__: numpy.power(0, 0) should return 1
- `#7515 <https://github.com/numpy/numpy/pull/7515>`__: BUG: MaskedArray.count treats negative axes incorrectly
- `#7518 <https://github.com/numpy/numpy/pull/7518>`__: BUG: Extend glibc complex trig functions blacklist to glibc <...
- `#7521 <https://github.com/numpy/numpy/pull/7521>`__: DOC: rephrase writeup of memmap changes
@@ -817,13 +831,12 @@ A total of 402 pull requests were merged for this release.
- `#7562 <https://github.com/numpy/numpy/pull/7562>`__: BUG: Fix test_from_object_array_unicode (test_defchararray.TestBasic)…
- `#7565 <https://github.com/numpy/numpy/pull/7565>`__: BUG: Fix test_ctypeslib and test_indexing for debug interpreter
- `#7566 <https://github.com/numpy/numpy/pull/7566>`__: MAINT: use manylinux1 wheel for cython
-- `#7568 <https://github.com/numpy/numpy/pull/7568>`__: BUG: Fix a false positive OverflowError in Python 3.x when value above...
+- `#7568 <https://github.com/numpy/numpy/pull/7568>`__: Fix a false positive OverflowError in Python 3.x when value above...
- `#7579 <https://github.com/numpy/numpy/pull/7579>`__: DOC: clarify purpose of Attributes section
- `#7584 <https://github.com/numpy/numpy/pull/7584>`__: BUG: fixes #7572, percent in path
-- `#7586 <https://github.com/numpy/numpy/pull/7586>`__: ENH: Make np.ma.take works on scalars
+- `#7586 <https://github.com/numpy/numpy/pull/7586>`__: Make np.ma.take works on scalars
- `#7587 <https://github.com/numpy/numpy/pull/7587>`__: BUG: linalg.norm(): Don't convert object arrays to float
-- `#7596 <https://github.com/numpy/numpy/pull/7596>`__: DOC: fix PEP8 code in example file
-- `#7598 <https://github.com/numpy/numpy/pull/7598>`__: BUG: Cast array size to int64 when loading from archive
+- `#7598 <https://github.com/numpy/numpy/pull/7598>`__: Cast array size to int64 when loading from archive
- `#7602 <https://github.com/numpy/numpy/pull/7602>`__: DOC: Remove isreal and iscomplex from ufunc list
- `#7605 <https://github.com/numpy/numpy/pull/7605>`__: DOC: fix incorrect Gamma distribution parameterization comments
- `#7609 <https://github.com/numpy/numpy/pull/7609>`__: BUG: Fix TypeError when raising TypeError
@@ -845,7 +858,7 @@ A total of 402 pull requests were merged for this release.
- `#7658 <https://github.com/numpy/numpy/pull/7658>`__: BUG: fix incorrect printing of 1D masked arrays
- `#7659 <https://github.com/numpy/numpy/pull/7659>`__: BUG: Temporary fix for str(mvoid) for object field types
- `#7664 <https://github.com/numpy/numpy/pull/7664>`__: BUG: Fix unicode with byte swap transfer and copyswap
-- `#7667 <https://github.com/numpy/numpy/pull/7667>`__: BUG: Restore histogram consistency
+- `#7667 <https://github.com/numpy/numpy/pull/7667>`__: Restore histogram consistency
- `#7668 <https://github.com/numpy/numpy/pull/7668>`__: ENH: Do not check the type of module.__dict__ explicit in test.
- `#7669 <https://github.com/numpy/numpy/pull/7669>`__: BUG: boolean assignment no GIL release when transfer needs API
- `#7673 <https://github.com/numpy/numpy/pull/7673>`__: DOC: Create Numpy 1.11.1 release notes.
@@ -855,65 +868,65 @@ A total of 402 pull requests were merged for this release.
- `#7681 <https://github.com/numpy/numpy/pull/7681>`__: DOC: Update 1.11.1 release notes.
- `#7686 <https://github.com/numpy/numpy/pull/7686>`__: ENH: Changing FFT cache to a bounded LRU cache
- `#7688 <https://github.com/numpy/numpy/pull/7688>`__: DOC: fix broken genfromtxt examples in user guide. Closes gh-7662.
-- `#7689 <https://github.com/numpy/numpy/pull/7689>`__: ENH: add correlate/convolve benchmarks.
+- `#7689 <https://github.com/numpy/numpy/pull/7689>`__: BENCH: add correlate/convolve benchmarks.
- `#7696 <https://github.com/numpy/numpy/pull/7696>`__: DOC: update wheel build / upload instructions
- `#7699 <https://github.com/numpy/numpy/pull/7699>`__: BLD: preserve library order
- `#7704 <https://github.com/numpy/numpy/pull/7704>`__: ENH: Add bits attribute to np.finfo
- `#7712 <https://github.com/numpy/numpy/pull/7712>`__: BUG: Fix race condition with new FFT cache
- `#7715 <https://github.com/numpy/numpy/pull/7715>`__: BUG: Remove memory leak in np.place
- `#7719 <https://github.com/numpy/numpy/pull/7719>`__: BUG: Fix segfault in np.random.shuffle for arrays of different...
-- `#7723 <https://github.com/numpy/numpy/pull/7723>`__: BLD: Change mkl_info.dir_env_var from MKL to MKLROOT
+- `#7723 <https://github.com/numpy/numpy/pull/7723>`__: Change mkl_info.dir_env_var from MKL to MKLROOT
- `#7727 <https://github.com/numpy/numpy/pull/7727>`__: DOC: Corrections in Datetime Units-arrays.datetime.rst
- `#7729 <https://github.com/numpy/numpy/pull/7729>`__: DOC: fix typo in savetxt docstring (closes #7620)
-- `#7733 <https://github.com/numpy/numpy/pull/7733>`__: DOC: Fix order='A' docs of np.array.
-- `#7734 <https://github.com/numpy/numpy/pull/7734>`__: ENH: Add `polyrootval` to numpy.polynomial
+- `#7733 <https://github.com/numpy/numpy/pull/7733>`__: Update 7525, DOC: Fix order='A' docs of np.array.
+- `#7734 <https://github.com/numpy/numpy/pull/7734>`__: Update 7542, ENH: Add `polyrootval` to numpy.polynomial
- `#7735 <https://github.com/numpy/numpy/pull/7735>`__: BUG: fix issue on OS X with Python 3.x where npymath.ini was...
- `#7739 <https://github.com/numpy/numpy/pull/7739>`__: DOC: Mention the changes of #6430 in the release notes.
- `#7740 <https://github.com/numpy/numpy/pull/7740>`__: DOC: add reference to poisson rng
-- `#7743 <https://github.com/numpy/numpy/pull/7743>`__: DEP: deprecate Numeric-style typecodes, closes #2148
+- `#7743 <https://github.com/numpy/numpy/pull/7743>`__: Update 7476, DEP: deprecate Numeric-style typecodes, closes #2148
- `#7744 <https://github.com/numpy/numpy/pull/7744>`__: DOC: Remove "ones_like" from ufuncs list (it is not)
- `#7746 <https://github.com/numpy/numpy/pull/7746>`__: DOC: Clarify the effect of rcond in numpy.linalg.lstsq.
-- `#7747 <https://github.com/numpy/numpy/pull/7747>`__: BUG: Make sure we don't divide by zero
+- `#7747 <https://github.com/numpy/numpy/pull/7747>`__: Update 7672, BUG: Make sure we don't divide by zero
- `#7748 <https://github.com/numpy/numpy/pull/7748>`__: DOC: Update float32 mean example in docstring
-- `#7754 <https://github.com/numpy/numpy/pull/7754>`__: ENH: Add broadcast.ndim to match code elsewhere.
-- `#7757 <https://github.com/numpy/numpy/pull/7757>`__: BUG: Invalid read of size 4 in PyArray_FromFile
+- `#7754 <https://github.com/numpy/numpy/pull/7754>`__: Update 7612, ENH: Add broadcast.ndim to match code elsewhere.
+- `#7757 <https://github.com/numpy/numpy/pull/7757>`__: Update 7175, BUG: Invalid read of size 4 in PyArray_FromFile
- `#7759 <https://github.com/numpy/numpy/pull/7759>`__: BUG: Fix numpy.i support for numpy API < 1.7.
- `#7760 <https://github.com/numpy/numpy/pull/7760>`__: ENH: Make assert_almost_equal & assert_array_almost_equal consistent.
-- `#7766 <https://github.com/numpy/numpy/pull/7766>`__: MAINT: fix an English typo
+- `#7766 <https://github.com/numpy/numpy/pull/7766>`__: fix an English typo
- `#7771 <https://github.com/numpy/numpy/pull/7771>`__: DOC: link geomspace from logspace
- `#7773 <https://github.com/numpy/numpy/pull/7773>`__: DOC: Remove a redundant the
- `#7777 <https://github.com/numpy/numpy/pull/7777>`__: DOC: Update Numpy 1.11.1 release notes.
- `#7785 <https://github.com/numpy/numpy/pull/7785>`__: DOC: update wheel building procedure for release
-- `#7789 <https://github.com/numpy/numpy/pull/7789>`__: DOC: add note of 64-bit wheels on Windows
-- `#7791 <https://github.com/numpy/numpy/pull/7791>`__: BUG: f2py.compile issues (#7683)
-- `#7799 <https://github.com/numpy/numpy/pull/7799>`__: BUG: "lambda" is not allowed to use as keyword arguments in a sample...
+- `#7789 <https://github.com/numpy/numpy/pull/7789>`__: MRG: add note of 64-bit wheels on Windows
+- `#7791 <https://github.com/numpy/numpy/pull/7791>`__: f2py.compile issues (#7683)
+- `#7799 <https://github.com/numpy/numpy/pull/7799>`__: "lambda" is not allowed to use as keyword arguments in a sample...
- `#7803 <https://github.com/numpy/numpy/pull/7803>`__: BUG: interpret 'c' PEP3118/struct type as 'S1'.
- `#7807 <https://github.com/numpy/numpy/pull/7807>`__: DOC: Misplaced parens in formula
- `#7817 <https://github.com/numpy/numpy/pull/7817>`__: BUG: Make sure npy_mul_with_overflow_<type> detects overflow.
-- `#7818 <https://github.com/numpy/numpy/pull/7818>`__: BUG: numpy/distutils/misc_util.py fix for #7809: check that _tmpdirs...
+- `#7818 <https://github.com/numpy/numpy/pull/7818>`__: numpy/distutils/misc_util.py fix for #7809: check that _tmpdirs...
- `#7820 <https://github.com/numpy/numpy/pull/7820>`__: MAINT: Allocate fewer bytes for empty arrays.
- `#7823 <https://github.com/numpy/numpy/pull/7823>`__: BUG: Fixed masked array behavior for scalar inputs to np.ma.atleast_*d
- `#7834 <https://github.com/numpy/numpy/pull/7834>`__: DOC: Added an example
-- `#7839 <https://github.com/numpy/numpy/pull/7839>`__: ENH: Pypy fixes
-- `#7840 <https://github.com/numpy/numpy/pull/7840>`__: BUG: Fix ATLAS version detection
-- `#7842 <https://github.com/numpy/numpy/pull/7842>`__: MAINT: Fix versionadded tags
+- `#7839 <https://github.com/numpy/numpy/pull/7839>`__: Pypy fixes
+- `#7840 <https://github.com/numpy/numpy/pull/7840>`__: Fix ATLAS version detection
+- `#7842 <https://github.com/numpy/numpy/pull/7842>`__: Fix versionadded tags
- `#7848 <https://github.com/numpy/numpy/pull/7848>`__: MAINT: Fix remaining uses of deprecated Python imp module.
- `#7853 <https://github.com/numpy/numpy/pull/7853>`__: BUG: Make sure numpy globals keep identity after reload.
- `#7863 <https://github.com/numpy/numpy/pull/7863>`__: ENH: turn quicksort into introsort
-- `#7866 <https://github.com/numpy/numpy/pull/7866>`__: DOC: Document runtests extra argv
+- `#7866 <https://github.com/numpy/numpy/pull/7866>`__: Document runtests extra argv
- `#7871 <https://github.com/numpy/numpy/pull/7871>`__: BUG: handle introsort depth limit properly
- `#7879 <https://github.com/numpy/numpy/pull/7879>`__: DOC: fix typo in documentation of loadtxt (closes #7878)
-- `#7885 <https://github.com/numpy/numpy/pull/7885>`__: ENH: Handle NetBSD specific <sys/endian.h>
+- `#7885 <https://github.com/numpy/numpy/pull/7885>`__: Handle NetBSD specific <sys/endian.h>
- `#7889 <https://github.com/numpy/numpy/pull/7889>`__: DOC: #7881. Fix link to record arrays
-- `#7894 <https://github.com/numpy/numpy/pull/7894>`__: BUG: construct ma.array from np.array which contains...
-- `#7898 <https://github.com/numpy/numpy/pull/7898>`__: MAINT: Spelling and grammar fix.
+- `#7894 <https://github.com/numpy/numpy/pull/7894>`__: fixup-7790, BUG: construct ma.array from np.array which contains...
+- `#7898 <https://github.com/numpy/numpy/pull/7898>`__: Spelling and grammar fix.
- `#7903 <https://github.com/numpy/numpy/pull/7903>`__: BUG: fix float16 type not being called due to wrong ordering
- `#7908 <https://github.com/numpy/numpy/pull/7908>`__: BLD: Fixed detection for recent MKL versions
- `#7911 <https://github.com/numpy/numpy/pull/7911>`__: BUG: fix for issue#7835 (ma.median of 1d)
- `#7912 <https://github.com/numpy/numpy/pull/7912>`__: ENH: skip or avoid gc/objectmodel differences btwn pypy and cpython
- `#7918 <https://github.com/numpy/numpy/pull/7918>`__: ENH: allow numpy.apply_along_axis() to work with ndarray subclasses
- `#7922 <https://github.com/numpy/numpy/pull/7922>`__: ENH: Add ma.convolve and ma.correlate for #6458
-- `#7925 <https://github.com/numpy/numpy/pull/7925>`__: WNH: Monkey-patch _msvccompile.gen_lib_option like any other compilators
+- `#7925 <https://github.com/numpy/numpy/pull/7925>`__: Monkey-patch _msvccompile.gen_lib_option like any other compilators
- `#7931 <https://github.com/numpy/numpy/pull/7931>`__: BUG: Check for HAVE_LDOUBLE_DOUBLE_DOUBLE_LE in npy_math_complex.
- `#7936 <https://github.com/numpy/numpy/pull/7936>`__: ENH: improve duck typing inside iscomplexobj
- `#7937 <https://github.com/numpy/numpy/pull/7937>`__: BUG: Guard against buggy comparisons in generic quicksort.
@@ -928,7 +941,7 @@ A total of 402 pull requests were merged for this release.
- `#7977 <https://github.com/numpy/numpy/pull/7977>`__: DOC: Create 1.11.2 release notes.
- `#7979 <https://github.com/numpy/numpy/pull/7979>`__: DOC: Corrected allowed keywords in add_(installed_)library
- `#7980 <https://github.com/numpy/numpy/pull/7980>`__: ENH: Add ability to runtime select ufunc loops, add AVX2 integer...
-- `#7985 <https://github.com/numpy/numpy/pull/7985>`__: ENH: Add new warning suppression/filtering context
+- `#7985 <https://github.com/numpy/numpy/pull/7985>`__: Rebase 7763, ENH: Add new warning suppression/filtering context
- `#7987 <https://github.com/numpy/numpy/pull/7987>`__: DOC: See also np.load and np.memmap in np.lib.format.open_memmap
- `#7988 <https://github.com/numpy/numpy/pull/7988>`__: DOC: Include docstring for cbrt, spacing and fabs in documentation
- `#7999 <https://github.com/numpy/numpy/pull/7999>`__: ENH: add inplace cases to fast ufunc loop macros
@@ -944,11 +957,11 @@ A total of 402 pull requests were merged for this release.
- `#8028 <https://github.com/numpy/numpy/pull/8028>`__: DOC: Update 1.11.2 release notes.
- `#8030 <https://github.com/numpy/numpy/pull/8030>`__: BUG: fix np.ma.median with only one non-masked value and an axis...
- `#8038 <https://github.com/numpy/numpy/pull/8038>`__: MAINT: Update error message in rollaxis.
-- `#8040 <https://github.com/numpy/numpy/pull/8040>`__: DOC: Update add_newdocs.py
+- `#8040 <https://github.com/numpy/numpy/pull/8040>`__: Update add_newdocs.py
- `#8042 <https://github.com/numpy/numpy/pull/8042>`__: BUG: core: fix bug in NpyIter buffering with discontinuous arrays
- `#8045 <https://github.com/numpy/numpy/pull/8045>`__: DOC: Update 1.11.2 release notes.
-- `#8050 <https://github.com/numpy/numpy/pull/8050>`__: BUG: remove refcount semantics, now a.resize() almost always requires...
-- `#8051 <https://github.com/numpy/numpy/pull/8051>`__: ENH: Clear signaling NaN exceptions
+- `#8050 <https://github.com/numpy/numpy/pull/8050>`__: remove refcount semantics, now a.resize() almost always requires...
+- `#8051 <https://github.com/numpy/numpy/pull/8051>`__: Clear signaling NaN exceptions
- `#8054 <https://github.com/numpy/numpy/pull/8054>`__: ENH: add signature argument to vectorize for vectorizing like...
- `#8057 <https://github.com/numpy/numpy/pull/8057>`__: BUG: lib: Simplify (and fix) pad's handling of the pad_width
- `#8061 <https://github.com/numpy/numpy/pull/8061>`__: BUG : financial.pmt modifies input (issue #8055)
@@ -958,7 +971,7 @@ A total of 402 pull requests were merged for this release.
- `#8071 <https://github.com/numpy/numpy/pull/8071>`__: MAINT: Add Tempita to randint helpers
- `#8075 <https://github.com/numpy/numpy/pull/8075>`__: DOC: Fix description of isinf in nan_to_num
- `#8080 <https://github.com/numpy/numpy/pull/8080>`__: BUG: non-integers can end up in dtype offsets
-- `#8081 <https://github.com/numpy/numpy/pull/8081>`__: DOC: Update outdated Nose URL to nose.readthedocs.io
+- `#8081 <https://github.com/numpy/numpy/pull/8081>`__: Update outdated Nose URL to nose.readthedocs.io
- `#8083 <https://github.com/numpy/numpy/pull/8083>`__: ENH: Deprecation warnings for `/` integer division when running...
- `#8084 <https://github.com/numpy/numpy/pull/8084>`__: DOC: Fix erroneous return type description for np.roots.
- `#8087 <https://github.com/numpy/numpy/pull/8087>`__: BUG: financial.pmt modifies input #8055
@@ -966,10 +979,10 @@ A total of 402 pull requests were merged for this release.
- `#8093 <https://github.com/numpy/numpy/pull/8093>`__: MAINT: fix assert_raises_regex when used as a context manager
- `#8096 <https://github.com/numpy/numpy/pull/8096>`__: ENH: Vendorize tempita.
- `#8098 <https://github.com/numpy/numpy/pull/8098>`__: DOC: Enhance description/usage for np.linalg.eig*h
-- `#8103 <https://github.com/numpy/numpy/pull/8103>`__: ENH: Pypy fixes
-- `#8104 <https://github.com/numpy/numpy/pull/8104>`__: ENH: Fix test code on cpuinfo's main function
+- `#8103 <https://github.com/numpy/numpy/pull/8103>`__: Pypy fixes
+- `#8104 <https://github.com/numpy/numpy/pull/8104>`__: Fix test code on cpuinfo's main function
- `#8107 <https://github.com/numpy/numpy/pull/8107>`__: BUG: Fix array printing with precision=0.
-- `#8109 <https://github.com/numpy/numpy/pull/8109>`__: BUG: Fix bug in ravel_multi_index for big indices (Issue #7546)
+- `#8109 <https://github.com/numpy/numpy/pull/8109>`__: Fix bug in ravel_multi_index for big indices (Issue #7546)
- `#8110 <https://github.com/numpy/numpy/pull/8110>`__: BUG: distutils: fix issue with rpath in fcompiler/gnu.py
- `#8111 <https://github.com/numpy/numpy/pull/8111>`__: ENH: Add a tool for release authors and PRs.
- `#8112 <https://github.com/numpy/numpy/pull/8112>`__: DOC: Fix "See also" links in linalg.
@@ -977,23 +990,23 @@ A total of 402 pull requests were merged for this release.
- `#8121 <https://github.com/numpy/numpy/pull/8121>`__: DOC: Improve histogram2d() example.
- `#8122 <https://github.com/numpy/numpy/pull/8122>`__: BUG: Fix broken pickle in MaskedArray when dtype is object (Return...
- `#8124 <https://github.com/numpy/numpy/pull/8124>`__: BUG: Fixed build break
-- `#8125 <https://github.com/numpy/numpy/pull/8125>`__: BUG: Fixed deepcopy of F-order object arrays.
+- `#8125 <https://github.com/numpy/numpy/pull/8125>`__: Rebase, BUG: Fixed deepcopy of F-order object arrays.
- `#8127 <https://github.com/numpy/numpy/pull/8127>`__: BUG: integers to a negative integer powers should error.
-- `#8141 <https://github.com/numpy/numpy/pull/8141>`__: ENH: improve configure checks for broken systems
+- `#8141 <https://github.com/numpy/numpy/pull/8141>`__: improve configure checks for broken systems
- `#8142 <https://github.com/numpy/numpy/pull/8142>`__: BUG: np.ma.mean and var should return scalar if no mask
- `#8148 <https://github.com/numpy/numpy/pull/8148>`__: BUG: import full module path in npy_load_module
- `#8153 <https://github.com/numpy/numpy/pull/8153>`__: MAINT: Expose void-scalar "base" attribute in python
- `#8156 <https://github.com/numpy/numpy/pull/8156>`__: DOC: added example with empty indices for a scalar, #8138
- `#8160 <https://github.com/numpy/numpy/pull/8160>`__: BUG: fix _array2string for structured array (issue #5692)
- `#8164 <https://github.com/numpy/numpy/pull/8164>`__: MAINT: Update mailmap for NumPy 1.12.0
-- `#8165 <https://github.com/numpy/numpy/pull/8165>`__: BUG: assert_allclose(..., equal_nan=False) doesn't...
-- `#8167 <https://github.com/numpy/numpy/pull/8167>`__: DOC: Clarify when PyArray_{Max, Min, Ptp} return...
+- `#8165 <https://github.com/numpy/numpy/pull/8165>`__: Fixup 8152, BUG: assert_allclose(..., equal_nan=False) doesn't...
+- `#8167 <https://github.com/numpy/numpy/pull/8167>`__: Fixup 8146, DOC: Clarify when PyArray_{Max, Min, Ptp} return...
- `#8168 <https://github.com/numpy/numpy/pull/8168>`__: DOC: Minor spelling fix in genfromtxt() docstring.
- `#8173 <https://github.com/numpy/numpy/pull/8173>`__: BLD: Enable build on AIX
- `#8174 <https://github.com/numpy/numpy/pull/8174>`__: DOC: warn that dtype.descr is only for use in PEP3118
- `#8177 <https://github.com/numpy/numpy/pull/8177>`__: MAINT: Add python 3.6 support to suppress_warnings
- `#8178 <https://github.com/numpy/numpy/pull/8178>`__: MAINT: Fix ResourceWarning new in Python 3.6.
-- `#8180 <https://github.com/numpy/numpy/pull/8180>`__: BUG: protect stolen ref by PyArray_NewFromDescr in array_empty
+- `#8180 <https://github.com/numpy/numpy/pull/8180>`__: FIX: protect stolen ref by PyArray_NewFromDescr in array_empty
- `#8181 <https://github.com/numpy/numpy/pull/8181>`__: ENH: Improve announce to find github squash-merge commits.
- `#8182 <https://github.com/numpy/numpy/pull/8182>`__: MAINT: Update .mailmap
- `#8183 <https://github.com/numpy/numpy/pull/8183>`__: MAINT: Ediff1d performance
@@ -1022,6 +1035,7 @@ A total of 402 pull requests were merged for this release.
- `#8246 <https://github.com/numpy/numpy/pull/8246>`__: REL: Reset strides for RELAXED_STRIDE_CHECKING for 1.12 releases.
- `#8265 <https://github.com/numpy/numpy/pull/8265>`__: BUG: np.piecewise not working for scalars
- `#8272 <https://github.com/numpy/numpy/pull/8272>`__: TST: Path test should resolve symlinks when comparing
+- `#8282 <https://github.com/numpy/numpy/pull/8282>`__: DOC: Update 1.12.0 release notes.
- `#8286 <https://github.com/numpy/numpy/pull/8286>`__: BUG: Fix pavement.py write_release_task.
- `#8296 <https://github.com/numpy/numpy/pull/8296>`__: BUG: Fix iteration over reversed subspaces in mapiter_@name@.
- `#8304 <https://github.com/numpy/numpy/pull/8304>`__: BUG: Fix PyPy crash in PyUFunc_GenericReduction.
@@ -1035,3 +1049,7 @@ A total of 402 pull requests were merged for this release.
- `#8372 <https://github.com/numpy/numpy/pull/8372>`__: BUG: Fixes for ma.median and nanpercentile.
- `#8373 <https://github.com/numpy/numpy/pull/8373>`__: BUG: correct letter case
- `#8379 <https://github.com/numpy/numpy/pull/8379>`__: DOC: Update 1.12.0-notes.rst.
+- `#8390 <https://github.com/numpy/numpy/pull/8390>`__: ENH: retune apply_along_axis nanmedian cutoff in 1.12
+- `#8391 <https://github.com/numpy/numpy/pull/8391>`__: DEP: Fix escaped string characters deprecated in Python 3.6.
+- `#8394 <https://github.com/numpy/numpy/pull/8394>`__: DOC: create 1.11.3 release notes.
+- `#8399 <https://github.com/numpy/numpy/pull/8399>`__: BUG: Fix author search in announce.py