From noreply at github.com Fri Sep 2 04:20:26 2016 From: noreply at github.com (GitHub) Date: Fri, 02 Sep 2016 01:20:26 -0700 Subject: [Numpy-svn] [numpy/numpy] fd298a: ENH: add inplace cases to fast ufunc loop macros Message-ID: <57c9364a59acf_73053fccdce25138520f4@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: fd298a341ddeb05c471c8dfc16f4cc641d08f8a7 https://github.com/numpy/numpy/commit/fd298a341ddeb05c471c8dfc16f4cc641d08f8a7 Author: Julian Taylor Date: 2016-09-01 (Thu, 01 Sep 2016) Changed paths: M benchmarks/benchmarks/bench_ufunc.py M numpy/core/src/umath/loops.c.src M numpy/core/tests/test_scalarmath.py Log Message: ----------- ENH: add inplace cases to fast ufunc loop macros Both gcc and clang don't automatically specialize the inplace case, so add extra conditions to the loop macros to get the compilers to emit decent code. Without them inplace code ends up much slower than the out of place code. Commit: d555a0ad0f1191daf8ae83e10933da5556b2510e https://github.com/numpy/numpy/commit/d555a0ad0f1191daf8ae83e10933da5556b2510e Author: Julian Taylor Date: 2016-09-01 (Thu, 01 Sep 2016) Changed paths: M numpy/core/tests/test_scalarmath.py M numpy/core/tests/test_umath.py M numpy/testing/utils.py Log Message: ----------- TST: fix inplace case of alignment data generator Due to the lambdas used it didn't actually generate inplace cases. Fix a few tests that now break due to assuming that the cases are always out of place. Also update some numbers to make it more likely to find issues like loading from wrong array. Commit: 8eedd3e911b7e3f5f35961871ddb8ee1559d4225 https://github.com/numpy/numpy/commit/8eedd3e911b7e3f5f35961871ddb8ee1559d4225 Author: seberg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M benchmarks/benchmarks/bench_ufunc.py M numpy/core/src/umath/loops.c.src M numpy/core/tests/test_scalarmath.py M numpy/core/tests/test_umath.py M numpy/testing/utils.py Log Message: ----------- Merge pull request #7999 from juliantaylor/inplace-opt ENH: add inplace cases to fast ufunc loop macros Compare: https://github.com/numpy/numpy/compare/a93d9f7a9735...8eedd3e911b7 From noreply at github.com Fri Sep 2 10:12:03 2016 From: noreply at github.com (GitHub) Date: Fri, 02 Sep 2016 07:12:03 -0700 Subject: [Numpy-svn] [numpy/numpy] 29a45e: MAINT: Simplify deprecation test decorator Message-ID: <57c988b373bbd_70393fb7efffb1305682a@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 29a45efa15cf3992ab01b1535d51189319a7592d https://github.com/numpy/numpy/commit/29a45efa15cf3992ab01b1535d51189319a7592d Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/testing/decorators.py M numpy/testing/tests/test_decorators.py Log Message: ----------- MAINT: Simplify deprecation test decorator Also modify the corresponding test to suppress the non Deprecation warnings created to test specificity. Commit: 968507bdfb4467d5ec6e3b6999a5717100782c3c https://github.com/numpy/numpy/commit/968507bdfb4467d5ec6e3b6999a5717100782c3c Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M doc/release/1.12.0-notes.rst M numpy/testing/tests/test_utils.py M numpy/testing/utils.py Log Message: ----------- ENH: Make warning testing context managers more specific This means that warnings of different origin then the one tested for behave normally. If the normal behaviour is to igonre them this might decrease specificity in rare cases. In most cases the specificity will be slightly higher. Commit: 86b0a5e9c58160bad818ba3a0a6faf38f5ac4d09 https://github.com/numpy/numpy/commit/86b0a5e9c58160bad818ba3a0a6faf38f5ac4d09 Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/core/arrayprint.py M numpy/core/tests/test_datetime.py M numpy/ma/testutils.py M numpy/testing/utils.py Log Message: ----------- BUG: Suppress common NaT warnings Printing of datetime arrays used to cause warning due to comparison warnings in NaT. This is circumvented by using views to integer values. Part of this should be simplified when the deprecation is over. Also fixes a bug with non-native byteorder. Commit: 78d7cc4f3422826954b067a5b030f0807f85f294 https://github.com/numpy/numpy/commit/78d7cc4f3422826954b067a5b030f0807f85f294 Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- MAINT: Add missing teardown in deprecation test case Commit: c1ddf841f6a48248b946a990ae750505b8b91686 https://github.com/numpy/numpy/commit/c1ddf841f6a48248b946a990ae750505b8b91686 Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/lib/nanfunctions.py M numpy/lib/tests/test_nanfunctions.py M numpy/lib/tests/test_twodim_base.py Log Message: ----------- ENH: Remove warning ignoring from nanfuncs Comment mentions a speedup, but it seems unsure why it should be there. Instead use an error state in divide_by_count. Some extra complex warnings had to be ignored (but those seemed correct) Commit: 308161c80f4450f05f8399343034308bd18b4e1e https://github.com/numpy/numpy/commit/308161c80f4450f05f8399343034308bd18b4e1e Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/core/tests/test_einsum.py M numpy/core/tests/test_function_base.py M numpy/core/tests/test_memmap.py M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_nditer.py M numpy/core/tests/test_numeric.py M numpy/core/tests/test_regression.py M numpy/core/tests/test_scalarmath.py M numpy/core/tests/test_umath.py M numpy/lib/tests/test_function_base.py M numpy/lib/tests/test_io.py M numpy/linalg/tests/test_linalg.py M numpy/ma/tests/test_core.py M numpy/ma/tests/test_extras.py M numpy/ma/tests/test_mrecords.py M numpy/ma/tests/test_old_ma.py M numpy/ma/tests/test_regression.py M numpy/random/tests/test_random.py Log Message: ----------- TST: Use new warnings context manager in all tests In some places, just remove aparently unnecessary filters. After this, all cases of ignore filters should be removed from the tests, making testing (even multiple runs) normally fully predictable. Commit: 9bf7d1475468e16b7dcac93eb85338930f16ea4d https://github.com/numpy/numpy/commit/9bf7d1475468e16b7dcac93eb85338930f16ea4d Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M doc/release/1.12.0-notes.rst M numpy/testing/nosetester.py M runtests.py Log Message: ----------- ENH: Use new context manager for testing Making the outer context manager a suppress warnings gives good control to print warnings only once in release mode and suppress some specific warnings which cannot be easily avoided otherwise. Commit: f078cb484aa46dd6834c92ac25c587fa36cd727a https://github.com/numpy/numpy/commit/f078cb484aa46dd6834c92ac25c587fa36cd727a Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/ma/core.py Log Message: ----------- ENH: Masked array simplify copying back of unchanged values Also silences a spurious warning during tests (the multiplication could give a warning). Commit: 2e86117d7ba2b4b0308b05a67b922f6db19a7c02 https://github.com/numpy/numpy/commit/2e86117d7ba2b4b0308b05a67b922f6db19a7c02 Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/core/tests/test_regression.py M numpy/linalg/tests/test_regression.py Log Message: ----------- TST: Silence warnings otherwise shown in release mode These are warnings, which when raised as an error for one reason or another are already silenced. Commit: b831444bee734537daeaffd1455eb88663ee3763 https://github.com/numpy/numpy/commit/b831444bee734537daeaffd1455eb88663ee3763 Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/distutils/fcompiler/gnu.py M numpy/distutils/system_info.py M numpy/distutils/tests/test_system_info.py Log Message: ----------- MAINT: Close some filehandlers and PIPEs after being done The PIPE in the tests caused a ResourceWarning during testing in python 3. Commit: 61694be14e678ae49f35205d5af0aee4882e1a70 https://github.com/numpy/numpy/commit/61694be14e678ae49f35205d5af0aee4882e1a70 Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/ma/tests/test_core.py M numpy/ma/tests/test_extras.py Log Message: ----------- MAINT: Spell out with and without in ma test functions they used to be called `..._w_...` and `..._wo_...`. Commit: 20ea3a25119834c2224e32caebf4f2fb4966edd3 https://github.com/numpy/numpy/commit/20ea3a25119834c2224e32caebf4f2fb4966edd3 Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/lib/tests/test_nanfunctions.py Log Message: ----------- TST: Replace catch_warnings when recording is not enforced in test_nanfuncs Commit: 514d13679a55a82a96689679002c4ddc514641ce https://github.com/numpy/numpy/commit/514d13679a55a82a96689679002c4ddc514641ce Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/lib/tests/test_nanfunctions.py Log Message: ----------- TST: Use ComplexWarning suppression only where needed Commit: 9164f23c19c049e28d4d4825a53bbb01aedabcfc https://github.com/numpy/numpy/commit/9164f23c19c049e28d4d4825a53bbb01aedabcfc Author: Charles Harris Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M doc/release/1.12.0-notes.rst M numpy/core/arrayprint.py M numpy/core/tests/test_datetime.py M numpy/core/tests/test_deprecations.py M numpy/core/tests/test_einsum.py M numpy/core/tests/test_function_base.py M numpy/core/tests/test_memmap.py M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_nditer.py M numpy/core/tests/test_numeric.py M numpy/core/tests/test_regression.py M numpy/core/tests/test_scalarmath.py M numpy/core/tests/test_umath.py M numpy/distutils/fcompiler/gnu.py M numpy/distutils/system_info.py M numpy/distutils/tests/test_system_info.py M numpy/lib/nanfunctions.py M numpy/lib/tests/test_function_base.py M numpy/lib/tests/test_io.py M numpy/lib/tests/test_nanfunctions.py M numpy/lib/tests/test_twodim_base.py M numpy/linalg/tests/test_linalg.py M numpy/linalg/tests/test_regression.py M numpy/ma/core.py M numpy/ma/tests/test_core.py M numpy/ma/tests/test_extras.py M numpy/ma/tests/test_mrecords.py M numpy/ma/tests/test_old_ma.py M numpy/ma/tests/test_regression.py M numpy/ma/testutils.py M numpy/random/tests/test_random.py M numpy/testing/decorators.py M numpy/testing/nosetester.py M numpy/testing/tests/test_decorators.py M numpy/testing/tests/test_utils.py M numpy/testing/utils.py M runtests.py Log Message: ----------- Merge pull request #7099 from seberg/suppressed_warnings Suppressed warnings Compare: https://github.com/numpy/numpy/compare/8eedd3e911b7...9164f23c19c0 From noreply at github.com Fri Sep 2 11:06:56 2016 From: noreply at github.com (GitHub) Date: Fri, 02 Sep 2016 08:06:56 -0700 Subject: [Numpy-svn] [numpy/numpy] 7884a8: ENH: Add stacklevel to all (or almost all) our fun... Message-ID: <57c99590423e3_1f733f9dc55311303346da@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7884a8c9f5f5c6657413dbeaa59ad969280d38ea https://github.com/numpy/numpy/commit/7884a8c9f5f5c6657413dbeaa59ad969280d38ea Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/_import_tools.py M numpy/core/_methods.py M numpy/core/fromnumeric.py M numpy/core/numeric.py M numpy/core/setup.py M numpy/core/setup_common.py M numpy/core/tests/test_deprecations.py M numpy/ctypeslib.py M numpy/distutils/command/config.py M numpy/distutils/core.py M numpy/distutils/cpuinfo.py M numpy/distutils/extension.py M numpy/distutils/fcompiler/gnu.py M numpy/distutils/misc_util.py M numpy/distutils/system_info.py M numpy/lib/format.py M numpy/lib/function_base.py M numpy/lib/nanfunctions.py M numpy/lib/npyio.py M numpy/lib/polynomial.py M numpy/lib/utils.py M numpy/linalg/linalg.py M numpy/ma/core.py M numpy/ma/extras.py M numpy/ma/mrecords.py M numpy/polynomial/chebyshev.py M numpy/polynomial/hermite.py M numpy/polynomial/hermite_e.py M numpy/polynomial/laguerre.py M numpy/polynomial/legendre.py M numpy/polynomial/polynomial.py M pavement.py M setup.py Log Message: ----------- ENH: Add stacklevel to all (or almost all) our function calls Commit: 4ec016784b02f69347c4429829b9eb8225ace5ee https://github.com/numpy/numpy/commit/4ec016784b02f69347c4429829b9eb8225ace5ee Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M numpy/distutils/command/egg_info.py M numpy/ma/tests/test_core.py A numpy/tests/test_warnings.py Log Message: ----------- TST: Add tests for stacklevel in warnings and "ignore" filters. Enforces that stacklevel is used in warnings.warn and "ignore" is not used in filterwarnings or simplefilter for most of numpy. Commit: 2dc070d3b7c1aa5d6e0b3509078c358192627132 https://github.com/numpy/numpy/commit/2dc070d3b7c1aa5d6e0b3509078c358192627132 Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M .travis.yml M tools/travis-test.sh Log Message: ----------- TST: Make one 3.5 test run the full test suit. Commit: 68ea0c792db6bac435752e45d8681f7f1283453d https://github.com/numpy/numpy/commit/68ea0c792db6bac435752e45d8681f7f1283453d Author: Sebastian Berg Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M doc/release/1.12.0-notes.rst Log Message: ----------- DOC: Add warning stacklevel increase to the release notes Commit: 3dbbfd8db5c21c603620bebc98e03bc84334f11c https://github.com/numpy/numpy/commit/3dbbfd8db5c21c603620bebc98e03bc84334f11c Author: Charles Harris Date: 2016-09-02 (Fri, 02 Sep 2016) Changed paths: M .travis.yml M doc/release/1.12.0-notes.rst M numpy/_import_tools.py M numpy/core/_methods.py M numpy/core/fromnumeric.py M numpy/core/numeric.py M numpy/core/setup.py M numpy/core/setup_common.py M numpy/core/tests/test_deprecations.py M numpy/ctypeslib.py M numpy/distutils/command/config.py M numpy/distutils/command/egg_info.py M numpy/distutils/core.py M numpy/distutils/cpuinfo.py M numpy/distutils/extension.py M numpy/distutils/fcompiler/gnu.py M numpy/distutils/misc_util.py M numpy/distutils/system_info.py M numpy/lib/format.py M numpy/lib/function_base.py M numpy/lib/nanfunctions.py M numpy/lib/npyio.py M numpy/lib/polynomial.py M numpy/lib/utils.py M numpy/linalg/linalg.py M numpy/ma/core.py M numpy/ma/extras.py M numpy/ma/mrecords.py M numpy/ma/tests/test_core.py M numpy/polynomial/chebyshev.py M numpy/polynomial/hermite.py M numpy/polynomial/hermite_e.py M numpy/polynomial/laguerre.py M numpy/polynomial/legendre.py M numpy/polynomial/polynomial.py A numpy/tests/test_warnings.py M pavement.py M setup.py M tools/travis-test.sh Log Message: ----------- Merge pull request #7148 from seberg/stacklevel+tests ENH,TST: Bump stacklevel and add tests for warnings Compare: https://github.com/numpy/numpy/compare/9164f23c19c0...3dbbfd8db5c2 From noreply at github.com Sat Sep 3 10:52:16 2016 From: noreply at github.com (GitHub) Date: Sat, 03 Sep 2016 07:52:16 -0700 Subject: [Numpy-svn] [numpy/numpy] bbee74: BLD: remove __NUMPY_SETUP__ from builtins at end o... Message-ID: <57cae3a0d2f3e_3c7a3f9951457138745cd@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: bbee747c4d53232e5e12a56cc22d7e2365a9d162 https://github.com/numpy/numpy/commit/bbee747c4d53232e5e12a56cc22d7e2365a9d162 Author: Ralf Gommers Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M setup.py Log Message: ----------- BLD: remove __NUMPY_SETUP__ from builtins at end of setup.py May help reduce the occurrence of gh-2434. Commit: a08ed826b11dc2fa4d481d66d5041b26ab1320f3 https://github.com/numpy/numpy/commit/a08ed826b11dc2fa4d481d66d5041b26ab1320f3 Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M setup.py Log Message: ----------- Merge pull request #7956 from rgommers/numpysetup BLD: remove __NUMPY_SETUP__ from builtins at end of setup.py Compare: https://github.com/numpy/numpy/compare/3dbbfd8db5c2...a08ed826b11d From noreply at github.com Sat Sep 3 11:50:35 2016 From: noreply at github.com (GitHub) Date: Sat, 03 Sep 2016 08:50:35 -0700 Subject: [Numpy-svn] [numpy/numpy] 1bfdc6: BLD: remove __NUMPY_SETUP__ from builtins at end o... Message-ID: <57caf14b691ea_37c63f8197c8714029547@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.11.x Home: https://github.com/numpy/numpy Commit: 1bfdc6bb3954f92fce47c64ea6aae8715e5d4132 https://github.com/numpy/numpy/commit/1bfdc6bb3954f92fce47c64ea6aae8715e5d4132 Author: Ralf Gommers Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M setup.py Log Message: ----------- BLD: remove __NUMPY_SETUP__ from builtins at end of setup.py May help reduce the occurrence of gh-2434. Commit: f94b38c16a4769a3dae2bfe2a09ce0edbca0aa43 https://github.com/numpy/numpy/commit/f94b38c16a4769a3dae2bfe2a09ce0edbca0aa43 Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M setup.py Log Message: ----------- Merge pull request #8005 from charris/backport-7956 Backport 7956, BLD: remove __NUMPY_SETUP__ from builtins at end of setup.py Compare: https://github.com/numpy/numpy/compare/5f1c1486bf1b...f94b38c16a47 From noreply at github.com Sat Sep 3 12:38:09 2016 From: noreply at github.com (GitHub) Date: Sat, 03 Sep 2016 09:38:09 -0700 Subject: [Numpy-svn] [numpy/numpy] 665715: DOC: Update 1.11.2 release notes. Message-ID: <57cafc718fd35_5e003fb205b5713c6776e@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 665715964f78cfe2985777615e04e7c8ec05ed74 https://github.com/numpy/numpy/commit/665715964f78cfe2985777615e04e7c8ec05ed74 Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- DOC: Update 1.11.2 release notes. [ci skip] Commit: 0470ca3695a220b0775b1ff48e817355a7c94173 https://github.com/numpy/numpy/commit/0470ca3695a220b0775b1ff48e817355a7c94173 Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- Merge pull request #8006 from charris/update-1.11.2-notes DOC: Update 1.11.2 release notes. Compare: https://github.com/numpy/numpy/compare/a08ed826b11d...0470ca3695a2 From noreply at github.com Sat Sep 3 12:41:50 2016 From: noreply at github.com (GitHub) Date: Sat, 03 Sep 2016 09:41:50 -0700 Subject: [Numpy-svn] [numpy/numpy] 938883: DOC: Update 1.11.2 release notes. Message-ID: <57cafd4e36e55_74aa3f8eacaa713c752fd@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.11.x Home: https://github.com/numpy/numpy Commit: 9388837bc2d61d38f482ff581f0a9ac72b6dfc68 https://github.com/numpy/numpy/commit/9388837bc2d61d38f482ff581f0a9ac72b6dfc68 Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- DOC: Update 1.11.2 release notes. [ci skip] Commit: 7bfa1b921e12cb1d99d503f1aeee48222bafbe9c https://github.com/numpy/numpy/commit/7bfa1b921e12cb1d99d503f1aeee48222bafbe9c Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- Merge pull request #8007 from charris/backport-8006 Backport 8006, DOC: Update 1.11.2 release notes. Compare: https://github.com/numpy/numpy/compare/f94b38c16a47...7bfa1b921e12 From noreply at github.com Sat Sep 3 15:42:39 2016 From: noreply at github.com (GitHub) Date: Sat, 03 Sep 2016 12:42:39 -0700 Subject: [Numpy-svn] [numpy/numpy] 65f1af: MAINT: Remove leftover imp module imports. Message-ID: <57cb27afe16d8_17b03fa247407134132358@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 65f1af041616749cd76b578b1da235a6c2784ce0 https://github.com/numpy/numpy/commit/65f1af041616749cd76b578b1da235a6c2784ce0 Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M numpy/core/setup.py M runtests.py Log Message: ----------- MAINT: Remove leftover imp module imports. There were two remaining imports of the deprecated imp module, neither of which seems to have been used beyond the import. Closes #5997. Commit: d50cff555d54c40d1532f07684641420ac5fd446 https://github.com/numpy/numpy/commit/d50cff555d54c40d1532f07684641420ac5fd446 Author: seberg Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M numpy/core/setup.py M runtests.py Log Message: ----------- Merge pull request #8008 from charris/remove-imp-imports MAINT: Remove leftover imp module imports. Compare: https://github.com/numpy/numpy/compare/0470ca3695a2...d50cff555d54 From noreply at github.com Sat Sep 3 17:13:52 2016 From: noreply at github.com (GitHub) Date: Sat, 03 Sep 2016 14:13:52 -0700 Subject: [Numpy-svn] [numpy/numpy] d31e68: DOC: Fixed three typos in the c-info.ufunc-tutoria... Message-ID: <57cb3d1073a1c_333c3f935909313019994@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: d31e68491dd94ce40f8cdfd017f6f5d85cdf6cf0 https://github.com/numpy/numpy/commit/d31e68491dd94ce40f8cdfd017f6f5d85cdf6cf0 Author: Michael Seifert Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M doc/source/user/c-info.ufunc-tutorial.rst Log Message: ----------- DOC: Fixed three typos in the c-info.ufunc-tutorial [skip ci] Commit: 93b45bf42f465b8901921fb1b4a0efb36535de71 https://github.com/numpy/numpy/commit/93b45bf42f465b8901921fb1b4a0efb36535de71 Author: Julian Taylor Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M doc/source/user/c-info.ufunc-tutorial.rst Log Message: ----------- Merge pull request #8009 from MSeifert04/typo_fix_c_ufunc DOC: Fixed three typos in the c-info.ufunc-tutorial Compare: https://github.com/numpy/numpy/compare/d50cff555d54...93b45bf42f46 From noreply at github.com Sat Sep 3 20:39:01 2016 From: noreply at github.com (GitHub) Date: Sat, 03 Sep 2016 17:39:01 -0700 Subject: [Numpy-svn] [numpy/numpy] 443f42: MAINT: Remove leftover imp module imports. Message-ID: <57cb6d25df47_74c23fd82138b13c14571@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.11.x Home: https://github.com/numpy/numpy Commit: 443f425af59b24b22e6c31ca5c9e14130204edd8 https://github.com/numpy/numpy/commit/443f425af59b24b22e6c31ca5c9e14130204edd8 Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M numpy/core/setup.py M runtests.py Log Message: ----------- MAINT: Remove leftover imp module imports. There were two remaining imports of the deprecated imp module, neither of which seems to have been used beyond the import. Closes #5997. Commit: 7d2383120acc48314ef10911d30bf353914982ad https://github.com/numpy/numpy/commit/7d2383120acc48314ef10911d30bf353914982ad Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M numpy/core/setup.py M runtests.py Log Message: ----------- Merge pull request #8010 from charris/backport-8008 Backport 8008, MAINT: Remove leftover imp module imports. Compare: https://github.com/numpy/numpy/compare/7bfa1b921e12...7d2383120acc From noreply at github.com Sat Sep 3 20:46:50 2016 From: noreply at github.com (GitHub) Date: Sat, 03 Sep 2016 17:46:50 -0700 Subject: [Numpy-svn] [numpy/numpy] 5ff1bf: DOC: Update 1.11.2 release notes. Message-ID: <57cb6efa9fa87_59073ff4b8e8514c582ae@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 5ff1bfdea06b8ce5f4941b4fdb37e07c768c306c https://github.com/numpy/numpy/commit/5ff1bfdea06b8ce5f4941b4fdb37e07c768c306c Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- DOC: Update 1.11.2 release notes. [ci skip] Commit: 6c624c5d8d911cd4b0abf587df1a123e0178a32d https://github.com/numpy/numpy/commit/6c624c5d8d911cd4b0abf587df1a123e0178a32d Author: Ralf Gommers Date: 2016-09-04 (Sun, 04 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- Merge pull request #8011 from charris/update-1.11.2-notes DOC: Update 1.11.2 release notes. Compare: https://github.com/numpy/numpy/compare/93b45bf42f46...6c624c5d8d91 From noreply at github.com Sat Sep 3 21:10:09 2016 From: noreply at github.com (GitHub) Date: Sat, 03 Sep 2016 18:10:09 -0700 Subject: [Numpy-svn] [numpy/numpy] ca382e: DOC: Update 1.11.2 release notes. Message-ID: <57cb747161bfc_3a003fc4d2d8f14098532@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.11.x Home: https://github.com/numpy/numpy Commit: ca382edcddcda39551b5920edee2755c1c96b398 https://github.com/numpy/numpy/commit/ca382edcddcda39551b5920edee2755c1c96b398 Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- DOC: Update 1.11.2 release notes. [ci skip] Commit: 88f5645f02df44b4208851986bef252e601d998a https://github.com/numpy/numpy/commit/88f5645f02df44b4208851986bef252e601d998a Author: Charles Harris Date: 2016-09-03 (Sat, 03 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- Merge pull request #8012 from charris/backport-8011 Backport 8011, DOC: Update 1.11.2 release notes. Compare: https://github.com/numpy/numpy/compare/7d2383120acc...88f5645f02df From noreply at github.com Sun Sep 4 11:04:59 2016 From: noreply at github.com (GitHub) Date: Sun, 04 Sep 2016 08:04:59 -0700 Subject: [Numpy-svn] [numpy/numpy] f46278: BUG: Fix fid.close() to use os.close(fid) Message-ID: <57cc381bd661e_5ed33fd71d43f13c302fd@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f46278b11d5e1a62e52c30002d25bb2f3766f592 https://github.com/numpy/numpy/commit/f46278b11d5e1a62e52c30002d25bb2f3766f592 Author: Sebastian Berg Date: 2016-09-04 (Sun, 04 Sep 2016) Changed paths: M numpy/distutils/fcompiler/gnu.py Log Message: ----------- BUG: Fix fid.close() to use os.close(fid) The error snuk in with some other file closing fixes and found by Warren Weckesser. Closes gh-8013 Commit: adc155e12648256eea754d1d53e8322e3ac19549 https://github.com/numpy/numpy/commit/adc155e12648256eea754d1d53e8322e3ac19549 Author: Charles Harris Date: 2016-09-04 (Sun, 04 Sep 2016) Changed paths: M numpy/distutils/fcompiler/gnu.py Log Message: ----------- Merge pull request #8014 from seberg/issue-8013 BUG: Fix fid.close() to use os.close(fid) Compare: https://github.com/numpy/numpy/compare/6c624c5d8d91...adc155e12648 From noreply at github.com Mon Sep 5 12:40:44 2016 From: noreply at github.com (GitHub) Date: Mon, 05 Sep 2016 09:40:44 -0700 Subject: [Numpy-svn] [numpy/numpy] 4bcae4: BUG: Fixes return for np.ma.count if keepdims is T... Message-ID: <57cda00c3d911_35e63fa7e8fa513486b8@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 4bcae47040aeef1127cc0d056f950f00d3d9e197 https://github.com/numpy/numpy/commit/4bcae47040aeef1127cc0d056f950f00d3d9e197 Author: Michael Seifert Date: 2016-09-05 (Mon, 05 Sep 2016) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- BUG: Fixes return for np.ma.count if keepdims is True and axis is None The returned value is wrapped in an integer array of appropriate dimensions if keepdims is True and axis is None for np.ma.count. Also included: - Whitespace after "," (PEP8) - any instead of np.any when checking if any axis is out of bounds (performance) Commit: 175cc57245a78e4037f80835e63dbbe077d43cae https://github.com/numpy/numpy/commit/175cc57245a78e4037f80835e63dbbe077d43cae Author: Charles Harris Date: 2016-09-05 (Mon, 05 Sep 2016) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #8018 from MSeifert04/bugfix_ma_count_keepdims BUG: Fixes return for np.ma.count if keepdims is True and axis is None Compare: https://github.com/numpy/numpy/compare/adc155e12648...175cc57245a7 From noreply at github.com Tue Sep 6 09:40:45 2016 From: noreply at github.com (GitHub) Date: Tue, 06 Sep 2016 06:40:45 -0700 Subject: [Numpy-svn] [numpy/numpy] 824d01: BUG: Fixes return for np.ma.count if keepdims is T... Message-ID: <57cec75d96a3f_1813fa1859511341568e1@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.11.x Home: https://github.com/numpy/numpy Commit: 824d0104dcc87b1ab2c878176a64f4409bdf52d4 https://github.com/numpy/numpy/commit/824d0104dcc87b1ab2c878176a64f4409bdf52d4 Author: Michael Seifert Date: 2016-09-05 (Mon, 05 Sep 2016) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- BUG: Fixes return for np.ma.count if keepdims is True and axis is None The returned value is wrapped in an integer array of appropriate dimensions if keepdims is True and axis is None for np.ma.count. Also included: - Whitespace after "," (PEP8) - any instead of np.any when checking if any axis is out of bounds (performance) Commit: b863b7164dcde1de80188bbceed466d9520eed50 https://github.com/numpy/numpy/commit/b863b7164dcde1de80188bbceed466d9520eed50 Author: Charles Harris Date: 2016-09-06 (Tue, 06 Sep 2016) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #8020 from charris/backport-8018 Backport 8018, BUG: Fixes return for np.ma.count if keepdims is True and axis is None Compare: https://github.com/numpy/numpy/compare/88f5645f02df...b863b7164dcd From noreply at github.com Tue Sep 6 09:41:14 2016 From: noreply at github.com (GitHub) Date: Tue, 06 Sep 2016 06:41:14 -0700 Subject: [Numpy-svn] [numpy/numpy] 66f313: BUG: Fix numpy.ma.median for various things. Message-ID: <57cec77a9ebd9_56b3fcedba2b1301442e8@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 66f313f5762eeecc4171e494a7779c3e247fb584 https://github.com/numpy/numpy/commit/66f313f5762eeecc4171e494a7779c3e247fb584 Author: Charles Harris Date: 2016-09-05 (Mon, 05 Sep 2016) Changed paths: M numpy/ma/extras.py Log Message: ----------- BUG: Fix numpy.ma.median for various things. This fixes four bugs: - Use of booleans for indexing in ma.extras._median - Error when mask is nomask and ndim != 1 in ma.extras._median - Did not work for 0-d arrays. - No out argument for {0,1}-d arrays. Closes #8015. Commit: ad5b13a585cb2b43b7f6ef7a30124bec82dfa359 https://github.com/numpy/numpy/commit/ad5b13a585cb2b43b7f6ef7a30124bec82dfa359 Author: Charles Harris Date: 2016-09-05 (Mon, 05 Sep 2016) Changed paths: M numpy/ma/tests/test_extras.py Log Message: ----------- TST: Add ma.median tests for valid axis. Commit: 96025b94ba3e7e38188de2bc224cde8df2ef5476 https://github.com/numpy/numpy/commit/96025b94ba3e7e38188de2bc224cde8df2ef5476 Author: Charles Harris Date: 2016-09-06 (Tue, 06 Sep 2016) Changed paths: M numpy/ma/extras.py M numpy/ma/tests/test_extras.py Log Message: ----------- Merge pull request #8016 from charris/fix-ma-median BUG: Fix numpy.ma.median. Compare: https://github.com/numpy/numpy/compare/175cc57245a7...96025b94ba3e From noreply at github.com Tue Sep 6 15:12:31 2016 From: noreply at github.com (GitHub) Date: Tue, 06 Sep 2016 12:12:31 -0700 Subject: [Numpy-svn] [numpy/numpy] 346efb: BUG: Fix numpy.ma.median for various things. Message-ID: <57cf151f7a8bc_30c23fc6f47f513471925@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.11.x Home: https://github.com/numpy/numpy Commit: 346efba294d97cca63be3f9c3021ecf7df5ba92e https://github.com/numpy/numpy/commit/346efba294d97cca63be3f9c3021ecf7df5ba92e Author: Charles Harris Date: 2016-09-06 (Tue, 06 Sep 2016) Changed paths: M numpy/ma/extras.py Log Message: ----------- BUG: Fix numpy.ma.median for various things. This fixes four bugs: - Use of booleans for indexing in ma.extras._median - Error when mask is nomask and ndim != 1 in ma.extras._median - Did not work for 0-d arrays. - No out argument for {0,1}-d arrays. Closes #8015. Commit: 43899e19e9a34fbdee16091cf7b46d7bf4c1d486 https://github.com/numpy/numpy/commit/43899e19e9a34fbdee16091cf7b46d7bf4c1d486 Author: Charles Harris Date: 2016-09-06 (Tue, 06 Sep 2016) Changed paths: M numpy/ma/tests/test_extras.py Log Message: ----------- TST: Add ma.median tests for valid axis. Commit: 30ecb9aba59b9964dbf55bbf89681ce7a8eb3725 https://github.com/numpy/numpy/commit/30ecb9aba59b9964dbf55bbf89681ce7a8eb3725 Author: Charles Harris Date: 2016-09-06 (Tue, 06 Sep 2016) Changed paths: M numpy/ma/extras.py M numpy/ma/tests/test_extras.py Log Message: ----------- Merge pull request #8024 from charris/backport-8016 Backport 8016, BUG: Fix numpy.ma.median. Compare: https://github.com/numpy/numpy/compare/b863b7164dcd...30ecb9aba59b From noreply at github.com Wed Sep 7 07:38:44 2016 From: noreply at github.com (GitHub) Date: Wed, 07 Sep 2016 04:38:44 -0700 Subject: [Numpy-svn] [numpy/numpy] 773e3c: change all non-code instances of Numpy to NumPy Message-ID: <57cffc448e33e_5b3b3f9e44a991346967@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 773e3cad9a71cb9a7849d8e251fb8a99ab35d06b https://github.com/numpy/numpy/commit/773e3cad9a71cb9a7849d8e251fb8a99ab35d06b Author: Pierre de Buyl Date: 2016-09-06 (Tue, 06 Sep 2016) Changed paths: M doc/C_STYLE_GUIDE.rst.txt M doc/HOWTO_BUILD_DOCS.rst.txt M doc/HOWTO_DOCUMENT.rst.txt M doc/HOWTO_RELEASE.rst.txt M doc/Py3K.rst.txt M doc/TESTS.rst.txt M doc/cdoc/README M doc/neps/missing-data.rst M doc/neps/new-iterator-ufunc.rst M doc/neps/ufunc-overrides.rst M doc/source/_templates/indexcontent.html M doc/source/about.rst M doc/source/bugs.rst M doc/source/conf.py M doc/source/contents.rst M doc/source/dev/development_environment.rst M doc/source/dev/gitwash/development_workflow.rst M doc/source/dev/index.rst M doc/source/f2py/distutils.rst M doc/source/f2py/getting-started.rst M doc/source/f2py/python-usage.rst M doc/source/f2py/signature-file.rst M doc/source/license.rst M doc/source/neps/index.rst M doc/source/reference/arrays.classes.rst M doc/source/reference/arrays.dtypes.rst M doc/source/reference/arrays.indexing.rst M doc/source/reference/arrays.ndarray.rst M doc/source/reference/arrays.rst M doc/source/reference/arrays.scalars.rst M doc/source/reference/c-api.array.rst M doc/source/reference/c-api.config.rst M doc/source/reference/c-api.coremath.rst M doc/source/reference/c-api.generalized-ufuncs.rst M doc/source/reference/c-api.rst M doc/source/reference/index.rst M doc/source/reference/internals.code-explanations.rst M doc/source/reference/internals.rst M doc/source/reference/routines.help.rst M doc/source/reference/routines.io.rst M doc/source/reference/routines.numarray.rst M doc/source/reference/routines.oldnumeric.rst M doc/source/reference/routines.other.rst M doc/source/reference/routines.polynomials.classes.rst M doc/source/reference/swig.interface-file.rst M doc/source/reference/swig.rst M doc/source/reference/ufuncs.rst M doc/source/user/basics.io.genfromtxt.rst M doc/source/user/basics.io.rst M doc/source/user/basics.rst M doc/source/user/building.rst M doc/source/user/c-info.rst M doc/source/user/c-info.ufunc-tutorial.rst M doc/source/user/numpy-for-matlab-users.rst M doc/source/user/quickstart.rst M doc/summarize.py Log Message: ----------- change all non-code instances of Numpy to NumPy Instances remain for NumpyVersion and Numpy.rec.fromarrays that are references to code. Release notes were left unchanged. see issue #7986 Commit: 2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681 https://github.com/numpy/numpy/commit/2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681 Author: Pierre de Buyl Date: 2016-09-06 (Tue, 06 Sep 2016) Changed paths: M numpy/__init__.py M numpy/add_newdocs.py M numpy/core/_internal.py M numpy/core/code_generators/cversions.txt M numpy/core/code_generators/generate_numpy_api.py M numpy/core/code_generators/generate_ufunc_api.py M numpy/core/code_generators/ufunc_docstrings.py M numpy/core/defchararray.py M numpy/core/fromnumeric.py M numpy/core/include/numpy/npy_common.h M numpy/core/memmap.py M numpy/core/numeric.py M numpy/core/src/multiarray/buffer.c M numpy/core/src/multiarray/methods.c M numpy/core/src/multiarray/multiarraymodule.c M numpy/core/src/umath/struct_ufunc_test.c.src M numpy/core/src/umath/test_rational.c.src M numpy/core/src/umath/ufunc_object.c M numpy/core/tests/test_indexing.py M numpy/core/tests/test_regression.py M numpy/ctypeslib.py M numpy/doc/basics.py M numpy/doc/constants.py M numpy/doc/creation.py M numpy/doc/glossary.py M numpy/doc/indexing.py M numpy/doc/internals.py M numpy/doc/structured_arrays.py M numpy/doc/subclassing.py M numpy/doc/ufuncs.py M numpy/dual.py M numpy/lib/_version.py M numpy/lib/function_base.py M numpy/lib/nanfunctions.py M numpy/lib/npyio.py M numpy/lib/type_check.py M numpy/lib/ufunclike.py M numpy/lib/utils.py M numpy/linalg/linalg.py M numpy/polynomial/_polybase.py M numpy/polynomial/chebyshev.py M numpy/polynomial/hermite.py M numpy/polynomial/hermite_e.py M numpy/polynomial/laguerre.py M numpy/polynomial/legendre.py M numpy/polynomial/polynomial.py M numpy/random/mtrand/mtrand.pyx Log Message: ----------- DOC: change Numpy to NumPy in dosctrings and comments The strings in error messages were left untouched Commit: 3f6672a30cd06d273e0b2160084a9abadcf9c315 https://github.com/numpy/numpy/commit/3f6672a30cd06d273e0b2160084a9abadcf9c315 Author: Pierre de Buyl Date: 2016-09-06 (Tue, 06 Sep 2016) Changed paths: M INSTALL.rst.txt M benchmarks/README.rst M runtests.py M setup.py M site.cfg.example M tools/c_coverage/HOWTO_C_COVERAGE.txt M tools/numpy-macosx-installer/art/dmgbackground.svg M tools/travis-test.sh M tools/win32build/nsis_scripts/numpy-superinstaller.nsi.in Log Message: ----------- DOC: change Numpy to NumPy in remaining files the files in doc/ and numpy/ were covered in previous commits Commit: 0780721328a25389844181fd7e38f56e1a865698 https://github.com/numpy/numpy/commit/0780721328a25389844181fd7e38f56e1a865698 Author: Pierre de Buyl Date: 2016-09-06 (Tue, 06 Sep 2016) Changed paths: M doc/source/reference/swig.interface-file.rst Log Message: ----------- DOC: fix page title for swig Commit: db0b231f17fb2148772181626235e2644eb67c3e https://github.com/numpy/numpy/commit/db0b231f17fb2148772181626235e2644eb67c3e Author: Pierre de Buyl Date: 2016-09-07 (Wed, 07 Sep 2016) Changed paths: M doc/source/reference/routines.numarray.rst M numpy/add_newdocs.py M numpy/core/code_generators/cversions.txt M numpy/core/numeric.py M numpy/lib/function_base.py M numpy/lib/nanfunctions.py M numpy/linalg/linalg.py M numpy/polynomial/_polybase.py M numpy/polynomial/chebyshev.py M numpy/polynomial/hermite.py M numpy/polynomial/hermite_e.py M numpy/polynomial/laguerre.py M numpy/polynomial/legendre.py M numpy/polynomial/polynomial.py M numpy/random/mtrand/mtrand.pyx Log Message: ----------- DOC: change version references from x.y to x.y.z Commit: 0a9fb7b7ea94b3d7554ca29c3a40057d22ec1f01 https://github.com/numpy/numpy/commit/0a9fb7b7ea94b3d7554ca29c3a40057d22ec1f01 Author: Pierre de Buyl Date: 2016-09-07 (Wed, 07 Sep 2016) Changed paths: M doc/HOWTO_DOCUMENT.rst.txt M doc/HOWTO_RELEASE.rst.txt M doc/source/reference/arrays.ndarray.rst M doc/source/reference/c-api.array.rst M numpy/core/fromnumeric.py M numpy/core/numeric.py Log Message: ----------- DOC: change version references from x.y to x.y.z Commit: b91e8d8f164731bb710cc1e5173cc8ec3f8fadf5 https://github.com/numpy/numpy/commit/b91e8d8f164731bb710cc1e5173cc8ec3f8fadf5 Author: Jaime Date: 2016-09-07 (Wed, 07 Sep 2016) Changed paths: M INSTALL.rst.txt M benchmarks/README.rst M doc/C_STYLE_GUIDE.rst.txt M doc/HOWTO_BUILD_DOCS.rst.txt M doc/HOWTO_DOCUMENT.rst.txt M doc/HOWTO_RELEASE.rst.txt M doc/Py3K.rst.txt M doc/TESTS.rst.txt M doc/cdoc/README M doc/neps/missing-data.rst M doc/neps/new-iterator-ufunc.rst M doc/neps/ufunc-overrides.rst M doc/source/_templates/indexcontent.html M doc/source/about.rst M doc/source/bugs.rst M doc/source/conf.py M doc/source/contents.rst M doc/source/dev/development_environment.rst M doc/source/dev/gitwash/development_workflow.rst M doc/source/dev/index.rst M doc/source/f2py/distutils.rst M doc/source/f2py/getting-started.rst M doc/source/f2py/python-usage.rst M doc/source/f2py/signature-file.rst M doc/source/license.rst M doc/source/neps/index.rst M doc/source/reference/arrays.classes.rst M doc/source/reference/arrays.dtypes.rst M doc/source/reference/arrays.indexing.rst M doc/source/reference/arrays.ndarray.rst M doc/source/reference/arrays.rst M doc/source/reference/arrays.scalars.rst M doc/source/reference/c-api.array.rst M doc/source/reference/c-api.config.rst M doc/source/reference/c-api.coremath.rst M doc/source/reference/c-api.generalized-ufuncs.rst M doc/source/reference/c-api.rst M doc/source/reference/index.rst M doc/source/reference/internals.code-explanations.rst M doc/source/reference/internals.rst M doc/source/reference/routines.help.rst M doc/source/reference/routines.io.rst M doc/source/reference/routines.numarray.rst M doc/source/reference/routines.oldnumeric.rst M doc/source/reference/routines.other.rst M doc/source/reference/routines.polynomials.classes.rst M doc/source/reference/swig.interface-file.rst M doc/source/reference/swig.rst M doc/source/reference/ufuncs.rst M doc/source/user/basics.io.genfromtxt.rst M doc/source/user/basics.io.rst M doc/source/user/basics.rst M doc/source/user/building.rst M doc/source/user/c-info.rst M doc/source/user/c-info.ufunc-tutorial.rst M doc/source/user/numpy-for-matlab-users.rst M doc/source/user/quickstart.rst M doc/summarize.py M numpy/__init__.py M numpy/add_newdocs.py M numpy/core/_internal.py M numpy/core/code_generators/cversions.txt M numpy/core/code_generators/generate_numpy_api.py M numpy/core/code_generators/generate_ufunc_api.py M numpy/core/code_generators/ufunc_docstrings.py M numpy/core/defchararray.py M numpy/core/fromnumeric.py M numpy/core/include/numpy/npy_common.h M numpy/core/memmap.py M numpy/core/numeric.py M numpy/core/src/multiarray/buffer.c M numpy/core/src/multiarray/methods.c M numpy/core/src/multiarray/multiarraymodule.c M numpy/core/src/umath/struct_ufunc_test.c.src M numpy/core/src/umath/test_rational.c.src M numpy/core/src/umath/ufunc_object.c M numpy/core/tests/test_indexing.py M numpy/core/tests/test_regression.py M numpy/ctypeslib.py M numpy/doc/basics.py M numpy/doc/constants.py M numpy/doc/creation.py M numpy/doc/glossary.py M numpy/doc/indexing.py M numpy/doc/internals.py M numpy/doc/structured_arrays.py M numpy/doc/subclassing.py M numpy/doc/ufuncs.py M numpy/dual.py M numpy/lib/_version.py M numpy/lib/function_base.py M numpy/lib/nanfunctions.py M numpy/lib/npyio.py M numpy/lib/type_check.py M numpy/lib/ufunclike.py M numpy/lib/utils.py M numpy/linalg/linalg.py M numpy/polynomial/_polybase.py M numpy/polynomial/chebyshev.py M numpy/polynomial/hermite.py M numpy/polynomial/hermite_e.py M numpy/polynomial/laguerre.py M numpy/polynomial/legendre.py M numpy/polynomial/polynomial.py M numpy/random/mtrand/mtrand.pyx M runtests.py M setup.py M site.cfg.example M tools/c_coverage/HOWTO_C_COVERAGE.txt M tools/numpy-macosx-installer/art/dmgbackground.svg M tools/travis-test.sh M tools/win32build/nsis_scripts/numpy-superinstaller.nsi.in Log Message: ----------- Merge pull request #8021 from pdebuyl/spelling_doc DOC: change all non-code instances of Numpy to NumPy Compare: https://github.com/numpy/numpy/compare/96025b94ba3e...b91e8d8f1647 From noreply at github.com Wed Sep 7 13:38:27 2016 From: noreply at github.com (GitHub) Date: Wed, 07 Sep 2016 10:38:27 -0700 Subject: [Numpy-svn] [numpy/numpy] ed3004: BUG: fix np.ma.median with only one non-masked val... Message-ID: <57d050936da34_5a133fa6c1fb3130604b6@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: ed300480512029be7fbd031251a280964341acfe https://github.com/numpy/numpy/commit/ed300480512029be7fbd031251a280964341acfe Author: Lo?c Est?ve Date: 2016-09-07 (Wed, 07 Sep 2016) Changed paths: M numpy/ma/extras.py M numpy/ma/tests/test_extras.py Log Message: ----------- BUG: fix np.ma.median with only one non-masked value and an axis argument. Add test. Commit: 3333e8b4a033f3a10c356d8731fc3867dbc97364 https://github.com/numpy/numpy/commit/3333e8b4a033f3a10c356d8731fc3867dbc97364 Author: Charles Harris Date: 2016-09-07 (Wed, 07 Sep 2016) Changed paths: M numpy/ma/extras.py M numpy/ma/tests/test_extras.py Log Message: ----------- Merge pull request #8030 from lesteve/fix-ma-median-with-only-one-non-masked-value BUG: fix np.ma.median with only one non-masked value and an axis argument Compare: https://github.com/numpy/numpy/compare/b91e8d8f1647...3333e8b4a033 From noreply at github.com Wed Sep 7 14:15:53 2016 From: noreply at github.com (GitHub) Date: Wed, 07 Sep 2016 11:15:53 -0700 Subject: [Numpy-svn] [numpy/numpy] 9324f1: BUG: fix np.ma.median with only one non-masked val... Message-ID: <57d0595944658_5b823fb82b7e713874087@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.11.x Home: https://github.com/numpy/numpy Commit: 9324f1094e98c07b5ab0b76978117975b78f3e98 https://github.com/numpy/numpy/commit/9324f1094e98c07b5ab0b76978117975b78f3e98 Author: Lo?c Est?ve Date: 2016-09-07 (Wed, 07 Sep 2016) Changed paths: M numpy/ma/extras.py M numpy/ma/tests/test_extras.py Log Message: ----------- BUG: fix np.ma.median with only one non-masked value and an axis argument. Add test. Commit: 4c22689d06209b02c8d828e5291f909d5097b611 https://github.com/numpy/numpy/commit/4c22689d06209b02c8d828e5291f909d5097b611 Author: Charles Harris Date: 2016-09-07 (Wed, 07 Sep 2016) Changed paths: M numpy/ma/extras.py M numpy/ma/tests/test_extras.py Log Message: ----------- Merge pull request #8031 from charris/backport-8030 Backport 8030, BUG: fix np.ma.median with only one non-masked value Compare: https://github.com/numpy/numpy/compare/30ecb9aba59b...4c22689d0620 From noreply at github.com Wed Sep 7 15:14:05 2016 From: noreply at github.com (GitHub) Date: Wed, 07 Sep 2016 12:14:05 -0700 Subject: [Numpy-svn] [numpy/numpy] 207cba: DOC: Update 1.11.2 release notes. Message-ID: <57d066fde0a50_3ccf3fc90c4d31301935c0@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 207cba13c5bec5e2b556f93cf5840bd075cc4259 https://github.com/numpy/numpy/commit/207cba13c5bec5e2b556f93cf5840bd075cc4259 Author: Charles Harris Date: 2016-09-07 (Wed, 07 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- DOC: Update 1.11.2 release notes. [ci skip] Commit: cb7f4078bf94cde6233b9128f138ba18e04c1d1d https://github.com/numpy/numpy/commit/cb7f4078bf94cde6233b9128f138ba18e04c1d1d Author: Ralf Gommers Date: 2016-09-08 (Thu, 08 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- Merge pull request #8028 from charris/update-1.11.2-notes DOC: Update 1.11.2 release notes. Compare: https://github.com/numpy/numpy/compare/3333e8b4a033...cb7f4078bf94 From noreply at github.com Wed Sep 7 15:40:37 2016 From: noreply at github.com (GitHub) Date: Wed, 07 Sep 2016 12:40:37 -0700 Subject: [Numpy-svn] [numpy/numpy] f40783: DOC: Update 1.11.2 release notes. Message-ID: <57d06d35b8323_1d493f8afe52b1388726c@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.11.x Home: https://github.com/numpy/numpy Commit: f40783764e05cefb70dd8f9c2b8fa245bdc727aa https://github.com/numpy/numpy/commit/f40783764e05cefb70dd8f9c2b8fa245bdc727aa Author: Charles Harris Date: 2016-09-07 (Wed, 07 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- DOC: Update 1.11.2 release notes. [ci skip] Commit: 5382c561700f2e48a5c855b55a9914c7c7bbc0fa https://github.com/numpy/numpy/commit/5382c561700f2e48a5c855b55a9914c7c7bbc0fa Author: Charles Harris Date: 2016-09-07 (Wed, 07 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- Merge pull request #8032 from charris/backport-8028 DOC: Update 1.11.2 release notes. Compare: https://github.com/numpy/numpy/compare/4c22689d0620...5382c561700f From noreply at github.com Sun Sep 11 11:18:10 2016 From: noreply at github.com (GitHub) Date: Sun, 11 Sep 2016 08:18:10 -0700 Subject: [Numpy-svn] [numpy/numpy] 1b2231: Update add_newdocs.py (#8040) Message-ID: <57d575b2bf455_7e393fbaa307513c137666@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 1b22317ca16e14070400eedc714ae97e022b747d https://github.com/numpy/numpy/commit/1b22317ca16e14070400eedc714ae97e022b747d Author: AustereCuriosity Date: 2016-09-11 (Sun, 11 Sep 2016) Changed paths: M numpy/add_newdocs.py Log Message: ----------- Update add_newdocs.py (#8040) DOC: Fix bad partition example. From noreply at github.com Sun Sep 11 13:17:13 2016 From: noreply at github.com (GitHub) Date: Sun, 11 Sep 2016 10:17:13 -0700 Subject: [Numpy-svn] [numpy/numpy] 21794e: BUG: core: fix bug in NpyIter buffering with disco... Message-ID: <57d59199c7fbc_48fa3fef9daaf13c58779@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 21794ee1d62de5112ee981cffb9e9df5ccee6a16 https://github.com/numpy/numpy/commit/21794ee1d62de5112ee981cffb9e9df5ccee6a16 Author: Pauli Virtanen Date: 2016-09-11 (Sun, 11 Sep 2016) Changed paths: M numpy/core/src/multiarray/nditer_api.c M numpy/core/tests/test_nditer.py M numpy/core/tests/test_ufunc.py Log Message: ----------- BUG: core: fix bug in NpyIter buffering with discontinuous arrays It is possible to skip copying an array to the buffer only if the reduction outer iterator is 1-dimensional --- the array may not be c-contiguous. Commit: 8d3673db95f39d76ed6630ef9ff3603ac649bd26 https://github.com/numpy/numpy/commit/8d3673db95f39d76ed6630ef9ff3603ac649bd26 Author: seberg Date: 2016-09-11 (Sun, 11 Sep 2016) Changed paths: M numpy/core/src/multiarray/nditer_api.c M numpy/core/tests/test_nditer.py M numpy/core/tests/test_ufunc.py Log Message: ----------- Merge pull request #8042 from pv/fix-nditer-contig BUG: core: fix bug in NpyIter buffering with discontinuous arrays Compare: https://github.com/numpy/numpy/compare/1b22317ca16e...8d3673db95f3 From noreply at github.com Sun Sep 11 14:37:49 2016 From: noreply at github.com (GitHub) Date: Sun, 11 Sep 2016 11:37:49 -0700 Subject: [Numpy-svn] [numpy/numpy] 1cd785: BUG: core: fix bug in NpyIter buffering with disco... Message-ID: <57d5a47ddf1ea_40863fd68f0351386490@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.11.x Home: https://github.com/numpy/numpy Commit: 1cd78568f7ccb1aaba84a3ca6741f527c972ca4c https://github.com/numpy/numpy/commit/1cd78568f7ccb1aaba84a3ca6741f527c972ca4c Author: Pauli Virtanen Date: 2016-09-11 (Sun, 11 Sep 2016) Changed paths: M numpy/core/src/multiarray/nditer_api.c M numpy/core/tests/test_nditer.py M numpy/core/tests/test_ufunc.py Log Message: ----------- BUG: core: fix bug in NpyIter buffering with discontinuous arrays It is possible to skip copying an array to the buffer only if the reduction outer iterator is 1-dimensional --- the array may not be c-contiguous. Commit: 5925f8bb18bf40c97d0432e3216b8e12c8d5cf01 https://github.com/numpy/numpy/commit/5925f8bb18bf40c97d0432e3216b8e12c8d5cf01 Author: Charles Harris Date: 2016-09-11 (Sun, 11 Sep 2016) Changed paths: M numpy/core/src/multiarray/nditer_api.c M numpy/core/tests/test_nditer.py M numpy/core/tests/test_ufunc.py Log Message: ----------- Merge pull request #8044 from charris/backport-8042 Backport 8042, BUG: core: fix bug in NpyIter buffering with discontinuous arrays Compare: https://github.com/numpy/numpy/compare/5382c561700f...5925f8bb18bf From noreply at github.com Sun Sep 11 15:56:33 2016 From: noreply at github.com (GitHub) Date: Sun, 11 Sep 2016 12:56:33 -0700 Subject: [Numpy-svn] [numpy/numpy] f27484: DOC: Update 1.11.2 release notes. Message-ID: <57d5b6f1b2730_140e3fb90665514013241c@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f27484e08c5989e6c0219c28c97f758330cceb54 https://github.com/numpy/numpy/commit/f27484e08c5989e6c0219c28c97f758330cceb54 Author: Charles Harris Date: 2016-09-11 (Sun, 11 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- DOC: Update 1.11.2 release notes. [ci skip] Commit: 742f6c21b3a6d61e4d43f798b03573547f763b3e https://github.com/numpy/numpy/commit/742f6c21b3a6d61e4d43f798b03573547f763b3e Author: Ralf Gommers Date: 2016-09-12 (Mon, 12 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- Merge pull request #8045 from charris/update-1.11.2-notes DOC: Update 1.11.2 release notes. Compare: https://github.com/numpy/numpy/compare/8d3673db95f3...742f6c21b3a6 From noreply at github.com Sun Sep 11 16:47:05 2016 From: noreply at github.com (GitHub) Date: Sun, 11 Sep 2016 13:47:05 -0700 Subject: [Numpy-svn] [numpy/numpy] fa369d: DOC, MAINT: Update error message in rollaxis. Message-ID: <57d5c2c9d2961_311a3fdc1bfa7134266fe@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: fa369d17e110717535860d8caea5bec44da53f42 https://github.com/numpy/numpy/commit/fa369d17e110717535860d8caea5bec44da53f42 Author: gfyoung Date: 2016-09-11 (Sun, 11 Sep 2016) Changed paths: M numpy/core/numeric.py Log Message: ----------- DOC, MAINT: Update error message in rollaxis. Updates error message to properly reflect that the 'start' or 'axis' can be negative. Closes gh-7974. Commit: c90d7c94fd2077d0beca48fa89a423da2b0bb663 https://github.com/numpy/numpy/commit/c90d7c94fd2077d0beca48fa89a423da2b0bb663 Author: Stephan Hoyer Date: 2016-09-11 (Sun, 11 Sep 2016) Changed paths: M numpy/core/numeric.py Log Message: ----------- Merge pull request #8038 from gfyoung/rollaxis-err-msg MAINT: Update error message in rollaxis. Compare: https://github.com/numpy/numpy/compare/742f6c21b3a6...c90d7c94fd20 From noreply at github.com Sun Sep 11 19:41:55 2016 From: noreply at github.com (GitHub) Date: Sun, 11 Sep 2016 16:41:55 -0700 Subject: [Numpy-svn] [numpy/numpy] 7be1ec: DOC: Update 1.11.2 release notes. Message-ID: <57d5ebc390b0c_3cb53f9ceb59d1301001de@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/maintenance/1.11.x Home: https://github.com/numpy/numpy Commit: 7be1ec166e9e692d5d9d29f2d1a6b0ccfe05ef37 https://github.com/numpy/numpy/commit/7be1ec166e9e692d5d9d29f2d1a6b0ccfe05ef37 Author: Charles Harris Date: 2016-09-11 (Sun, 11 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- DOC: Update 1.11.2 release notes. [ci skip] Commit: e57701a40403af59d07505bf4938fccdcf21bf49 https://github.com/numpy/numpy/commit/e57701a40403af59d07505bf4938fccdcf21bf49 Author: Charles Harris Date: 2016-09-11 (Sun, 11 Sep 2016) Changed paths: M doc/release/1.11.2-notes.rst Log Message: ----------- Merge pull request #8046 from charris/backport-8045 Backport 8045, DOC: Update 1.11.2 release notes. Compare: https://github.com/numpy/numpy/compare/5925f8bb18bf...e57701a40403 From noreply at github.com Sun Sep 11 22:28:00 2016 From: noreply at github.com (GitHub) Date: Sun, 11 Sep 2016 19:28:00 -0700 Subject: [Numpy-svn] [numpy/numpy] fe3e46: REL: NumPy 1.11.2rc1. Message-ID: <57d612b0ebf93_4d113ff10df0713c2327c1@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/tags/v1.11.2rc1 Home: https://github.com/numpy/numpy Commit: fe3e46d2876af2546a5fcc752ead8aa736ea2658 https://github.com/numpy/numpy/commit/fe3e46d2876af2546a5fcc752ead8aa736ea2658 Author: Charles Harris Date: 2016-09-11 (Sun, 11 Sep 2016) Changed paths: M pavement.py M setup.py Log Message: ----------- REL: NumPy 1.11.2rc1. From noreply at github.com Sat Sep 17 20:02:52 2016 From: noreply at github.com (GitHub) Date: Sat, 17 Sep 2016 17:02:52 -0700 Subject: [Numpy-svn] [numpy/numpy] f28957: BUG: lib: Simplify (and fix) pad's handling of the... Message-ID: <57ddd9acb6676_25883fd978c8b1301012c8@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f28957d2a9411958a6952687be9c4dcd1be2a23a https://github.com/numpy/numpy/commit/f28957d2a9411958a6952687be9c4dcd1be2a23a Author: Warren Weckesser Date: 2016-09-17 (Sat, 17 Sep 2016) Changed paths: M numpy/lib/arraypad.py M numpy/lib/tests/test_arraypad.py Log Message: ----------- BUG: lib: Simplify (and fix) pad's handling of the pad_width Simplify the expansion of the pad_width argument by using `broadcast_to()`. This fixes the problem reported in gh-7808, where, for example, `pad_width=((1, 2),)` resulted in an error. Closes gh-7808. Commit: 1147490663d36b05fad8dcce1e104601c2724560 https://github.com/numpy/numpy/commit/1147490663d36b05fad8dcce1e104601c2724560 Author: Charles Harris Date: 2016-09-17 (Sat, 17 Sep 2016) Changed paths: M numpy/lib/arraypad.py M numpy/lib/tests/test_arraypad.py Log Message: ----------- Merge pull request #8057 from WarrenWeckesser/pad-width BUG: lib: Simplify (and fix) pad's handling of the pad_width Compare: https://github.com/numpy/numpy/compare/c90d7c94fd20...1147490663d3 From noreply at github.com Mon Sep 19 13:16:53 2016 From: noreply at github.com (GitHub) Date: Mon, 19 Sep 2016 10:16:53 -0700 Subject: [Numpy-svn] [numpy/numpy] 8c1ca4: ENH: a.resize(.., refcheck=True) is almost unusabl... Message-ID: <57e01d85bd883_656b3f7edaaef130638fa@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8c1ca4cb5662a80110fd2020634b4deea7717661 https://github.com/numpy/numpy/commit/8c1ca4cb5662a80110fd2020634b4deea7717661 Author: Matti Picus Date: 2016-09-17 (Sat, 17 Sep 2016) Changed paths: M numpy/add_newdocs.py M numpy/core/include/numpy/ndarrayobject.h M numpy/core/include/numpy/noprefix.h M numpy/core/include/numpy/oldnumeric.h M numpy/core/src/multiarray/shape.c M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_regression.py Log Message: ----------- ENH: a.resize(.., refcheck=True) is almost unusable on PyPy Commit: cb4f81737041dc1d26053f5bec4e5c12fd749375 https://github.com/numpy/numpy/commit/cb4f81737041dc1d26053f5bec4e5c12fd749375 Author: seberg Date: 2016-09-19 (Mon, 19 Sep 2016) Changed paths: M numpy/add_newdocs.py M numpy/core/include/numpy/ndarrayobject.h M numpy/core/include/numpy/noprefix.h M numpy/core/include/numpy/oldnumeric.h M numpy/core/src/multiarray/shape.c M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_regression.py Log Message: ----------- Merge pull request #8050 from mattip/pypy-fixes ENH: a.resize(.., refcheck=True) is almost unusable on PyPy Compare: https://github.com/numpy/numpy/compare/1147490663d3...cb4f81737041 From noreply at github.com Mon Sep 19 13:23:19 2016 From: noreply at github.com (GitHub) Date: Mon, 19 Sep 2016 10:23:19 -0700 Subject: [Numpy-svn] [numpy/numpy] 7c8043: BUG : financial.pmt modifies input (issue #8055) Message-ID: <57e01f07631f2_758d3f88295f713452642@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7c8043e19f5b35df153e8a5057f6f1db92b43dde https://github.com/numpy/numpy/commit/7c8043e19f5b35df153e8a5057f6f1db92b43dde Author: KhaledTo Date: 2016-09-18 (Sun, 18 Sep 2016) Changed paths: M numpy/lib/financial.py Log Message: ----------- BUG : financial.pmt modifies input (issue #8055) Commit: 8dff1ca9dbed87b08390c5697e3f3391a746b43b https://github.com/numpy/numpy/commit/8dff1ca9dbed87b08390c5697e3f3391a746b43b Author: Charles Harris Date: 2016-09-19 (Mon, 19 Sep 2016) Changed paths: M numpy/lib/financial.py Log Message: ----------- Merge pull request #8061 from KhaledTo/issue#8055 BUG : financial.pmt modifies input (issue #8055) Compare: https://github.com/numpy/numpy/compare/cb4f81737041...8dff1ca9dbed From noreply at github.com Mon Sep 19 14:16:08 2016 From: noreply at github.com (GitHub) Date: Mon, 19 Sep 2016 11:16:08 -0700 Subject: [Numpy-svn] [numpy/numpy] 455bfa: BUG: Clear signaling NaN exceptions Message-ID: <57e02b68418a0_46b13fd10ef451404157f@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 455bfa51510dcf2d03dbc0bbef618c710667910d https://github.com/numpy/numpy/commit/455bfa51510dcf2d03dbc0bbef618c710667910d Author: Pedro Lacerda Date: 2016-09-15 (Thu, 15 Sep 2016) Changed paths: M numpy/core/src/umath/loops.c.src M numpy/core/src/umath/simd.inc.src M numpy/core/tests/test_umath.py Log Message: ----------- BUG: Clear signaling NaN exceptions Closes gh-7838 Commit: e1ad72da79a97b0f2209d47d3f7c514ddcb0e8de https://github.com/numpy/numpy/commit/e1ad72da79a97b0f2209d47d3f7c514ddcb0e8de Author: Julian Taylor Date: 2016-09-19 (Mon, 19 Sep 2016) Changed paths: M numpy/core/src/umath/loops.c.src M numpy/core/src/umath/simd.inc.src M numpy/core/tests/test_umath.py Log Message: ----------- Merge pull request #8051 from pslacerda/clear_snan Clear signaling NaN exceptions Compare: https://github.com/numpy/numpy/compare/8dff1ca9dbed...e1ad72da79a9 From noreply at github.com Tue Sep 20 00:08:58 2016 From: noreply at github.com (GitHub) Date: Mon, 19 Sep 2016 21:08:58 -0700 Subject: [Numpy-svn] [numpy/numpy] 693a19: MAINT: Add PMIP files to .gitignore Message-ID: <57e0b65a23d93_39603fa07bb671407872@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 693a1985e69bffb2c0d635b7f853b076d976facc https://github.com/numpy/numpy/commit/693a1985e69bffb2c0d635b7f853b076d976facc Author: gfyoung Date: 2016-09-19 (Mon, 19 Sep 2016) Changed paths: M .gitignore Log Message: ----------- MAINT: Add PMIP files to .gitignore Commit: ab0f63fa52b63e54d653a029f0bba7733a3673d2 https://github.com/numpy/numpy/commit/ab0f63fa52b63e54d653a029f0bba7733a3673d2 Author: Charles Harris Date: 2016-09-19 (Mon, 19 Sep 2016) Changed paths: M .gitignore Log Message: ----------- Merge pull request #8064 from gfyoung/gitignore-pmip MAINT: Add PMIP files to .gitignore Compare: https://github.com/numpy/numpy/compare/e1ad72da79a9...ab0f63fa52b6 From noreply at github.com Tue Sep 20 00:34:05 2016 From: noreply at github.com (GitHub) Date: Mon, 19 Sep 2016 21:34:05 -0700 Subject: [Numpy-svn] [numpy/numpy] 4c877b: BUG: Assert fromfile ending earlier in pyx process... Message-ID: <57e0bc3dd3667_1d473fa3e515113448c7@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 4c877be5fc4075595e15b4a451f76e128376de00 https://github.com/numpy/numpy/commit/4c877be5fc4075595e15b4a451f76e128376de00 Author: gfyoung Date: 2016-09-19 (Mon, 19 Sep 2016) Changed paths: M tools/cythonize.py Log Message: ----------- BUG: Assert fromfile ending earlier in pyx processing Commit: 55ece5839d3e9327de7a23ed346a12ec9526899d https://github.com/numpy/numpy/commit/55ece5839d3e9327de7a23ed346a12ec9526899d Author: Charles Harris Date: 2016-09-19 (Mon, 19 Sep 2016) Changed paths: M tools/cythonize.py Log Message: ----------- Merge pull request #8065 from gfyoung/fromfile-assert-bug BUG: Assert fromfile ending earlier in pyx_processing Compare: https://github.com/numpy/numpy/compare/ab0f63fa52b6...55ece5839d3e From noreply at github.com Tue Sep 20 20:25:01 2016 From: noreply at github.com (GitHub) Date: Tue, 20 Sep 2016 17:25:01 -0700 Subject: [Numpy-svn] [numpy/numpy] 7fdfa6: MAINT: Add Tempita to randint helpers Message-ID: <57e1d35da5a7_64483fc6930f313045634@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7fdfa6b2c0a5da5115c523c6869898873050e41c https://github.com/numpy/numpy/commit/7fdfa6b2c0a5da5115c523c6869898873050e41c Author: gfyoung Date: 2016-09-20 (Tue, 20 Sep 2016) Changed paths: M .travis.yml M numpy/random/mtrand/mtrand.pyx A numpy/random/mtrand/randint_helpers.pxi.in M tools/cythonize.py Log Message: ----------- MAINT: Add Tempita to randint helpers Refactors the randint helpers to use a Tempita template. This will reduce technical debt in the long run. Commit: 866bc024ab4f23ae96f0d1370c348eccbe543f53 https://github.com/numpy/numpy/commit/866bc024ab4f23ae96f0d1370c348eccbe543f53 Author: Charles Harris Date: 2016-09-20 (Tue, 20 Sep 2016) Changed paths: M .travis.yml M numpy/random/mtrand/mtrand.pyx A numpy/random/mtrand/randint_helpers.pxi.in M tools/cythonize.py Log Message: ----------- Merge pull request #8071 from gfyoung/randint-tempita MAINT: Add Tempita to randint helpers Compare: https://github.com/numpy/numpy/compare/55ece5839d3e...866bc024ab4f From noreply at github.com Wed Sep 21 11:49:48 2016 From: noreply at github.com (GitHub) Date: Wed, 21 Sep 2016 08:49:48 -0700 Subject: [Numpy-svn] [numpy/numpy] 86e87c: DOC: Fix description of isinf in nan_to_num Message-ID: <57e2ac1c2d348_2ec23feb0ad0714c686af@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 86e87cb1e56108ce6b5e1faeb2469cbee804e22e https://github.com/numpy/numpy/commit/86e87cb1e56108ce6b5e1faeb2469cbee804e22e Author: Yash Shah Date: 2016-09-20 (Tue, 20 Sep 2016) Changed paths: M numpy/lib/type_check.py Log Message: ----------- DOC: Fix description of isinf in nan_to_num Minor fix: Change isinf description in "See Also" section of nan_to_num documentation to POSITIVE or negative infinity. Must have been a typo. Commit: 04a9eac54dff8f74d6433b25c3cb722ccd98b077 https://github.com/numpy/numpy/commit/04a9eac54dff8f74d6433b25c3cb722ccd98b077 Author: Julian Taylor Date: 2016-09-21 (Wed, 21 Sep 2016) Changed paths: M numpy/lib/type_check.py Log Message: ----------- Merge pull request #8075 from ysshah/patch-1 DOC: Fix description of isinf in nan_to_num Compare: https://github.com/numpy/numpy/compare/866bc024ab4f...04a9eac54dff From noreply at github.com Thu Sep 22 04:31:12 2016 From: noreply at github.com (GitHub) Date: Thu, 22 Sep 2016 01:31:12 -0700 Subject: [Numpy-svn] [numpy/numpy] 2a6547: Update somethingaboutorange URL to nose.readthedoc... Message-ID: <57e396d084cb5_17d53f90de1711381589c@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 2a6547ca608644a8ed583996e74f86792959263c https://github.com/numpy/numpy/commit/2a6547ca608644a8ed583996e74f86792959263c Author: naveenarun Date: 2016-09-21 (Wed, 21 Sep 2016) Changed paths: M INSTALL.rst.txt M doc/TESTS.rst.txt M numpy/testing/utils.py Log Message: ----------- Update somethingaboutorange URL to nose.readthedocs.io Commit: ade91ea2f28284668fbf78971538ac4827d653b8 https://github.com/numpy/numpy/commit/ade91ea2f28284668fbf78971538ac4827d653b8 Author: Ralf Gommers Date: 2016-09-22 (Thu, 22 Sep 2016) Changed paths: M INSTALL.rst.txt M doc/TESTS.rst.txt M numpy/testing/utils.py Log Message: ----------- Merge pull request #8081 from naveenarun/fix-nose-urls Update outdated Nose URL to nose.readthedocs.io Compare: https://github.com/numpy/numpy/compare/04a9eac54dff...ade91ea2f282 From noreply at github.com Fri Sep 23 04:28:42 2016 From: noreply at github.com (GitHub) Date: Fri, 23 Sep 2016 01:28:42 -0700 Subject: [Numpy-svn] [numpy/numpy] 7efef9: BUG: non-integers can end up in dtype offsets Message-ID: <57e4e7ba2fa03_237e3febabe9d14026985@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7efef9dca97304e048038193fdf1c69b56ecc10a https://github.com/numpy/numpy/commit/7efef9dca97304e048038193fdf1c69b56ecc10a Author: Allan Haldane Date: 2016-09-22 (Thu, 22 Sep 2016) Changed paths: M numpy/core/src/multiarray/common.c M numpy/core/src/multiarray/descriptor.c M numpy/core/tests/test_dtype.py Log Message: ----------- BUG: non-integers can end up in dtype offsets Fix is to convert offsets to python ints at dtype creation. Fixes #8059 Commit: 6463a760273a43441e96db7713c443136196d850 https://github.com/numpy/numpy/commit/6463a760273a43441e96db7713c443136196d850 Author: seberg Date: 2016-09-23 (Fri, 23 Sep 2016) Changed paths: M numpy/core/src/multiarray/common.c M numpy/core/src/multiarray/descriptor.c M numpy/core/tests/test_dtype.py Log Message: ----------- Merge pull request #8080 from ahaldane/int_offsets_fix BUG: non-integers can end up in dtype offsets Compare: https://github.com/numpy/numpy/compare/ade91ea2f282...6463a760273a From noreply at github.com Fri Sep 23 13:54:10 2016 From: noreply at github.com (GitHub) Date: Fri, 23 Sep 2016 10:54:10 -0700 Subject: [Numpy-svn] [numpy/numpy] 8478ba: DOC: Fix erroneous return type description for np.... Message-ID: <57e56c42d0293_26923ff43e8dd13875190@hookshot-fe1-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8478ba7e9d12272e70931878c83127cb7290d9c6 https://github.com/numpy/numpy/commit/8478ba7e9d12272e70931878c83127cb7290d9c6 Author: Stuart Archibald Date: 2016-09-23 (Fri, 23 Sep 2016) Changed paths: M numpy/lib/polynomial.py Log Message: ----------- DOC: Fix erroneous return type description for np.roots. np.roots() does not always return complex roots, the roots of a polynomial depend its coefficients and therefore may be in the real or complex domain. e.g. ``` >>> (np.roots([1,2,3])).dtype dtype('complex128') >>> (np.roots([1,2,])).dtype dtype('float64') ``` Commit: 2de3dc4aa67f8842172d355b25889bf1c537de9c https://github.com/numpy/numpy/commit/2de3dc4aa67f8842172d355b25889bf1c537de9c Author: Charles Harris Date: 2016-09-23 (Fri, 23 Sep 2016) Changed paths: M numpy/lib/polynomial.py Log Message: ----------- Merge pull request #8084 from stuartarchibald/wip/np_lib_poly_roots_doc_fix DOC: Fix erroneous return type description for np.roots. Compare: https://github.com/numpy/numpy/compare/6463a760273a...2de3dc4aa67f From noreply at github.com Fri Sep 23 18:40:44 2016 From: noreply at github.com (GitHub) Date: Fri, 23 Sep 2016 15:40:44 -0700 Subject: [Numpy-svn] [numpy/numpy] aef8d7: MAINT: Remove duplicate randint helpers code. Message-ID: <57e5af6c56647_34623f8bebd15130800e8@hookshot-fe4-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: aef8d7c5e7f5673e7a12a2688e07312522a96b94 https://github.com/numpy/numpy/commit/aef8d7c5e7f5673e7a12a2688e07312522a96b94 Author: gfyoung Date: 2016-09-23 (Fri, 23 Sep 2016) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- MAINT: Remove duplicate randint helpers code. Continuation of gh-8071 by removing the duplicate randint Cython code that is not generated via Tempita. Commit: c6185dd350854cd5fc98cbc42e648b57bc670a60 https://github.com/numpy/numpy/commit/c6185dd350854cd5fc98cbc42e648b57bc670a60 Author: Charles Harris Date: 2016-09-23 (Fri, 23 Sep 2016) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- Merge pull request #8088 from gfyoung/randint-tempita-cont MAINT: Remove duplicate randint helpers code. Compare: https://github.com/numpy/numpy/compare/2de3dc4aa67f...c6185dd35085 From noreply at github.com Fri Sep 23 19:58:56 2016 From: noreply at github.com (GitHub) Date: Fri, 23 Sep 2016 16:58:56 -0700 Subject: [Numpy-svn] [numpy/numpy] 36f884: BUG: financial.pmt modifies input #8055 Message-ID: <57e5c1c09e98f_73223fe99c13313c424c0@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 36f88442209e74f0fcb63ec2aa3868b63f7dafb4 https://github.com/numpy/numpy/commit/36f88442209e74f0fcb63ec2aa3868b63f7dafb4 Author: naveenarun Date: 2016-09-23 (Fri, 23 Sep 2016) Changed paths: M INSTALL.rst.txt M doc/TESTS.rst.txt M numpy/lib/financial.py M numpy/testing/utils.py Log Message: ----------- BUG: financial.pmt modifies input #8055 financial.pmt masked rate array in place, changing rate array. Changed to mask to a new array, preserving the original rate array. Commit: a6574b2f080e4050e4b091fd3fa71be1f377f895 https://github.com/numpy/numpy/commit/a6574b2f080e4050e4b091fd3fa71be1f377f895 Author: Charles Harris Date: 2016-09-23 (Fri, 23 Sep 2016) Changed paths: M numpy/lib/financial.py Log Message: ----------- Merge pull request #8087 from hodgka/master BUG: financial.pmt modifies input #8055 Compare: https://github.com/numpy/numpy/compare/c6185dd35085...a6574b2f080e From noreply at github.com Sat Sep 24 19:23:49 2016 From: noreply at github.com (GitHub) Date: Sat, 24 Sep 2016 16:23:49 -0700 Subject: [Numpy-svn] [numpy/numpy] de84ba: MAINT: Add deprecation warning to multi-field view... Message-ID: <57e70b05b115c_55f53f81a4dfd13475897@hookshot-fe3-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: de84ba263abc8472f37aa8e08a26da84cdbd0d2a https://github.com/numpy/numpy/commit/de84ba263abc8472f37aa8e08a26da84cdbd0d2a Author: Allan Haldane Date: 2016-09-24 (Sat, 24 Sep 2016) Changed paths: M doc/release/1.12.0-notes.rst M numpy/core/src/multiarray/convert.c M numpy/core/src/multiarray/dtype_transfer.c M numpy/core/src/multiarray/mapping.c M numpy/core/src/multiarray/methods.c M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_nditer.py M numpy/core/tests/test_records.py M numpy/ma/tests/test_core.py Log Message: ----------- MAINT: Add deprecation warning to multi-field views/assignment Behavior of multi-field indexes will change in 1.13: Multi-field indexes will return a view (not a copy) and assignment between structures with non-identical fieldnames occurs "by position" (not "by fieldname"): >>> a = zeros(10, dtype=[('x', 'i8'), ('y', 'i8'), ('z', 'i8')]) >>> a[['x', 'z']].view('i4') # Deprecation warning for multifield view >>> b = ones(10, dtype=[('y', 'i4'), ('x', 'f4')]) >>> a[:] = b # Deprecation warning for multifield assignment Commit: a17e905faa20fcdd1b3f039bceef6efa19671bb3 https://github.com/numpy/numpy/commit/a17e905faa20fcdd1b3f039bceef6efa19671bb3 Author: Charles Harris Date: 2016-09-24 (Sat, 24 Sep 2016) Changed paths: M doc/release/1.12.0-notes.rst M numpy/core/src/multiarray/convert.c M numpy/core/src/multiarray/dtype_transfer.c M numpy/core/src/multiarray/mapping.c M numpy/core/src/multiarray/methods.c M numpy/core/tests/test_multiarray.py M numpy/core/tests/test_nditer.py M numpy/core/tests/test_records.py M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #6054 from ahaldane/warnview WIP: MAINT: Add deprecation warning to views of multi-field indexes Compare: https://github.com/numpy/numpy/compare/a6574b2f080e...a17e905faa20 From noreply at github.com Sun Sep 25 11:16:48 2016 From: noreply at github.com (GitHub) Date: Sun, 25 Sep 2016 08:16:48 -0700 Subject: [Numpy-svn] [numpy/numpy] 10723a: MAINT: add avx __builtin_cpu_supports and target a... Message-ID: <57e7ea60311c5_4a33ff8bb3a912c176327@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 10723a9b73feb59278bf6e0c8ad0830c3ddb0600 https://github.com/numpy/numpy/commit/10723a9b73feb59278bf6e0c8ad0830c3ddb0600 Author: Julian Taylor Date: 2016-08-27 (Sat, 27 Aug 2016) Changed paths: M numpy/core/include/numpy/npy_common.h M numpy/core/setup_common.py Log Message: ----------- MAINT: add avx __builtin_cpu_supports and target attribute checks NPY_CPU_SUPPORTS_AVX2 checks at runtime if AVX2 is supported Commit: 0a2276a66f7bfbce4c3cf6aa1f0f820a24342bf5 https://github.com/numpy/numpy/commit/0a2276a66f7bfbce4c3cf6aa1f0f820a24342bf5 Author: Julian Taylor Date: 2016-08-27 (Sat, 27 Aug 2016) Changed paths: M numpy/core/code_generators/generate_umath.py Log Message: ----------- MAINT: add support for runtime selected ufunc SIMD loops Commit: 37740eb8c09dbc6b074aa10298401f994cd7fa55 https://github.com/numpy/numpy/commit/37740eb8c09dbc6b074aa10298401f994cd7fa55 Author: Julian Taylor Date: 2016-08-27 (Sat, 27 Aug 2016) Changed paths: M numpy/core/code_generators/generate_umath.py M numpy/core/src/umath/loops.c.src M numpy/core/src/umath/loops.h.src Log Message: ----------- ENH: add some AVX2 optimized integer ufunc loops Selected at runtime depending on CPU features. Commit: a860256f88c8ebb3f74eb7e90ee89f05dedf3a7c https://github.com/numpy/numpy/commit/a860256f88c8ebb3f74eb7e90ee89f05dedf3a7c Author: Julian Taylor Date: 2016-09-24 (Sat, 24 Sep 2016) Changed paths: M numpy/core/include/numpy/npy_common.h M numpy/core/setup_common.py Log Message: ----------- MAINT: add runtime check for AVX macros Commit: ae32e780d85e8e42402bc1fee2bbdb3ee90426c4 https://github.com/numpy/numpy/commit/ae32e780d85e8e42402bc1fee2bbdb3ee90426c4 Author: Julian Taylor Date: 2016-09-24 (Sat, 24 Sep 2016) Changed paths: M doc/release/1.12.0-notes.rst Log Message: ----------- DOC: add release note entry for AVX2 integer loops Commit: 0887da9386e812d2769744afd6c58a927d6cbb45 https://github.com/numpy/numpy/commit/0887da9386e812d2769744afd6c58a927d6cbb45 Author: Julian Taylor Date: 2016-09-25 (Sun, 25 Sep 2016) Changed paths: M doc/release/1.12.0-notes.rst M numpy/core/code_generators/generate_umath.py M numpy/core/include/numpy/npy_common.h M numpy/core/setup_common.py M numpy/core/src/umath/loops.c.src M numpy/core/src/umath/loops.h.src Log Message: ----------- Merge pull request #7980 from juliantaylor/avx-runtime ENH: Add ability to runtime select ufunc loops, add AVX2 integer loops Compare: https://github.com/numpy/numpy/compare/a17e905faa20...0887da9386e8 From noreply at github.com Mon Sep 26 14:03:46 2016 From: noreply at github.com (GitHub) Date: Mon, 26 Sep 2016 11:03:46 -0700 Subject: [Numpy-svn] [numpy/numpy] c9895b: MAINT: fix assert_raises_regex when used as a cont... Message-ID: <57e96302ba5_695e3ff8eb8bd14c43042@hookshot-fe5-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: c9895bcf50ee0a7e0b9f4fe019860f16c3515ec7 https://github.com/numpy/numpy/commit/c9895bcf50ee0a7e0b9f4fe019860f16c3515ec7 Author: Stephan Hoyer Date: 2016-09-26 (Mon, 26 Sep 2016) Changed paths: M numpy/lib/tests/test_utils.py M numpy/testing/utils.py Log Message: ----------- MAINT: fix assert_raises_regex when used as a context manager Formerly, I got DeprecationWarnings about callable being None when I tested on Python 3. Commit: 7ccf0e08917d27bc0eba34013c1822b00a66ca6d https://github.com/numpy/numpy/commit/7ccf0e08917d27bc0eba34013c1822b00a66ca6d Author: Charles Harris Date: 2016-09-26 (Mon, 26 Sep 2016) Changed paths: M numpy/lib/tests/test_utils.py M numpy/testing/utils.py Log Message: ----------- Merge pull request #8093 from shoyer/assert-raises-regex MAINT: fix assert_raises_regex when used as a context manager Compare: https://github.com/numpy/numpy/compare/0887da9386e8...7ccf0e08917d From noreply at github.com Wed Sep 28 12:38:38 2016 From: noreply at github.com (GitHub) Date: Wed, 28 Sep 2016 09:38:38 -0700 Subject: [Numpy-svn] [numpy/numpy] 4c788f: ENH: Allows contraction order optimization in eins... Message-ID: <57ebf20e15148_30e23fc64404b13c64799@hookshot-fe2-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 4c788f4e7f6f5af6b1c3cda98388768912349b46 https://github.com/numpy/numpy/commit/4c788f4e7f6f5af6b1c3cda98388768912349b46 Author: Daniel Smith Date: 2016-09-26 (Mon, 26 Sep 2016) Changed paths: M doc/release/1.12.0-notes.rst M numpy/add_newdocs.py M numpy/core/__init__.py A numpy/core/einsumfunc.py M numpy/core/numeric.py M numpy/core/src/multiarray/multiarraymodule.c M numpy/core/tests/test_einsum.py Log Message: ----------- ENH: Allows contraction order optimization in einsum function. Commit: 86c780d1c60473b594db7a241419167ebc3df687 https://github.com/numpy/numpy/commit/86c780d1c60473b594db7a241419167ebc3df687 Author: Charles Harris Date: 2016-09-28 (Wed, 28 Sep 2016) Changed paths: M doc/release/1.12.0-notes.rst M numpy/add_newdocs.py M numpy/core/__init__.py A numpy/core/einsumfunc.py M numpy/core/numeric.py M numpy/core/src/multiarray/multiarraymodule.c M numpy/core/tests/test_einsum.py Log Message: ----------- Merge pull request #5488 from dgasmith/opt_einsum ENH: add `contract`: optimizing numpy's einsum expression Compare: https://github.com/numpy/numpy/compare/7ccf0e08917d...86c780d1c604 From noreply at github.com Fri Sep 30 20:20:06 2016 From: noreply at github.com (GitHub) Date: Fri, 30 Sep 2016 17:20:06 -0700 Subject: [Numpy-svn] [numpy/numpy] a7eb3c: Fix test code on cpuinfo's main function Message-ID: <57ef013643325_57303f8a56f3d138102225@hookshot-fe6-cp1-prd.iad.github.net.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: a7eb3c7452afabde4cc69a85d8e1e5145ce05412 https://github.com/numpy/numpy/commit/a7eb3c7452afabde4cc69a85d8e1e5145ce05412 Author: Gustavo Serra Scalet Date: 2016-09-30 (Fri, 30 Sep 2016) Changed paths: M numpy/distutils/cpuinfo.py Log Message: ----------- Fix test code on cpuinfo's main function Due to future print import (py3k style), the commented code should also have the strings enclosed with parentheses or else it'll break. Commit: 39e2bc344f80151469fad4ac5cac55d682874553 https://github.com/numpy/numpy/commit/39e2bc344f80151469fad4ac5cac55d682874553 Author: Stephan Hoyer Date: 2016-09-30 (Fri, 30 Sep 2016) Changed paths: M numpy/distutils/cpuinfo.py Log Message: ----------- Merge pull request #8104 from gut/fix-test-code Fix test code on cpuinfo's main function Compare: https://github.com/numpy/numpy/compare/86c780d1c604...39e2bc344f80