From noreply at github.com Sun Nov 1 11:59:29 2015 From: noreply at github.com (GitHub) Date: Sun, 01 Nov 2015 08:59:29 -0800 Subject: [Numpy-svn] [numpy/numpy] db85ed: BUG: immutable _arraymethod function in ma.core Message-ID: <563644f12f407_34733fa5ef05f29c529d2@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: db85edeb9326d4ea736e41baf23ae8edfdd6f84c https://github.com/numpy/numpy/commit/db85edeb9326d4ea736e41baf23ae8edfdd6f84c Author: Jonathan Helmus Date: 2015-10-29 (Thu, 29 Oct 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- BUG: immutable _arraymethod function in ma.core Replace the _arraymethod class in ma.core with a function factory which returns class method wrappers around basic array methods. These methods are bound to the MaskedArray instance and are immutable. Previously _arraymethod was a class which would incorrectly operate on the MaskedArray object which last accessed the particular named function. closes #5247 Commit: 7389b51294dd3fa786492f127025c3ab7171815d https://github.com/numpy/numpy/commit/7389b51294dd3fa786492f127025c3ab7171815d Author: ahaldane Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6588 from jjhelmus/fix_copy_mutable BUG: immutable _arraymethod function in ma.core Compare: https://github.com/numpy/numpy/compare/78d962818b87...7389b51294dd From noreply at github.com Sun Nov 1 19:26:19 2015 From: noreply at github.com (GitHub) Date: Sun, 01 Nov 2015 16:26:19 -0800 Subject: [Numpy-svn] [numpy/numpy] f2bc8b: DOC: Update 1.10.2 release notes. Message-ID: <5636adab7f2c9_52fa3fa1bc8f32a03859f@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f2bc8bac509623723ae0be0b008b03b6cb602d81 https://github.com/numpy/numpy/commit/f2bc8bac509623723ae0be0b008b03b6cb602d81 Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2 release notes. [ci skip] Commit: 629d4081ad29db2f77a2b5f0fc00f434daacf7b1 https://github.com/numpy/numpy/commit/629d4081ad29db2f77a2b5f0fc00f434daacf7b1 Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- Merge pull request #6603 from charris/update-1.10.2-notes update 1.10.2 release notes Compare: https://github.com/numpy/numpy/compare/7389b51294dd...629d4081ad29 From noreply at github.com Sun Nov 1 20:05:58 2015 From: noreply at github.com (GitHub) Date: Sun, 01 Nov 2015 17:05:58 -0800 Subject: [Numpy-svn] [numpy/numpy] b9ef15: BUG: Fix use of PyArray_ISFORTRAN in numpy.i. Message-ID: <5636b6f6c2149_73fc3fcc959e12bc93999@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: b9ef15c4ece1e74d315289584fe33e98bd0c5633 https://github.com/numpy/numpy/commit/b9ef15c4ece1e74d315289584fe33e98bd0c5633 Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M tools/swig/numpy.i Log Message: ----------- BUG: Fix use of PyArray_ISFORTRAN in numpy.i. PyArray_ISFORTRAN was used to implement array_is_fortran in numpy.i when what was wanted was PyArray_IS_F_CONTIGUOUS. The difference is that PyArray_ISFORTRAN will return False if the array is c_contiguous. Previous to relaxed stride checking this did not matter, but currently arrays with ndim > 1 may be both C and Fortran contiguous and that results in errors when PyArray_ISFORTRAN is mistakenly used to check for Fortran contiguity. Commit: d07e84c499aaaa04b0723bf80e7c41aba7b5d51c https://github.com/numpy/numpy/commit/d07e84c499aaaa04b0723bf80e7c41aba7b5d51c Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M numpy/core/numeric.py Log Message: ----------- DOC: Update documentation for isfortran. Clarify isfortran checks if an array is both Fortran contiguous and *not* C contiguous. The suggests that it only checks if the array is F contiguous, but that is not the case. Commit: 34051eb5427869a62bee6809a8d8c89ba52a7600 https://github.com/numpy/numpy/commit/34051eb5427869a62bee6809a8d8c89ba52a7600 Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2 release notes to mention fix to numpy.i Commit: 141339ba01cc331f7d6903c8be6ef20d9904d34d https://github.com/numpy/numpy/commit/141339ba01cc331f7d6903c8be6ef20d9904d34d Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/core/numeric.py M tools/swig/numpy.i Log Message: ----------- Merge pull request #6596 from charris/fix-swig-for-relaxed-strides Fix swig for relaxed stride checking Compare: https://github.com/numpy/numpy/compare/629d4081ad29...141339ba01cc From noreply at github.com Sun Nov 1 20:50:57 2015 From: noreply at github.com (GitHub) Date: Sun, 01 Nov 2015 17:50:57 -0800 Subject: [Numpy-svn] [numpy/numpy] 2f431d: BUG: Fix use of PyArray_ISFORTRAN in numpy.i. Message-ID: <5636c181988f3_27163fa45cc2f2a04500@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 2f431d111a989e899579145a1b3b736c90831a9c https://github.com/numpy/numpy/commit/2f431d111a989e899579145a1b3b736c90831a9c Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M tools/swig/numpy.i Log Message: ----------- BUG: Fix use of PyArray_ISFORTRAN in numpy.i. PyArray_ISFORTRAN was used to implement array_is_fortran in numpy.i when what was wanted was PyArray_IS_F_CONTIGUOUS. The difference is that PyArray_ISFORTRAN will return False if the array is c_contiguous. Previous to relaxed stride checking this did not matter, but currently arrays with ndim > 1 may be both C and Fortran contiguous and that results in errors when PyArray_ISFORTRAN is mistakenly used to check for Fortran contiguity. Commit: 5c9e67b1ba489a9af2aa7124918bb3c09c50115d https://github.com/numpy/numpy/commit/5c9e67b1ba489a9af2aa7124918bb3c09c50115d Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M numpy/core/numeric.py Log Message: ----------- DOC: Update documentation for isfortran. Clarify isfortran checks if an array is both Fortran contiguous and *not* C contiguous. The suggests that it only checks if the array is F contiguous, but that is not the case. Commit: ad2d67f141d6abe0bacea129e0622126ba1c7f21 https://github.com/numpy/numpy/commit/ad2d67f141d6abe0bacea129e0622126ba1c7f21 Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2 release notes to mention fix to numpy.i Commit: b0eeb8c448708e2dd9100c4b93ba9e404a9dc6c3 https://github.com/numpy/numpy/commit/b0eeb8c448708e2dd9100c4b93ba9e404a9dc6c3 Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/core/numeric.py M tools/swig/numpy.i Log Message: ----------- Merge pull request #6604 from charris/backport-6596 Backport 6596 Compare: https://github.com/numpy/numpy/compare/e60d97073368...b0eeb8c44870 From noreply at github.com Sun Nov 1 20:57:55 2015 From: noreply at github.com (GitHub) Date: Sun, 01 Nov 2015 17:57:55 -0800 Subject: [Numpy-svn] [numpy/numpy] 6056be: DOC: Sync 1.10.2 release notes in master with 1.10... Message-ID: <5636c3239399a_18c63f8a73b292a099174@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 6056be2e00dd7fa7543fb9d11901be095ac28e82 https://github.com/numpy/numpy/commit/6056be2e00dd7fa7543fb9d11901be095ac28e82 Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Sync 1.10.2 release notes in master with 1.10.x. [ci skip] Commit: 14b3034d50c2e63d8251aa566c5c8411af6faf26 https://github.com/numpy/numpy/commit/14b3034d50c2e63d8251aa566c5c8411af6faf26 Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- Merge pull request #6605 from charris/sync-1.10.2-release-notes DOC: Sync 1.10.2 release notes in master with 1.10.x. Compare: https://github.com/numpy/numpy/compare/141339ba01cc...14b3034d50c2 From noreply at github.com Sun Nov 1 21:20:23 2015 From: noreply at github.com (GitHub) Date: Sun, 01 Nov 2015 18:20:23 -0800 Subject: [Numpy-svn] [numpy/numpy] 6663d4: DOC: Update 1.10.2 release notes. Message-ID: <5636c867a62af_6c753fb05362f2bc10559a@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 6663d40f051bc64802dea09f66fd2a016c9c87e9 https://github.com/numpy/numpy/commit/6663d40f051bc64802dea09f66fd2a016c9c87e9 Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2 release notes. [ci skip] Commit: 80abf6ebf89c2ccececafc25238716ac13f0019e https://github.com/numpy/numpy/commit/80abf6ebf89c2ccececafc25238716ac13f0019e Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- Merge pull request #6606 from charris/update-1.10.2-release-notes DOC: Update 1.10.2 release notes. Compare: https://github.com/numpy/numpy/compare/14b3034d50c2...80abf6ebf89c From noreply at github.com Sun Nov 1 21:22:40 2015 From: noreply at github.com (GitHub) Date: Sun, 01 Nov 2015 18:22:40 -0800 Subject: [Numpy-svn] [numpy/numpy] c7f63b: DOC: Update 1.10.2 release notes. Message-ID: <5636c8f09de7a_57b83f9e420092c060666@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: c7f63bb0bfe67c29807bf21499b16bb6761406fb https://github.com/numpy/numpy/commit/c7f63bb0bfe67c29807bf21499b16bb6761406fb Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2 release notes. [ci skip] Commit: a276ca66f18697b5f8d4a70d6370697f4fc0fb03 https://github.com/numpy/numpy/commit/a276ca66f18697b5f8d4a70d6370697f4fc0fb03 Author: Charles Harris Date: 2015-11-01 (Sun, 01 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- Merge pull request #6607 from charris/backport-6606 DOC: Update 1.10.2 release notes. Compare: https://github.com/numpy/numpy/compare/b0eeb8c44870...a276ca66f186 From noreply at github.com Mon Nov 2 13:01:20 2015 From: noreply at github.com (GitHub) Date: Mon, 02 Nov 2015 10:01:20 -0800 Subject: [Numpy-svn] [numpy/numpy] 04e40f: MAINT: random: allow nonc==0 in noncentral_chisqua... Message-ID: <5637a4f09c624_369c3fe70c4552bc77e1@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 04e40fc5c21335f296009f40f4599b66dc099e6d https://github.com/numpy/numpy/commit/04e40fc5c21335f296009f40f4599b66dc099e6d Author: Evgeni Burovski Date: 2015-11-02 (Mon, 02 Nov 2015) Changed paths: M numpy/random/mtrand/distributions.c M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_random.py Log Message: ----------- MAINT: random: allow nonc==0 in noncentral_chisquare. Noncentral chi-square reduces to a central chi-square, so just defer to that. Commit: f2f61b84b78909aa8c8aa6574b643de937d3348b https://github.com/numpy/numpy/commit/f2f61b84b78909aa8c8aa6574b643de937d3348b Author: Charles Harris Date: 2015-11-02 (Mon, 02 Nov 2015) Changed paths: M numpy/random/mtrand/distributions.c M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_random.py Log Message: ----------- Merge pull request #6613 from ev-br/noncentral_chisq MAINT: random: allow nonc==0 in noncentral_chisquare. Compare: https://github.com/numpy/numpy/compare/80abf6ebf89c...f2f61b84b789 From noreply at github.com Mon Nov 2 14:38:56 2015 From: noreply at github.com (GitHub) Date: Mon, 02 Nov 2015 11:38:56 -0800 Subject: [Numpy-svn] [numpy/numpy] 6a09c8: BUG: Add choice and dirichlet to numpy.random.__al... Message-ID: <5637bbd03daf5_52b33fcf5043d2bc538df@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 6a09c85cae64417dec7d2e757bfe034673acd23d https://github.com/numpy/numpy/commit/6a09c85cae64417dec7d2e757bfe034673acd23d Author: Charles Harris Date: 2015-11-02 (Mon, 02 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/random/info.py Log Message: ----------- BUG: Add choice and dirichlet to numpy.random.__all__. Closes #6602. Commit: 2bc5cb9a19027704d13f06b02c0bbd07e6aebd29 https://github.com/numpy/numpy/commit/2bc5cb9a19027704d13f06b02c0bbd07e6aebd29 Author: Charles Harris Date: 2015-11-02 (Mon, 02 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/random/info.py Log Message: ----------- Merge pull request #6614 from charris/update-random-all BUG: Add choice and dirichlet to numpy.random.__all__. Compare: https://github.com/numpy/numpy/compare/f2f61b84b789...2bc5cb9a1902 From noreply at github.com Mon Nov 2 15:10:57 2015 From: noreply at github.com (GitHub) Date: Mon, 02 Nov 2015 12:10:57 -0800 Subject: [Numpy-svn] [numpy/numpy] 555b8c: BUG: Add choice and dirichlet to numpy.random.__al... Message-ID: <5637c351d0858_74eb3feb92b592b8104839@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 555b8c3442a2b4a3ba5f3dd0f78f8e36828ac79d https://github.com/numpy/numpy/commit/555b8c3442a2b4a3ba5f3dd0f78f8e36828ac79d Author: Charles Harris Date: 2015-11-02 (Mon, 02 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/random/info.py Log Message: ----------- BUG: Add choice and dirichlet to numpy.random.__all__. Closes #6602. Commit: 97cd681d5d6f35b5e5aa47cdea9bb589d919a270 https://github.com/numpy/numpy/commit/97cd681d5d6f35b5e5aa47cdea9bb589d919a270 Author: Charles Harris Date: 2015-11-02 (Mon, 02 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/random/info.py Log Message: ----------- Merge pull request #6615 from charris/update-random-all Backport 6614 Compare: https://github.com/numpy/numpy/compare/a276ca66f186...97cd681d5d6f From noreply at github.com Wed Nov 4 16:27:56 2015 From: noreply at github.com (GitHub) Date: Wed, 04 Nov 2015 13:27:56 -0800 Subject: [Numpy-svn] [numpy/numpy] cbfd93: BUG: Fix swig make_fortran function. Message-ID: <563a785cbbf43_20f73f9dd3fa129c850c4@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: cbfd9370ee273ef8f7694d1c689649e98d8ee08b https://github.com/numpy/numpy/commit/cbfd9370ee273ef8f7694d1c689649e98d8ee08b Author: Charles Harris Date: 2015-11-04 (Wed, 04 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M tools/swig/numpy.i Log Message: ----------- BUG: Fix swig make_fortran function. The function was calling PyArray_FromArray with NPY_FORTRANORDER instead of NPY_ARRAY_F_CONTIGUOUS. The first is of type NPY_ORDER and the second is a flag. Closes #6618. [ci skip] Commit: 615e66b19defa2d9fbfa94d6118fb6243ae90ffe https://github.com/numpy/numpy/commit/615e66b19defa2d9fbfa94d6118fb6243ae90ffe Author: Charles Harris Date: 2015-11-04 (Wed, 04 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M tools/swig/numpy.i Log Message: ----------- Merge pull request #6621 from charris/fix-swig-make_fortran BUG: Fix swig make_fortran function. Compare: https://github.com/numpy/numpy/compare/2bc5cb9a1902...615e66b19def From noreply at github.com Wed Nov 4 16:39:50 2015 From: noreply at github.com (GitHub) Date: Wed, 04 Nov 2015 13:39:50 -0800 Subject: [Numpy-svn] [numpy/numpy] ae3871: BUG: Fix swig make_fortran function. Message-ID: <563a7b266d717_220f3fbed2a472b89419e@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: ae38716103fec24b726c57dbe019e03a89ea923b https://github.com/numpy/numpy/commit/ae38716103fec24b726c57dbe019e03a89ea923b Author: Charles Harris Date: 2015-11-04 (Wed, 04 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M tools/swig/numpy.i Log Message: ----------- BUG: Fix swig make_fortran function. The function was calling PyArray_FromArray with NPY_FORTRANORDER instead of NPY_ARRAY_F_CONTIGUOUS. The first is of type NPY_ORDER and the second is a flag. Closes #6618. [ci skip] Commit: 9d4fbcffa6e3cfd1d0a50c93fc977d29a077700b https://github.com/numpy/numpy/commit/9d4fbcffa6e3cfd1d0a50c93fc977d29a077700b Author: Charles Harris Date: 2015-11-04 (Wed, 04 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M tools/swig/numpy.i Log Message: ----------- Merge pull request #6626 from charris/fix-swig-make_fortran Backport 6621 Compare: https://github.com/numpy/numpy/compare/97cd681d5d6f...9d4fbcffa6e3 From noreply at github.com Thu Nov 5 12:46:22 2015 From: noreply at github.com (GitHub) Date: Thu, 05 Nov 2015 09:46:22 -0800 Subject: [Numpy-svn] [numpy/numpy] 703684: BUG: Make allclose return python bool. Message-ID: <563b95eebbae5_1d523fcd21c7729c40958@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7036842f828fa41f95c333812bccccb3ae469f91 https://github.com/numpy/numpy/commit/7036842f828fa41f95c333812bccccb3ae469f91 Author: Charles Harris Date: 2015-11-04 (Wed, 04 Nov 2015) Changed paths: M numpy/core/numeric.py M numpy/core/tests/test_numeric.py Log Message: ----------- BUG: Make allclose return python bool. The function was returning an ndarray subtype when the at least one of the arguments was a subtype. Closes #6475. Commit: a2435ae57ae21fd547ba7f2114301094680f6cee https://github.com/numpy/numpy/commit/a2435ae57ae21fd547ba7f2114301094680f6cee Author: Charles Harris Date: 2015-11-04 (Wed, 04 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2 release notes for gh-6475 fix. Commit: cdef8d3e408899f7e0cc1037d358ece8d9cc3324 https://github.com/numpy/numpy/commit/cdef8d3e408899f7e0cc1037d358ece8d9cc3324 Author: Charles Harris Date: 2015-11-05 (Thu, 05 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/core/numeric.py M numpy/core/tests/test_numeric.py Log Message: ----------- Merge pull request #6628 from charris/fix-allclose-return-type BUG: Make allclose return python bool. Compare: https://github.com/numpy/numpy/compare/615e66b19def...cdef8d3e4088 From noreply at github.com Thu Nov 5 13:25:17 2015 From: noreply at github.com (GitHub) Date: Thu, 05 Nov 2015 10:25:17 -0800 Subject: [Numpy-svn] [numpy/numpy] 08682e: BUG: Make allclose return python bool. Message-ID: <563b9f0d60413_475a3fc3b15412bc34529@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 08682e78fed4c4bd4c7e90e3b92ae171f4ce1685 https://github.com/numpy/numpy/commit/08682e78fed4c4bd4c7e90e3b92ae171f4ce1685 Author: Charles Harris Date: 2015-11-05 (Thu, 05 Nov 2015) Changed paths: M numpy/core/numeric.py M numpy/core/tests/test_numeric.py Log Message: ----------- BUG: Make allclose return python bool. The function was returning an ndarray subtype when the at least one of the arguments was a subtype. Closes #6475. Commit: 333699ef53bdab3a23b02cb5f8116ba22a743cc7 https://github.com/numpy/numpy/commit/333699ef53bdab3a23b02cb5f8116ba22a743cc7 Author: Charles Harris Date: 2015-11-05 (Thu, 05 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2 release notes for gh-6475 fix. Commit: d2a20240514bd640de3bf2848c547d2daf910cc7 https://github.com/numpy/numpy/commit/d2a20240514bd640de3bf2848c547d2daf910cc7 Author: Charles Harris Date: 2015-11-05 (Thu, 05 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/core/numeric.py M numpy/core/tests/test_numeric.py Log Message: ----------- Merge pull request #6633 from charris/fix-allclose-return-type Backport 6628ix allclose return type Compare: https://github.com/numpy/numpy/compare/9d4fbcffa6e3...d2a20240514b From noreply at github.com Fri Nov 6 13:21:23 2015 From: noreply at github.com (GitHub) Date: Fri, 06 Nov 2015 10:21:23 -0800 Subject: [Numpy-svn] [numpy/numpy] c06726: ENH: make recarray.getitem return a recarray Message-ID: <563cefa3412c1_26563fbd2d5fd2bc302c7@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: c06726daa4d57893bc6132c3f311bd14ec6dc110 https://github.com/numpy/numpy/commit/c06726daa4d57893bc6132c3f311bd14ec6dc110 Author: Allan Haldane Date: 2015-11-06 (Fri, 06 Nov 2015) Changed paths: M numpy/core/records.py M numpy/core/tests/test_records.py Log Message: ----------- ENH: make recarray.getitem return a recarray recarray.__getitem__ should return a recarray when the returned value had structured type (it's documented to do so). Fixes #6641 Commit: 9cc7bc3ad4e3e95f76ec1036adf45990d204a756 https://github.com/numpy/numpy/commit/9cc7bc3ad4e3e95f76ec1036adf45990d204a756 Author: Charles Harris Date: 2015-11-06 (Fri, 06 Nov 2015) Changed paths: M numpy/core/records.py M numpy/core/tests/test_records.py Log Message: ----------- Merge pull request #6643 from ahaldane/recarray_getitem_returns_recarray ENH: make recarray.getitem return a recarray Compare: https://github.com/numpy/numpy/compare/cdef8d3e4088...9cc7bc3ad4e3 From noreply at github.com Fri Nov 6 13:50:58 2015 From: noreply at github.com (GitHub) Date: Fri, 06 Nov 2015 10:50:58 -0800 Subject: [Numpy-svn] [numpy/numpy] 81e50a: BUG: Fix memleak in _convert_from_dict Message-ID: <563cf692a1c74_6af13fb33fe6b2c0870e0@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 81e50a3416061726ccdef6033652a282ac4f01c4 https://github.com/numpy/numpy/commit/81e50a3416061726ccdef6033652a282ac4f01c4 Author: Allan Haldane Date: 2015-11-06 (Fri, 06 Nov 2015) Changed paths: M numpy/core/src/multiarray/descriptor.c Log Message: ----------- BUG: Fix memleak in _convert_from_dict Fixes a memleak introduced in #5920, where PyDict_GetItemString was replaced by PyMapping_GetItemString which returns a new ref. Fixes #6636 Commit: 7f53768b8ff70d4eaf03198c283a8eebdd9281ee https://github.com/numpy/numpy/commit/7f53768b8ff70d4eaf03198c283a8eebdd9281ee Author: Charles Harris Date: 2015-11-06 (Fri, 06 Nov 2015) Changed paths: M numpy/core/src/multiarray/descriptor.c Log Message: ----------- Merge pull request #6642 from ahaldane/fix_dict_descr_memleak BUG: Fix memleak in _convert_from_dict Compare: https://github.com/numpy/numpy/compare/9cc7bc3ad4e3...7f53768b8ff7 From noreply at github.com Fri Nov 6 14:09:28 2015 From: noreply at github.com (GitHub) Date: Fri, 06 Nov 2015 11:09:28 -0800 Subject: [Numpy-svn] [numpy/numpy] 727099: ENH: make recarray.getitem return a recarray Message-ID: <563cfae8f1ce6_60723f8b5275f2c0107853@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 727099562baa3782a718bb1447483b61fb8aa8f8 https://github.com/numpy/numpy/commit/727099562baa3782a718bb1447483b61fb8aa8f8 Author: Allan Haldane Date: 2015-11-06 (Fri, 06 Nov 2015) Changed paths: M numpy/core/records.py M numpy/core/tests/test_records.py Log Message: ----------- ENH: make recarray.getitem return a recarray recarray.__getitem__ should return a recarray when the returned value had structured type (it's documented to do so). Fixes #6641 Commit: 781a7c3fa602cda56ca9ffa6408b66cc6ba1fee3 https://github.com/numpy/numpy/commit/781a7c3fa602cda56ca9ffa6408b66cc6ba1fee3 Author: Charles Harris Date: 2015-11-06 (Fri, 06 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: update 1.10.2 release notes with backport #6643. Commit: 31d780dcbac54ae55da19cb56308b2cd359d42d6 https://github.com/numpy/numpy/commit/31d780dcbac54ae55da19cb56308b2cd359d42d6 Author: Charles Harris Date: 2015-11-06 (Fri, 06 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/core/records.py M numpy/core/tests/test_records.py Log Message: ----------- Merge pull request #6644 from charris/backport-6643 Backport 6643 Compare: https://github.com/numpy/numpy/compare/d2a20240514b...31d780dcbac5 From noreply at github.com Fri Nov 6 14:52:08 2015 From: noreply at github.com (GitHub) Date: Fri, 06 Nov 2015 11:52:08 -0800 Subject: [Numpy-svn] [numpy/numpy] 2cc197: BUG: Fix memleak in _convert_from_dict Message-ID: <563d04e8c76df_46d73fe4392af2bc127613@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 2cc1975aee3e3b55bb71b4ad29a5132a25350b40 https://github.com/numpy/numpy/commit/2cc1975aee3e3b55bb71b4ad29a5132a25350b40 Author: Allan Haldane Date: 2015-11-06 (Fri, 06 Nov 2015) Changed paths: M numpy/core/src/multiarray/descriptor.c Log Message: ----------- BUG: Fix memleak in _convert_from_dict Fixes a memleak introduced in #5920, where PyDict_GetItemString was replaced by PyMapping_GetItemString which returns a new ref. Fixes #6636 Commit: f24e6b7229d468f1b53c6728247293e26397cf8b https://github.com/numpy/numpy/commit/f24e6b7229d468f1b53c6728247293e26397cf8b Author: Charles Harris Date: 2015-11-06 (Fri, 06 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2 release notes for #6642. Commit: f6f2c5e5f1e2f9ba76bdecca9c49423e15192d86 https://github.com/numpy/numpy/commit/f6f2c5e5f1e2f9ba76bdecca9c49423e15192d86 Author: Charles Harris Date: 2015-11-06 (Fri, 06 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/core/src/multiarray/descriptor.c Log Message: ----------- Merge pull request #6645 from charris/backport-6642 Backport 6642 Compare: https://github.com/numpy/numpy/compare/31d780dcbac5...f6f2c5e5f1e2 From noreply at github.com Sat Nov 7 08:06:02 2015 From: noreply at github.com (GitHub) Date: Sat, 07 Nov 2015 05:06:02 -0800 Subject: [Numpy-svn] [numpy/numpy] bb0d99: MAINT: list litteral Message-ID: <563df73aebb4a_54043fe5263332b88924d@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: bb0d990e88a2120df2150e097dc17795474591e1 https://github.com/numpy/numpy/commit/bb0d990e88a2120df2150e097dc17795474591e1 Author: R?my L?one Date: 2015-11-07 (Sat, 07 Nov 2015) Changed paths: M numpy/_build_utils/waf.py M numpy/distutils/mingw32ccompiler.py M numpy/distutils/npy_pkg_config.py Log Message: ----------- MAINT: list litteral Commit: 37e9acd22977c9d3c77ec48c15232ca22bf92857 https://github.com/numpy/numpy/commit/37e9acd22977c9d3c77ec48c15232ca22bf92857 Author: Ralf Gommers Date: 2015-11-07 (Sat, 07 Nov 2015) Changed paths: M numpy/_build_utils/waf.py M numpy/distutils/mingw32ccompiler.py M numpy/distutils/npy_pkg_config.py Log Message: ----------- Merge pull request #6650 from sieben/list_litteral MAINT: use list litterals Compare: https://github.com/numpy/numpy/compare/7f53768b8ff7...37e9acd22977 From noreply at github.com Sat Nov 7 11:33:19 2015 From: noreply at github.com (GitHub) Date: Sat, 07 Nov 2015 08:33:19 -0800 Subject: [Numpy-svn] [numpy/numpy] a572f1: MAINT: Remove useless semicolon Message-ID: <563e27cfe0329_4423fd1f33a32c0356ee@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: a572f1b3e6e3ab4469e714098d9cea57361d52b0 https://github.com/numpy/numpy/commit/a572f1b3e6e3ab4469e714098d9cea57361d52b0 Author: R?my L?one Date: 2015-11-07 (Sat, 07 Nov 2015) Changed paths: M numpy/core/code_generators/generate_umath.py M numpy/linalg/linalg.py Log Message: ----------- MAINT: Remove useless semicolon Commit: 66873577afe02786fb5484051babd4485c7cb39c https://github.com/numpy/numpy/commit/66873577afe02786fb5484051babd4485c7cb39c Author: Jaime Date: 2015-11-07 (Sat, 07 Nov 2015) Changed paths: M numpy/core/code_generators/generate_umath.py M numpy/linalg/linalg.py Log Message: ----------- Merge pull request #6648 from sieben/useless_semicolon MAINT: Remove useless semicolon Compare: https://github.com/numpy/numpy/compare/37e9acd22977...66873577afe0 From noreply at github.com Sat Nov 7 11:47:42 2015 From: noreply at github.com (GitHub) Date: Sat, 07 Nov 2015 08:47:42 -0800 Subject: [Numpy-svn] [numpy/numpy] 013082: MAINT: remove _build_utils/waf.py. Message-ID: <563e2b2e1faa5_795e3fea5514529c951d@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 01308287f48dce9d92e613a59d0bcafa1aed8234 https://github.com/numpy/numpy/commit/01308287f48dce9d92e613a59d0bcafa1aed8234 Author: Ralf Gommers Date: 2015-11-07 (Sat, 07 Nov 2015) Changed paths: R numpy/_build_utils/waf.py Log Message: ----------- MAINT: remove _build_utils/waf.py. This was used by Bento, and support for Bento was removed in gh-6268. Commit: 3a41be170909854ff666828b76e0b6e065faf354 https://github.com/numpy/numpy/commit/3a41be170909854ff666828b76e0b6e065faf354 Author: Charles Harris Date: 2015-11-07 (Sat, 07 Nov 2015) Changed paths: R numpy/_build_utils/waf.py Log Message: ----------- Merge pull request #6652 from rgommers/remove-waf MAINT: remove _build_utils/waf.py. Compare: https://github.com/numpy/numpy/compare/66873577afe0...3a41be170909 From noreply at github.com Sat Nov 7 15:00:04 2015 From: noreply at github.com (GitHub) Date: Sat, 07 Nov 2015 12:00:04 -0800 Subject: [Numpy-svn] [numpy/numpy] def49b: MAINT: Dictionary litteral Message-ID: <563e58445068c_78b3ff4c63192a04913d@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: def49ba8fa3fe252c26c210d7730ed5c3a42c60e https://github.com/numpy/numpy/commit/def49ba8fa3fe252c26c210d7730ed5c3a42c60e Author: R?my L?one Date: 2015-11-07 (Sat, 07 Nov 2015) Changed paths: M numpy/core/setup.py M numpy/core/tests/test_item_selection.py M numpy/core/tests/test_umath.py M numpy/distutils/system_info.py M numpy/distutils/tests/test_system_info.py M numpy/f2py/capi_maps.py M numpy/lib/format.py Log Message: ----------- MAINT: Dictionary litteral Commit: 694f628bb9bb0da4a05d279b22cdb0987e2b3203 https://github.com/numpy/numpy/commit/694f628bb9bb0da4a05d279b22cdb0987e2b3203 Author: Jaime Date: 2015-11-07 (Sat, 07 Nov 2015) Changed paths: M numpy/core/setup.py M numpy/core/tests/test_item_selection.py M numpy/core/tests/test_umath.py M numpy/distutils/system_info.py M numpy/distutils/tests/test_system_info.py M numpy/f2py/capi_maps.py M numpy/lib/format.py Log Message: ----------- Merge pull request #6649 from sieben/dict_litteral MAINT: Dictionary litteral Compare: https://github.com/numpy/numpy/compare/3a41be170909...694f628bb9bb From noreply at github.com Tue Nov 10 20:51:40 2015 From: noreply at github.com (GitHub) Date: Tue, 10 Nov 2015 17:51:40 -0800 Subject: [Numpy-svn] [numpy/numpy] 1e17e2: STY: Minor style fixups. Message-ID: <56429f2c458c4_6c493f9855c492bc1065a3@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 1e17e2d7d176eb97157e3f613425ef746df56ed1 https://github.com/numpy/numpy/commit/1e17e2d7d176eb97157e3f613425ef746df56ed1 Author: Charles Harris Date: 2015-11-07 (Sat, 07 Nov 2015) Changed paths: M numpy/ma/core.py M numpy/ma/extras.py Log Message: ----------- STY: Minor style fixups. Fix some long lines and indentation in numpy/ma/core.py and numpy/ma/extras.py Commit: cf9f1907b99d06291ab16ad4d2105a871f56f7d9 https://github.com/numpy/numpy/commit/cf9f1907b99d06291ab16ad4d2105a871f56f7d9 Author: Charles Harris Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M numpy/ma/core.py M numpy/ma/extras.py Log Message: ----------- BUG, MAINT: Refactor ma.dot function and the corresponding method. The basic implementation of ma.dot is moved from the method to the function and the function itself is moved from extras.py to core.py on account of import complications. The mask_rowcols function from extras is also moved to core.py as it is needed by dot. For backwards compatibility, both functions are still exported in extras.__all__ and can be imported from that module. They are not included in part of core.__all__. An out parameter is also added to ma.dot. This PR also closes #6611. Commit: 3e82108f701b0ce6cbb9e16f5d7fd4c3cb27a97c https://github.com/numpy/numpy/commit/3e82108f701b0ce6cbb9e16f5d7fd4c3cb27a97c Author: Charles Harris Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M numpy/ma/tests/test_core.py M numpy/ma/tests/test_extras.py Log Message: ----------- TST: Add tests for ma.dot. Test that ma.dot always returns a masked array. Test basic that the new out parameter in ma.dot works. Commit: d70af67c14f3cc37d5c6786760a7b45eb6cd4e66 https://github.com/numpy/numpy/commit/d70af67c14f3cc37d5c6786760a7b45eb6cd4e66 Author: Charles Harris Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M numpy/ma/core.py M numpy/ma/extras.py M numpy/ma/tests/test_core.py M numpy/ma/tests/test_extras.py Log Message: ----------- Merge pull request #6653 from charris/fix-ma-dot Fix ma dot Compare: https://github.com/numpy/numpy/compare/694f628bb9bb...d70af67c14f3 From noreply at github.com Tue Nov 10 21:58:16 2015 From: noreply at github.com (GitHub) Date: Tue, 10 Nov 2015 18:58:16 -0800 Subject: [Numpy-svn] [numpy/numpy] d8d27c: STY: Minor style fixups. Message-ID: <5642aec8b175_3b133fb29047129c39158@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: d8d27c326f2c4a8b59ea0568c5b650f0c9caf8f6 https://github.com/numpy/numpy/commit/d8d27c326f2c4a8b59ea0568c5b650f0c9caf8f6 Author: Charles Harris Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M numpy/ma/core.py M numpy/ma/extras.py Log Message: ----------- STY: Minor style fixups. Fix some long lines and indentation in numpy/ma/core.py and numpy/ma/extras.py Commit: 14e9cebbd2c9c2847e71b3d6d59cfa636b4a3591 https://github.com/numpy/numpy/commit/14e9cebbd2c9c2847e71b3d6d59cfa636b4a3591 Author: Charles Harris Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M numpy/ma/core.py M numpy/ma/extras.py Log Message: ----------- BUG, MAINT: Refactor ma.dot function and the corresponding method. The basic implementation of ma.dot is moved from the method to the function and the function itself is moved from extras.py to core.py on account of import complications. The mask_rowcols function from extras is also moved to core.py as it is needed by dot. For backwards compatibility, both functions are still exported in extras.__all__ and can be imported from that module. They are not included in part of core.__all__. An out parameter is also added to ma.dot. This PR also closes #6611. Commit: 2f47d47dcd5e326b11380c1af7b3a33d2b94f0dd https://github.com/numpy/numpy/commit/2f47d47dcd5e326b11380c1af7b3a33d2b94f0dd Author: Charles Harris Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M numpy/ma/tests/test_core.py M numpy/ma/tests/test_extras.py Log Message: ----------- TST: Add tests for ma.dot. Test that ma.dot always returns a masked array. Test basic that the new out parameter in ma.dot works. Commit: 70a3fdffaa663f7713864d99735b7cf10588de0d https://github.com/numpy/numpy/commit/70a3fdffaa663f7713864d99735b7cf10588de0d Author: Charles Harris Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M numpy/ma/core.py M numpy/ma/extras.py M numpy/ma/tests/test_core.py M numpy/ma/tests/test_extras.py Log Message: ----------- Merge pull request #6663 from charris/fix-ma-dot Backport 6653. Compare: https://github.com/numpy/numpy/compare/f6f2c5e5f1e2...70a3fdffaa66 From noreply at github.com Tue Nov 10 23:51:33 2015 From: noreply at github.com (GitHub) Date: Tue, 10 Nov 2015 20:51:33 -0800 Subject: [Numpy-svn] [numpy/numpy] 08e14f: DOC: Update 1.10.2-notes for rc1 release. Message-ID: <5642c95571708_5a813f9d716592a078881@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 08e14f79eb8fb199e6c9319fe2034b004fa6b62b https://github.com/numpy/numpy/commit/08e14f79eb8fb199e6c9319fe2034b004fa6b62b Author: Charles Harris Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2-notes for rc1 release. Commit: 7b3327399061ec78fec94dbc3d4d31f84cf16b28 https://github.com/numpy/numpy/commit/7b3327399061ec78fec94dbc3d4d31f84cf16b28 Author: Charles Harris Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- Merge pull request #6664 from charris/update-1.10.2-notes DOC: Update 1.10.2-notes for rc1 release. Compare: https://github.com/numpy/numpy/compare/70a3fdffaa66...7b3327399061 From noreply at github.com Tue Nov 10 23:56:38 2015 From: noreply at github.com (GitHub) Date: Tue, 10 Nov 2015 20:56:38 -0800 Subject: [Numpy-svn] [numpy/numpy] 1e8e95: DOC: Sync 1.10.2 release notes with maintenance/1.... Message-ID: <5642ca869f01b_561c3f9a5ee632b8850fb@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 1e8e955719a58f4180526e16c3efeab9aac68747 https://github.com/numpy/numpy/commit/1e8e955719a58f4180526e16c3efeab9aac68747 Author: Charles Harris Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Sync 1.10.2 release notes with maintenance/1.10.x. [ci skip] Commit: 1d511429ac04d137c3d9ec7da9160bec7baa2829 https://github.com/numpy/numpy/commit/1d511429ac04d137c3d9ec7da9160bec7baa2829 Author: Charles Harris Date: 2015-11-10 (Tue, 10 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- Merge pull request #6665 from charris/sync-1.10.2-notes DOC: Sync 1.10.2 release notes with maintenance/1.10.x. Compare: https://github.com/numpy/numpy/compare/d70af67c14f3...1d511429ac04 From noreply at github.com Thu Nov 12 11:51:44 2015 From: noreply at github.com (GitHub) Date: Thu, 12 Nov 2015 08:51:44 -0800 Subject: [Numpy-svn] [numpy/numpy] 296b0b: MAINT: Typo in arrays.indexing.rst Issue#6670 Message-ID: <5644c3a02d993_a703f92efb3f29c5832a@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 296b0b78fd381116b0e26c14ed5caaf1c07575a8 https://github.com/numpy/numpy/commit/296b0b78fd381116b0e26c14ed5caaf1c07575a8 Author: floatingpointstack Date: 2015-11-12 (Thu, 12 Nov 2015) Changed paths: M doc/source/reference/arrays.indexing.rst Log Message: ----------- MAINT: Typo in arrays.indexing.rst Issue#6670 Commit: 76a75953e35b2916dfd88eaadf748c3333d0afd7 https://github.com/numpy/numpy/commit/76a75953e35b2916dfd88eaadf748c3333d0afd7 Author: Charles Harris Date: 2015-11-12 (Thu, 12 Nov 2015) Changed paths: M doc/source/reference/arrays.indexing.rst Log Message: ----------- Merge pull request #6671 from floatingpointstack/maint6670 MAINT: Typo in arrays.indexing.rst Issue#6670 Compare: https://github.com/numpy/numpy/compare/1d511429ac04...76a75953e35b From noreply at github.com Thu Nov 12 11:52:40 2015 From: noreply at github.com (GitHub) Date: Thu, 12 Nov 2015 08:52:40 -0800 Subject: [Numpy-svn] [numpy/numpy] 59fbef: BUG: ma.make_mask should always return nomask for ... Message-ID: <5644c3d8a46c9_17c83f9ebdd212c074750@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 59fbef0510c9a24d6f07ce80bb92fc57718ae95f https://github.com/numpy/numpy/commit/59fbef0510c9a24d6f07ce80bb92fc57718ae95f Author: Charles Harris Date: 2015-11-11 (Wed, 11 Nov 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- BUG: ma.make_mask should always return nomask for nomask argument. When the mask argument was nomask, commit 8da9c71 changed the behavior to depend on shrink=True as well, resulting in array(False) false being returned when shrink=True, which in turn led to bugs because nomask is a singleton and is detected by `mask is nomask`. That dectection fails when nomask is replaced by array(False). Closes #6667. Commit: 628d55c08f753ea8714d29a453587f901e5bcb80 https://github.com/numpy/numpy/commit/628d55c08f753ea8714d29a453587f901e5bcb80 Author: Charles Harris Date: 2015-11-11 (Wed, 11 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2-notes. Document fix to ma.make_mask. Commit: 4be9ce7bea3321af3c9896da98c751f03459fa38 https://github.com/numpy/numpy/commit/4be9ce7bea3321af3c9896da98c751f03459fa38 Author: Charles Harris Date: 2015-11-12 (Thu, 12 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6668 from charris/fix-make_mask BUG: ma.make_mask should always return nomask for nomask argument. Compare: https://github.com/numpy/numpy/compare/76a75953e35b...4be9ce7bea33 From noreply at github.com Thu Nov 12 12:53:44 2015 From: noreply at github.com (GitHub) Date: Thu, 12 Nov 2015 09:53:44 -0800 Subject: [Numpy-svn] [numpy/numpy] 925e53: BUG: ma.make_mask should always return nomask for ... Message-ID: <5644d22816a08_5dd53fc4ebd7f2b815745b@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 925e5311e1240d083617970118e7abc6f23ae99d https://github.com/numpy/numpy/commit/925e5311e1240d083617970118e7abc6f23ae99d Author: Charles Harris Date: 2015-11-12 (Thu, 12 Nov 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- BUG: ma.make_mask should always return nomask for nomask argument. When the mask argument was nomask, commit 8da9c71 changed the behavior to depend on shrink=True as well, resulting in array(False) false being returned when shrink=True, which in turn led to bugs because nomask is a singleton and is detected by `mask is nomask`. That dectection fails when nomask is replaced by array(False). Closes #6667. Commit: 0ab101421dd5afa6ff48517cbaaf48ca6473e855 https://github.com/numpy/numpy/commit/0ab101421dd5afa6ff48517cbaaf48ca6473e855 Author: Charles Harris Date: 2015-11-12 (Thu, 12 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst Log Message: ----------- DOC: Update 1.10.2-notes. Document fix to ma.make_mask. Commit: b984e84d9dc63058000527b37a4097ba64357092 https://github.com/numpy/numpy/commit/b984e84d9dc63058000527b37a4097ba64357092 Author: Charles Harris Date: 2015-11-12 (Thu, 12 Nov 2015) Changed paths: M doc/release/1.10.2-notes.rst M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6674 from charris/backport-6668 Backport 6668 Compare: https://github.com/numpy/numpy/compare/7b3327399061...b984e84d9dc6 From noreply at github.com Thu Nov 12 13:19:20 2015 From: noreply at github.com (GitHub) Date: Thu, 12 Nov 2015 10:19:20 -0800 Subject: [Numpy-svn] [numpy/numpy] 1392e2: DOC: document that assert_raises can be used as a ... Message-ID: <5644d828b6f9c_1dab3fb19afef2a0598a5@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 1392e2417150bdea473e3b29867c685c09b25447 https://github.com/numpy/numpy/commit/1392e2417150bdea473e3b29867c685c09b25447 Author: Evgeni Burovski Date: 2015-11-12 (Thu, 12 Nov 2015) Changed paths: M numpy/testing/utils.py Log Message: ----------- DOC: document that assert_raises can be used as a context manager Commit: f83d68bdac7bf0843f1601da25ac51f97983b1ef https://github.com/numpy/numpy/commit/f83d68bdac7bf0843f1601da25ac51f97983b1ef Author: Charles Harris Date: 2015-11-12 (Thu, 12 Nov 2015) Changed paths: M numpy/testing/utils.py Log Message: ----------- Merge pull request #6676 from ev-br/assert_raises DOC: document that assert_raises can be used as a context manager Compare: https://github.com/numpy/numpy/compare/4be9ce7bea33...f83d68bdac7b From noreply at github.com Thu Nov 12 15:41:14 2015 From: noreply at github.com (GitHub) Date: Thu, 12 Nov 2015 12:41:14 -0800 Subject: [Numpy-svn] [numpy/numpy] 90d1f8: REL: Release 1.10.2rc1 Message-ID: <5644f96a66c14_40e13ff61544d2c090722@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/tags/v1.10.2rc1 Home: https://github.com/numpy/numpy Commit: 90d1f8fb7e43a1c6664d6a1a05d01d9fafbfc7ea https://github.com/numpy/numpy/commit/90d1f8fb7e43a1c6664d6a1a05d01d9fafbfc7ea Author: Charles R Harris Date: 2015-11-12 (Thu, 12 Nov 2015) Changed paths: M pavement.py M setup.py Log Message: ----------- REL: Release 1.10.2rc1 From noreply at github.com Sat Nov 14 12:43:47 2015 From: noreply at github.com (GitHub) Date: Sat, 14 Nov 2015 09:43:47 -0800 Subject: [Numpy-svn] [numpy/numpy] eadc13: BUG: testing: fix a bug in assert_string_equal Message-ID: <564772d39beb3_5bd13fdc390fd2a0423f5@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: eadc135a5f2ab577748188770af66feafe87859d https://github.com/numpy/numpy/commit/eadc135a5f2ab577748188770af66feafe87859d Author: Pauli Virtanen Date: 2015-11-14 (Sat, 14 Nov 2015) Changed paths: M numpy/testing/tests/test_utils.py M numpy/testing/utils.py Log Message: ----------- BUG: testing: fix a bug in assert_string_equal Commit: 8ae543cb13769a0afa6e176898824db7fd992d27 https://github.com/numpy/numpy/commit/8ae543cb13769a0afa6e176898824db7fd992d27 Author: Charles Harris Date: 2015-11-14 (Sat, 14 Nov 2015) Changed paths: M numpy/testing/tests/test_utils.py M numpy/testing/utils.py Log Message: ----------- Merge pull request #6686 from pv/assert-fix BUG: testing: fix a bug in assert_string_equal Compare: https://github.com/numpy/numpy/compare/f83d68bdac7b...8ae543cb1376 From noreply at github.com Sun Nov 15 12:10:56 2015 From: noreply at github.com (GitHub) Date: Sun, 15 Nov 2015 09:10:56 -0800 Subject: [Numpy-svn] [numpy/numpy] 8efc87: ENH: reimplement may_share_memory in C to improve ... Message-ID: <5648bca02e61e_631d3ff2ac2f12bc842e5@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8efc87ec599c0b3eac4e63bea6eda9023d8ed96d https://github.com/numpy/numpy/commit/8efc87ec599c0b3eac4e63bea6eda9023d8ed96d Author: Pauli Virtanen Date: 2015-11-12 (Thu, 12 Nov 2015) Changed paths: M numpy/add_newdocs.py M numpy/core/function_base.py M numpy/core/numeric.py M numpy/core/src/multiarray/multiarraymodule.c Log Message: ----------- ENH: reimplement may_share_memory in C to improve its performance Commit: f2be3a2f822b3f5cf4b706cc2e28f0c169e6d995 https://github.com/numpy/numpy/commit/f2be3a2f822b3f5cf4b706cc2e28f0c169e6d995 Author: Pauli Virtanen Date: 2015-11-12 (Thu, 12 Nov 2015) Changed paths: M numpy/core/src/multiarray/multiarraymodule.c M numpy/core/tests/test_mem_overlap.py Log Message: ----------- BUG: don't use PyArray_Converter in may_share_memory The converter function has NPY_ARRAY_CARRAY enabled, which can cause false negatives for non-ndarray inputs. Fixes gh-5604 Commit: eeba2cbfa4c56447e36aad6d97e323ecfbdade56 https://github.com/numpy/numpy/commit/eeba2cbfa4c56447e36aad6d97e323ecfbdade56 Author: Julian Taylor Date: 2015-11-15 (Sun, 15 Nov 2015) Changed paths: M numpy/add_newdocs.py M numpy/core/function_base.py M numpy/core/numeric.py M numpy/core/src/multiarray/multiarraymodule.c M numpy/core/tests/test_mem_overlap.py Log Message: ----------- Merge pull request #6679 from pv/may-share-memory-fix Improve may_share_memory performance + fix non-ndarray inputs Compare: https://github.com/numpy/numpy/compare/8ae543cb1376...eeba2cbfa4c5 From noreply at github.com Sun Nov 15 14:49:23 2015 From: noreply at github.com (GitHub) Date: Sun, 15 Nov 2015 11:49:23 -0800 Subject: [Numpy-svn] [numpy/numpy] 35c2d9: add clarification of weights to documentation Message-ID: <5648e1c3a1e22_5d33f896fdb12c068526@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 35c2d9c9bb597be696005e325742fb8ae3e8f117 https://github.com/numpy/numpy/commit/35c2d9c9bb597be696005e325742fb8ae3e8f117 Author: Griffin Hosseinzadeh Date: 2015-11-13 (Fri, 13 Nov 2015) Changed paths: M numpy/lib/polynomial.py Log Message: ----------- add clarification of weights to documentation Commit: cf66c68c6a560c934f4a767934573c7f85dcb4ae https://github.com/numpy/numpy/commit/cf66c68c6a560c934f4a767934573c7f85dcb4ae Author: Charles Harris Date: 2015-11-15 (Sun, 15 Nov 2015) Changed paths: M numpy/lib/polynomial.py Log Message: ----------- Merge pull request #6681 from griffin-h/polyfit/weight_doc_update add clarification of weights to documentation for polyfit Compare: https://github.com/numpy/numpy/compare/eeba2cbfa4c5...cf66c68c6a56 From noreply at github.com Mon Nov 16 15:46:39 2015 From: noreply at github.com (GitHub) Date: Mon, 16 Nov 2015 12:46:39 -0800 Subject: [Numpy-svn] [numpy/numpy] 904da7: ENH: use prefetching for summation Message-ID: <564a40af9764e_65063fc84ace32c076685@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 904da7c202384c8a2a6ec88cece378f70e2dd956 https://github.com/numpy/numpy/commit/904da7c202384c8a2a6ec88cece378f70e2dd956 Author: Julian Taylor Date: 2015-11-16 (Mon, 16 Nov 2015) Changed paths: M numpy/core/include/numpy/npy_common.h M numpy/core/setup_common.py M numpy/core/src/umath/loops.c.src Log Message: ----------- ENH: use prefetching for summation It seems the small blocksizes (128) messes up the hardware prefetcher which would usually be able to work fine on this iteration pattern. Fix this by using software prefetching. Improves performance for large sums by 15%-30%. Tested on core2duo, xeon E5-4620, i5-3470 and AMD phenom II X4. Prefers __builtin_prefetch as that, unlike SSE2 _mm_prefetch, also works on capable non-x86 cpus. Commit: 6d3ec6596b9287604ab912873f5a35ed4a4222af https://github.com/numpy/numpy/commit/6d3ec6596b9287604ab912873f5a35ed4a4222af Author: Charles Harris Date: 2015-11-16 (Mon, 16 Nov 2015) Changed paths: M numpy/core/include/numpy/npy_common.h M numpy/core/setup_common.py M numpy/core/src/umath/loops.c.src Log Message: ----------- Merge pull request #6666 from juliantaylor/prefetch-sum ENH: use prefetching for summation Compare: https://github.com/numpy/numpy/compare/cf66c68c6a56...6d3ec6596b92 From noreply at github.com Mon Nov 16 16:04:09 2015 From: noreply at github.com (GitHub) Date: Mon, 16 Nov 2015 13:04:09 -0800 Subject: [Numpy-svn] [numpy/numpy] 70c505: ENH: testing: add SkipTest and KnownFailureExcepti... Message-ID: <564a44c9134b9_74ed3fae1736329c872d3@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 70c5052a9f07025c236033cf629506bb38eb6d97 https://github.com/numpy/numpy/commit/70c5052a9f07025c236033cf629506bb38eb6d97 Author: Evgeni Burovski Date: 2015-11-16 (Mon, 16 Nov 2015) Changed paths: M doc/release/1.11.0-notes.rst M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_print.py M numpy/f2py/tests/test_array_from_pyobj.py M numpy/f2py/tests/util.py M numpy/lib/tests/test__datasource.py M numpy/lib/tests/test_format.py M numpy/linalg/tests/test_linalg.py M numpy/testing/decorators.py M numpy/testing/noseclasses.py M numpy/testing/nosetester.py M numpy/testing/tests/test_decorators.py M numpy/testing/utils.py Log Message: ----------- ENH: testing: add SkipTest and KnownFailureException * use SkipTest in numpy tests instead of importing it from nose * add a KnownFailureException as an alias for KnownFailureTest (the former is preferred, but the latter is kept for backcompat) * rename the KnownFailure nose plugin into KnownFailurePlugin, and keep the old name for backcompat Commit: cbc14f0dcd1896b43630c75a62ccf0ac8847a3c0 https://github.com/numpy/numpy/commit/cbc14f0dcd1896b43630c75a62ccf0ac8847a3c0 Author: Charles Harris Date: 2015-11-16 (Mon, 16 Nov 2015) Changed paths: M doc/release/1.11.0-notes.rst M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_print.py M numpy/f2py/tests/test_array_from_pyobj.py M numpy/f2py/tests/util.py M numpy/lib/tests/test__datasource.py M numpy/lib/tests/test_format.py M numpy/linalg/tests/test_linalg.py M numpy/testing/decorators.py M numpy/testing/noseclasses.py M numpy/testing/nosetester.py M numpy/testing/tests/test_decorators.py M numpy/testing/utils.py Log Message: ----------- Merge pull request #6688 from ev-br/knownf expose KnownFailure and SkipTest exceptions in numpy.testing Compare: https://github.com/numpy/numpy/compare/6d3ec6596b92...cbc14f0dcd18 From noreply at github.com Tue Nov 17 14:50:11 2015 From: noreply at github.com (GitHub) Date: Tue, 17 Nov 2015 11:50:11 -0800 Subject: [Numpy-svn] [numpy/numpy] 46d2e8: BUG, MAINT: check that histogram range parameters ... Message-ID: <564b84f3a7147_15663fcc5952b2b8901c7@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 46d2e8356760e7549d0c80da9fe232177924183c https://github.com/numpy/numpy/commit/46d2e8356760e7549d0c80da9fe232177924183c Author: lzkelley Date: 2015-11-17 (Tue, 17 Nov 2015) Changed paths: M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- BUG, MAINT: check that histogram range parameters are finite, add tests to assure this. Improved some error-types. Commit: 4ee1ed5c0fa3a519c0e406e79b55f7bff0a3d360 https://github.com/numpy/numpy/commit/4ee1ed5c0fa3a519c0e406e79b55f7bff0a3d360 Author: Jaime Date: 2015-11-17 (Tue, 17 Nov 2015) Changed paths: M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- Merge pull request #6690 from lzkelley/hist_check_range_finite BUG, MAINT: check that histogram range parameters are finite. Compare: https://github.com/numpy/numpy/compare/cbc14f0dcd18...4ee1ed5c0fa3 From noreply at github.com Tue Nov 17 16:36:43 2015 From: noreply at github.com (GitHub) Date: Tue, 17 Nov 2015 13:36:43 -0800 Subject: [Numpy-svn] [numpy/numpy] e67156: BUG: fix removing tempdirs created during build Message-ID: <564b9deb4a884_44b53fd1f3dc32a0855b8@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: e67156e6e5149513cca722cf3f633135738d1df6 https://github.com/numpy/numpy/commit/e67156e6e5149513cca722cf3f633135738d1df6 Author: Julian Taylor Date: 2015-11-17 (Tue, 17 Nov 2015) Changed paths: M numpy/distutils/misc_util.py Log Message: ----------- BUG: fix removing tempdirs created during build Old code used the thread local storage wrong and also only deleted the directories created for the last parallel build section as the exit handler only knows about one of the directories. Fix by storing all created tempdirs to delete at exit. Commit: 93f1fe8bf83d2c6c9afa93947942caad4a3450a3 https://github.com/numpy/numpy/commit/93f1fe8bf83d2c6c9afa93947942caad4a3450a3 Author: Charles Harris Date: 2015-11-17 (Tue, 17 Nov 2015) Changed paths: M numpy/distutils/misc_util.py Log Message: ----------- Merge pull request #6695 from juliantaylor/tmpdir-leak BUG: fix removing tempdirs created during build Compare: https://github.com/numpy/numpy/compare/4ee1ed5c0fa3...93f1fe8bf83d From noreply at github.com Tue Nov 17 19:27:02 2015 From: noreply at github.com (GitHub) Date: Tue, 17 Nov 2015 16:27:02 -0800 Subject: [Numpy-svn] [numpy/numpy] 0b19e6: MAINT: fix spurious semicolon in macro definition ... Message-ID: <564bc5d6bde1a_47013fad1a93b2bc970f6@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 0b19e6828135f601630d9e715e9ed3ff3ba489c9 https://github.com/numpy/numpy/commit/0b19e6828135f601630d9e715e9ed3ff3ba489c9 Author: Cong Ma Date: 2015-11-18 (Wed, 18 Nov 2015) Changed paths: M numpy/core/include/numpy/ndarrayobject.h Log Message: ----------- MAINT: fix spurious semicolon in macro definition of PyArray_FROM_OT There is a spurious semicolon (;) character at the end of the macro definition of PyArray_FROM_OT, in the header file ndarrayobject.h. This prevents the macro from being used like a function, e.g. one can't write like if ( !(arr = PyArray_FROM_OT( ... )) ) ... ... After removing the semicolon, the macro can be used like a C function. Commit: 60d1bc626b73c45735f23bf7dd37539fa67d4ddd https://github.com/numpy/numpy/commit/60d1bc626b73c45735f23bf7dd37539fa67d4ddd Author: Julian Taylor Date: 2015-11-18 (Wed, 18 Nov 2015) Changed paths: M numpy/core/include/numpy/ndarrayobject.h Log Message: ----------- Merge pull request #6697 from congma/fix_pyarray_from_ot_macro_semicolon MAINT: fix spurious semicolon in macro definition of PyArray_FROM_OT Compare: https://github.com/numpy/numpy/compare/93f1fe8bf83d...60d1bc626b73 From noreply at github.com Wed Nov 18 03:29:30 2015 From: noreply at github.com (GitHub) Date: Wed, 18 Nov 2015 00:29:30 -0800 Subject: [Numpy-svn] [numpy/numpy] 8d0031: TST: test np.rint bug for large integers Message-ID: <564c36ea4e017_43a93ffd403572bc57141@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8d00317744444ed5b5fc4c454c9c0040c8999f1d https://github.com/numpy/numpy/commit/8d00317744444ed5b5fc4c454c9c0040c8999f1d Author: Matthew Brett Date: 2015-11-17 (Tue, 17 Nov 2015) Changed paths: M numpy/core/tests/test_umath.py Log Message: ----------- TST: test np.rint bug for large integers Test for https://github.com/numpy/numpy/issues/6685 Add test to remind packagers that they may need to fix or workaround this bug on some systems. Commit: d05d26a5b3fb9b1add1b9a13836d3c8a20ca1d9d https://github.com/numpy/numpy/commit/d05d26a5b3fb9b1add1b9a13836d3c8a20ca1d9d Author: Nathaniel J. Smith Date: 2015-11-18 (Wed, 18 Nov 2015) Changed paths: M numpy/core/tests/test_umath.py Log Message: ----------- Merge pull request #6698 from matthew-brett/test-rint-bug TST: test np.rint bug for large integers Compare: https://github.com/numpy/numpy/compare/60d1bc626b73...d05d26a5b3fb From noreply at github.com Thu Nov 19 18:33:00 2015 From: noreply at github.com (GitHub) Date: Thu, 19 Nov 2015 15:33:00 -0800 Subject: [Numpy-svn] [numpy/numpy] ef9625: TST: test np.rint bug for large integers Message-ID: <564e5c2c8786c_7a863fdfd2e012c045439@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: ef962536f263dc8bfeda45ae27cc498e8affefee https://github.com/numpy/numpy/commit/ef962536f263dc8bfeda45ae27cc498e8affefee Author: Matthew Brett Date: 2015-11-18 (Wed, 18 Nov 2015) Changed paths: M numpy/core/tests/test_umath.py Log Message: ----------- TST: test np.rint bug for large integers Test for https://github.com/numpy/numpy/issues/6685 Add test to remind packagers that they may need to fix or workaround this bug on some systems. Commit: dd095fafe5840a58c426b49940ae6abe454ac6ff https://github.com/numpy/numpy/commit/dd095fafe5840a58c426b49940ae6abe454ac6ff Author: Charles Harris Date: 2015-11-19 (Thu, 19 Nov 2015) Changed paths: M numpy/core/tests/test_umath.py Log Message: ----------- Merge pull request #6700 from matthew-brett/test-rint-bug-backport TST: backport of #6698 Compare: https://github.com/numpy/numpy/compare/b984e84d9dc6...dd095fafe584 From noreply at github.com Thu Nov 19 19:39:19 2015 From: noreply at github.com (GitHub) Date: Thu, 19 Nov 2015 16:39:19 -0800 Subject: [Numpy-svn] [numpy/numpy] 560e6e: MAINT: fix spurious semicolon in macro definition ... Message-ID: <564e6bb7261ea_6ffd3f94da9292b835364@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 560e6eab603db6f9dfaeca1f04dfc45be7763fb2 https://github.com/numpy/numpy/commit/560e6eab603db6f9dfaeca1f04dfc45be7763fb2 Author: Cong Ma Date: 2015-11-19 (Thu, 19 Nov 2015) Changed paths: M numpy/core/include/numpy/ndarrayobject.h Log Message: ----------- MAINT: fix spurious semicolon in macro definition of PyArray_FROM_OT There is a spurious semicolon (;) character at the end of the macro definition of PyArray_FROM_OT, in the header file ndarrayobject.h. This prevents the macro from being used like a function, e.g. one can't write like if ( !(arr = PyArray_FROM_OT( ... )) ) ... ... After removing the semicolon, the macro can be used like a C function. Commit: 040ff5b879f1b0637c1131138b81734808773850 https://github.com/numpy/numpy/commit/040ff5b879f1b0637c1131138b81734808773850 Author: Charles Harris Date: 2015-11-19 (Thu, 19 Nov 2015) Changed paths: M numpy/core/include/numpy/ndarrayobject.h Log Message: ----------- Merge pull request #6707 from charris/backport-6697 Backport 6697 Compare: https://github.com/numpy/numpy/compare/dd095fafe584...040ff5b879f1 From noreply at github.com Thu Nov 19 19:39:30 2015 From: noreply at github.com (GitHub) Date: Thu, 19 Nov 2015 16:39:30 -0800 Subject: [Numpy-svn] [numpy/numpy] af5e74: BUG: fix removing tempdirs created during build Message-ID: <564e6bc2bee96_21543fb6416412c039380@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: af5e749499cef73b0a5cfa159517df43d8b66728 https://github.com/numpy/numpy/commit/af5e749499cef73b0a5cfa159517df43d8b66728 Author: Julian Taylor Date: 2015-11-19 (Thu, 19 Nov 2015) Changed paths: M numpy/distutils/misc_util.py Log Message: ----------- BUG: fix removing tempdirs created during build Old code used the thread local storage wrong and also only deleted the directories created for the last parallel build section as the exit handler only knows about one of the directories. Fix by storing all created tempdirs to delete at exit. Commit: 381d67126b6ed1b4f36943bd147e208e8e57371b https://github.com/numpy/numpy/commit/381d67126b6ed1b4f36943bd147e208e8e57371b Author: Charles Harris Date: 2015-11-19 (Thu, 19 Nov 2015) Changed paths: M numpy/distutils/misc_util.py Log Message: ----------- Merge pull request #6706 from charris/backport-6695 Backport 6695 Compare: https://github.com/numpy/numpy/compare/040ff5b879f1...381d67126b6e From noreply at github.com Thu Nov 19 19:39:41 2015 From: noreply at github.com (GitHub) Date: Thu, 19 Nov 2015 16:39:41 -0800 Subject: [Numpy-svn] [numpy/numpy] 7cbdea: BUG: testing: fix a bug in assert_string_equal Message-ID: <564e6bcd8ace0_1b8c3fd8b8d952bc46850@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 7cbdea38a21d067c040d10c544ea7b7f6e6817f7 https://github.com/numpy/numpy/commit/7cbdea38a21d067c040d10c544ea7b7f6e6817f7 Author: Pauli Virtanen Date: 2015-11-19 (Thu, 19 Nov 2015) Changed paths: M numpy/testing/tests/test_utils.py M numpy/testing/utils.py Log Message: ----------- BUG: testing: fix a bug in assert_string_equal Commit: b684f41be59756b4660e01c2517dc732b603c382 https://github.com/numpy/numpy/commit/b684f41be59756b4660e01c2517dc732b603c382 Author: Charles Harris Date: 2015-11-19 (Thu, 19 Nov 2015) Changed paths: M numpy/testing/tests/test_utils.py M numpy/testing/utils.py Log Message: ----------- Merge pull request #6705 from charris/backport-6686 Backport 6686. Compare: https://github.com/numpy/numpy/compare/381d67126b6e...b684f41be597 From noreply at github.com Fri Nov 20 15:44:34 2015 From: noreply at github.com (GitHub) Date: Fri, 20 Nov 2015 12:44:34 -0800 Subject: [Numpy-svn] [numpy/numpy] 4d2d36: BLD: Enabled building with MSVC 14.0 Message-ID: <564f86324125_49723fe3c5f152a089674@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 4d2d360fd75301d4a3cb9914872f90fbef689667 https://github.com/numpy/numpy/commit/4d2d360fd75301d4a3cb9914872f90fbef689667 Author: Iceman9 Date: 2015-11-18 (Wed, 18 Nov 2015) Changed paths: M numpy/core/src/multiarray/mapping.c M numpy/core/src/private/mem_overlap.c Log Message: ----------- BLD: Enabled building with MSVC 14.0 Reallocated free functions in mem_overlap.c Cosmetics. Final indent. Added tests if pointer==NULL Fixed indent Fixed position of goto label. Fixed ISO C90 violation. Made simpler checks and removed redundant lines. Commit: 65aa24aa9e3c5da0a6ec1c2fc3d335d506a511df https://github.com/numpy/numpy/commit/65aa24aa9e3c5da0a6ec1c2fc3d335d506a511df Author: Charles Harris Date: 2015-11-20 (Fri, 20 Nov 2015) Changed paths: M numpy/core/src/multiarray/mapping.c M numpy/core/src/private/mem_overlap.c Log Message: ----------- Merge pull request #6662 from Iceman9/simicg Changed lines for successfull MSVC 14.0 compiling Compare: https://github.com/numpy/numpy/compare/d05d26a5b3fb...65aa24aa9e3c From noreply at github.com Tue Nov 24 10:30:14 2015 From: noreply at github.com (GitHub) Date: Tue, 24 Nov 2015 07:30:14 -0800 Subject: [Numpy-svn] [numpy/numpy] 6fd06c: BUG: fix pointer arithmetic in _get_field_view Message-ID: <56548286e9b9c_5e863fe607d752bc921c6@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 6fd06c7a2e6ef37604a99159cc8d1517aec95652 https://github.com/numpy/numpy/commit/6fd06c7a2e6ef37604a99159cc8d1517aec95652 Author: Allan Haldane Date: 2015-11-21 (Sat, 21 Nov 2015) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- BUG: fix pointer arithmetic in _get_field_view Should have used PyArray_BYTES, not PyArray_DATA Fixes #6701 Commit: 2a47ffc477fc72e2bc59341e1debac2096d10499 https://github.com/numpy/numpy/commit/2a47ffc477fc72e2bc59341e1debac2096d10499 Author: Allan Haldane Date: 2015-11-23 (Mon, 23 Nov 2015) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- MAINT: fix casting warnings in mapping.c Commit: 239917609779503d0b4071d59d5b780df6e5b575 https://github.com/numpy/numpy/commit/239917609779503d0b4071d59d5b780df6e5b575 Author: Charles Harris Date: 2015-11-24 (Tue, 24 Nov 2015) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- Merge pull request #6702 from ahaldane/fix_getfield_p_arith BUG: fix pointer arithmetic in _get_field_view Compare: https://github.com/numpy/numpy/compare/65aa24aa9e3c...239917609779 From noreply at github.com Tue Nov 24 10:56:02 2015 From: noreply at github.com (GitHub) Date: Tue, 24 Nov 2015 07:56:02 -0800 Subject: [Numpy-svn] [numpy/numpy] a17815: BUG: fix pointer arithmetic in _get_field_view Message-ID: <5654889270dad_73923fca604ef2b8120112@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: a17815d190a15e39306b3243f6802b09c192d39b https://github.com/numpy/numpy/commit/a17815d190a15e39306b3243f6802b09c192d39b Author: Allan Haldane Date: 2015-11-19 (Thu, 19 Nov 2015) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- BUG: fix pointer arithmetic in _get_field_view Should have used PyArray_BYTES, not PyArray_DATA Commit: 340f7795cbb83c11d68efbf1b785401bd2924d85 https://github.com/numpy/numpy/commit/340f7795cbb83c11d68efbf1b785401bd2924d85 Author: Allan Haldane Date: 2015-11-23 (Mon, 23 Nov 2015) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- MAINT: fix casting warnings in mapping.c Commit: 76db1ab4edef69e310426dccf95c15212b1ba4a6 https://github.com/numpy/numpy/commit/76db1ab4edef69e310426dccf95c15212b1ba4a6 Author: Charles Harris Date: 2015-11-24 (Tue, 24 Nov 2015) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- Merge pull request #6703 from ahaldane/fix_getfield_p_arith1.10 Backport 6702 Compare: https://github.com/numpy/numpy/compare/b684f41be597...76db1ab4edef From noreply at github.com Tue Nov 24 16:11:25 2015 From: noreply at github.com (GitHub) Date: Tue, 24 Nov 2015 13:11:25 -0800 Subject: [Numpy-svn] [numpy/numpy] e131ba: MAINT: enable Werror=vla in travis Message-ID: <5654d27de2373_27113fd6975bd29c47988@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: e131ba4464a2d2d6df9cb6f95b147514a14e0597 https://github.com/numpy/numpy/commit/e131ba4464a2d2d6df9cb6f95b147514a14e0597 Author: Julian Taylor Date: 2015-11-24 (Tue, 24 Nov 2015) Changed paths: M tools/travis-test.sh Log Message: ----------- MAINT: enable Werror=vla in travis avoids issues with stone age compilers like MSVC Commit: d94043f0fb93985fd4302eae9fcdca2d79239908 https://github.com/numpy/numpy/commit/d94043f0fb93985fd4302eae9fcdca2d79239908 Author: Julian Taylor Date: 2015-11-24 (Tue, 24 Nov 2015) Changed paths: M tools/travis-test.sh Log Message: ----------- Merge pull request #6302 from juliantaylor/werrvla MAINT: enable Werror=vla in travis Compare: https://github.com/numpy/numpy/compare/239917609779...d94043f0fb93 From noreply at github.com Wed Nov 25 13:53:47 2015 From: noreply at github.com (GitHub) Date: Wed, 25 Nov 2015 10:53:47 -0800 Subject: [Numpy-svn] [numpy/numpy] 4e276a: BUG: Fix for #6719 Message-ID: <565603bbc4567_53243fb24f2772c0393ee@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 4e276acb5b5081ac9b5f54f1d0a60bf3473572b5 https://github.com/numpy/numpy/commit/4e276acb5b5081ac9b5f54f1d0a60bf3473572b5 Author: Gerrit Holl Date: 2015-11-25 (Wed, 25 Nov 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- BUG: Fix for #6719 numpy/random/mtrand/mtrand.pyx contains a line where cython fails to compile, complaining ?Pythonic division not allowed without gil?. By running this code segment under cdivision(True), this problem is avoided. Commit: e711c9589ea60ac6ca78096906760925a9e216e3 https://github.com/numpy/numpy/commit/e711c9589ea60ac6ca78096906760925a9e216e3 Author: Charles Harris Date: 2015-11-25 (Wed, 25 Nov 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- Merge pull request #6721 from gerritholl/circumvent-cython-problem-locally BUG: Fix for #6719 Compare: https://github.com/numpy/numpy/compare/d94043f0fb93...e711c9589ea6 From noreply at github.com Wed Nov 25 17:12:53 2015 From: noreply at github.com (GitHub) Date: Wed, 25 Nov 2015 14:12:53 -0800 Subject: [Numpy-svn] [numpy/numpy] a083c9: BUG: Readd fallback CBLAS detection on linux. Message-ID: <56563265433f4_3bf53fc2c664b2c096625@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: a083c9e358d831260b100f81953b0935313c689b https://github.com/numpy/numpy/commit/a083c9e358d831260b100f81953b0935313c689b Author: Charles Harris Date: 2015-11-25 (Wed, 25 Nov 2015) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- BUG: Readd fallback CBLAS detection on linux. Fallback CBLAS detection was removed in gh-6183 because it led to problems on windows when mingw was used with python compiled with msvc but msvc was not installed. As a result of that fix, CBLAS detection failed for some Linux installations. The solution here is to add back the fallback detection but make it specific to non-windows platforms. Closes #6675. Commit: b9a06adca048cd5884f5862c08821852b1c48da8 https://github.com/numpy/numpy/commit/b9a06adca048cd5884f5862c08821852b1c48da8 Author: Julian Taylor Date: 2015-11-25 (Wed, 25 Nov 2015) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- Merge pull request #6717 from charris/fix-gh-6675 BUG: Readd fallback CBLAS detection on linux. Compare: https://github.com/numpy/numpy/compare/e711c9589ea6...b9a06adca048 From noreply at github.com Wed Nov 25 18:12:00 2015 From: noreply at github.com (GitHub) Date: Wed, 25 Nov 2015 15:12:00 -0800 Subject: [Numpy-svn] [numpy/numpy] 104fd7: BUG: Readd fallback CBLAS detection on linux. Message-ID: <5656404065e57_5d73ff2c34692b889897@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 104fd782fa6fa67329a9182f31645d855dd028ba https://github.com/numpy/numpy/commit/104fd782fa6fa67329a9182f31645d855dd028ba Author: Charles Harris Date: 2015-11-25 (Wed, 25 Nov 2015) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- BUG: Readd fallback CBLAS detection on linux. Fallback CBLAS detection was removed in gh-6183 because it led to problems on windows when mingw was used with python compiled with msvc but msvc was not installed. As a result of that fix, CBLAS detection failed for some Linux installations. The solution here is to add back the fallback detection but make it specific to non-windows platforms. Closes #6675. Commit: 23fe49503a6c4d0277961986c1b1da5302476a67 https://github.com/numpy/numpy/commit/23fe49503a6c4d0277961986c1b1da5302476a67 Author: Charles Harris Date: 2015-11-25 (Wed, 25 Nov 2015) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- Merge pull request #6730 from charris/backport-6717 Backport 6717 Compare: https://github.com/numpy/numpy/compare/76db1ab4edef...23fe49503a6c From noreply at github.com Wed Nov 25 19:00:19 2015 From: noreply at github.com (GitHub) Date: Wed, 25 Nov 2015 16:00:19 -0800 Subject: [Numpy-svn] [numpy/numpy] 8028a7: added extra line in the tile help doc to outline a... Message-ID: <56564b931199d_6fb13ffc3a0f72bc33322@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8028a7715da5d6c9b2c5586a3055fdb0ba81dab7 https://github.com/numpy/numpy/commit/8028a7715da5d6c9b2c5586a3055fdb0ba81dab7 Author: Julien Lhermitte Date: 2015-11-04 (Wed, 04 Nov 2015) Changed paths: M numpy/lib/shape_base.py Log Message: ----------- added extra line in the tile help doc to outline a general repeat, commonly used Commit: 4ac1740eaefa89b495171d8a5862ae2d1cacc5da https://github.com/numpy/numpy/commit/4ac1740eaefa89b495171d8a5862ae2d1cacc5da Author: Julien Lhermitte Date: 2015-11-05 (Thu, 05 Nov 2015) Changed paths: M numpy/lib/shape_base.py Log Message: ----------- added more text Commit: 53e658f80da6a50d371c74f49d3bb81fabf20d1b https://github.com/numpy/numpy/commit/53e658f80da6a50d371c74f49d3bb81fabf20d1b Author: Charles Harris Date: 2015-11-25 (Wed, 25 Nov 2015) Changed paths: M numpy/lib/shape_base.py Log Message: ----------- Merge pull request #6627 from ordirules/master added extra line in the tile help doc to outline a general repeat, co? Compare: https://github.com/numpy/numpy/compare/b9a06adca048...53e658f80da6 From noreply at github.com Thu Nov 26 10:55:09 2015 From: noreply at github.com (GitHub) Date: Thu, 26 Nov 2015 07:55:09 -0800 Subject: [Numpy-svn] [numpy/numpy] 9705c7: MAINT: Localize variables only used with relaxed s... Message-ID: <56572b5d5d206_32813fdf33c812a07495@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 9705c743ab340b13ab6e1ea7ff1dfb3e76299c4a https://github.com/numpy/numpy/commit/9705c743ab340b13ab6e1ea7ff1dfb3e76299c4a Author: Charles Harris Date: 2015-11-25 (Wed, 25 Nov 2015) Changed paths: M numpy/core/src/multiarray/buffer.c Log Message: ----------- MAINT: Localize variables only used with relaxed stride checking. The varibles in question lead to unused variable warnings when not compiling with NPY_RELAXED_STRIDE_CHECKING=1 resulting in failing travis tests. Commit: 6711d17a529c79b71397b48167b009f8dbf41985 https://github.com/numpy/numpy/commit/6711d17a529c79b71397b48167b009f8dbf41985 Author: Charles Harris Date: 2015-11-25 (Wed, 25 Nov 2015) Changed paths: M tools/travis-test.sh Log Message: ----------- TST: Fix travis-ci test for numpy wheels. Commit: dac0e5d70e397857ea7d6cf10975de582003a82f https://github.com/numpy/numpy/commit/dac0e5d70e397857ea7d6cf10975de582003a82f Author: Charles Harris Date: 2015-11-26 (Thu, 26 Nov 2015) Changed paths: M numpy/core/src/multiarray/buffer.c M tools/travis-test.sh Log Message: ----------- Merge pull request #6726 from charris/fix-bugs-exposed-by-relaxed-stride-rollback Fix bugs exposed by relaxed stride rollback Compare: https://github.com/numpy/numpy/compare/53e658f80da6...dac0e5d70e39 From noreply at github.com Thu Nov 26 10:55:30 2015 From: noreply at github.com (GitHub) Date: Thu, 26 Nov 2015 07:55:30 -0800 Subject: [Numpy-svn] [numpy/numpy] 43e7c8: MAINT: Localize variables only used with relaxed s... Message-ID: <56572b72a3ec_45ee3fb3d5b592bc105753@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 43e7c8a044c2f01444d4b145cd67b0573fb8db1e https://github.com/numpy/numpy/commit/43e7c8a044c2f01444d4b145cd67b0573fb8db1e Author: Charles Harris Date: 2015-11-25 (Wed, 25 Nov 2015) Changed paths: M numpy/core/src/multiarray/buffer.c Log Message: ----------- MAINT: Localize variables only used with relaxed stride checking. The variables in question lead to unused variable warnings when not compiling with NPY_RELAXED_STRIDE_CHECKING=1 resulting in failing travis tests. Commit: 4f38328a4a29d7a8b30db757ef6b9a2835e585af https://github.com/numpy/numpy/commit/4f38328a4a29d7a8b30db757ef6b9a2835e585af Author: Charles Harris Date: 2015-11-25 (Wed, 25 Nov 2015) Changed paths: M tools/travis-test.sh Log Message: ----------- TST: Fix travis-ci test for numpy wheels. Commit: 408d994abb4ec5935c11496fc8322c00bfbb3481 https://github.com/numpy/numpy/commit/408d994abb4ec5935c11496fc8322c00bfbb3481 Author: Charles Harris Date: 2015-11-26 (Thu, 26 Nov 2015) Changed paths: M numpy/core/src/multiarray/buffer.c M tools/travis-test.sh Log Message: ----------- Merge pull request #6731 from charris/backport-6726 Backport 6726 Compare: https://github.com/numpy/numpy/compare/23fe49503a6c...408d994abb4e From noreply at github.com Thu Nov 26 11:42:28 2015 From: noreply at github.com (GitHub) Date: Thu, 26 Nov 2015 08:42:28 -0800 Subject: [Numpy-svn] [numpy/numpy] da2df7: MAINT: Make no relaxed stride checking the default... Message-ID: <565736744ecd6_560e3ff3e11ef2c01526c4@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: da2df774d13d424d3823c65d77bbc1859debc921 https://github.com/numpy/numpy/commit/da2df774d13d424d3823c65d77bbc1859debc921 Author: Charles Harris Date: 2015-11-26 (Thu, 26 Nov 2015) Changed paths: M .travis.yml M numpy/core/bscript M numpy/core/setup.py M tools/test-installed-numpy.py Log Message: ----------- MAINT: Make no relaxed stride checking the default for 1.10. Because of various back compatibility problems with relaxed stride checking, make NPY_RELAXED_STRIDE_CHECKING=0 the default for the v1.10.2 release. See pull request #6684 and issue #6678 for discussion. Commit: 1ac576178e3740e312af092945fdc3d4a4698f04 https://github.com/numpy/numpy/commit/1ac576178e3740e312af092945fdc3d4a4698f04 Author: Charles Harris Date: 2015-11-26 (Thu, 26 Nov 2015) Changed paths: M .travis.yml M numpy/core/bscript M numpy/core/setup.py M tools/test-installed-numpy.py Log Message: ----------- Merge pull request #6735 from charris/undo-relaxed-strides-default MAINT: Make no relaxed stride checking the default for 1.10. Compare: https://github.com/numpy/numpy/compare/408d994abb4e...1ac576178e37 From noreply at github.com Thu Nov 26 12:05:50 2015 From: noreply at github.com (GitHub) Date: Thu, 26 Nov 2015 09:05:50 -0800 Subject: [Numpy-svn] [numpy/numpy] 2c097d: MAINT: Fix typo in swig.interface-file.rst Message-ID: <56573bee88325_3e563fd6730752b81462e3@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 2c097dcf09b7646200d59fcc28998dc01cd86223 https://github.com/numpy/numpy/commit/2c097dcf09b7646200d59fcc28998dc01cd86223 Author: tosh1ki Date: 2015-11-27 (Fri, 27 Nov 2015) Changed paths: M doc/source/reference/swig.interface-file.rst Log Message: ----------- MAINT: Fix typo in swig.interface-file.rst Commit: af416f31d3e8e566f6b33207f90d5d70addc4bc3 https://github.com/numpy/numpy/commit/af416f31d3e8e566f6b33207f90d5d70addc4bc3 Author: Charles Harris Date: 2015-11-26 (Thu, 26 Nov 2015) Changed paths: M doc/source/reference/swig.interface-file.rst Log Message: ----------- Merge pull request #6737 from tosh1ki/fix_typo MAINT: Fix typo in swig.interface-file.rst Compare: https://github.com/numpy/numpy/compare/1ac576178e37...af416f31d3e8 From noreply at github.com Thu Nov 26 12:06:23 2015 From: noreply at github.com (GitHub) Date: Thu, 26 Nov 2015 09:06:23 -0800 Subject: [Numpy-svn] [numpy/numpy] 3f743d: BUG: Fix for #6719 Message-ID: <56573c0f16b00_2f9b3fa819eb72a0165893@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 3f743d25f6dfbce0a07c72ef76930d9d92f33a9b https://github.com/numpy/numpy/commit/3f743d25f6dfbce0a07c72ef76930d9d92f33a9b Author: Gerrit Holl Date: 2015-11-26 (Thu, 26 Nov 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- BUG: Fix for #6719 numpy/random/mtrand/mtrand.pyx contains a line where cython fails to compile, complaining ?Pythonic division not allowed without gil?. By running this code segment under cdivision(True), this problem is avoided. Commit: 52e75940bc580c47ef10698084ee97e264b65708 https://github.com/numpy/numpy/commit/52e75940bc580c47ef10698084ee97e264b65708 Author: Charles Harris Date: 2015-11-26 (Thu, 26 Nov 2015) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- Merge pull request #6736 from charris/backport-6721 Backport 6721 Compare: https://github.com/numpy/numpy/compare/af416f31d3e8...52e75940bc58 From noreply at github.com Thu Nov 26 12:24:57 2015 From: noreply at github.com (GitHub) Date: Thu, 26 Nov 2015 09:24:57 -0800 Subject: [Numpy-svn] [numpy/numpy] 3ef672: BUG: Fixed string representation of mvoid with mul... Message-ID: <5657406959e46_5deb3f9c95b052b8827ed@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.10.x Home: https://github.com/numpy/numpy Commit: 3ef672e28e74445cf0460c539195e4de4cb79099 https://github.com/numpy/numpy/commit/3ef672e28e74445cf0460c539195e4de4cb79099 Author: Thomas Robitaille Date: 2015-11-26 (Thu, 26 Nov 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- BUG: Fixed string representation of mvoid with multi-dimensional columns This fixes a bug that caused the string representation of masked structured array rows with multi-dimensional columns to fail (numpy/numpy#6019), and includes a regression test. Since __repr__ suffered from a similar bug, and since previously __repr__ returned the same as __str__ for mvoid, we now set __repr__ to reference the same method as __str__. Commit: 1f40bb0e5251a74af254d2d02aa01d40d660cfdc https://github.com/numpy/numpy/commit/1f40bb0e5251a74af254d2d02aa01d40d660cfdc Author: Charles Harris Date: 2015-11-26 (Thu, 26 Nov 2015) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6738 from charris/backport-6094 Backport 6094 Compare: https://github.com/numpy/numpy/compare/52e75940bc58...1f40bb0e5251