From noreply at github.com Sat Dec 1 17:50:05 2012 From: noreply at github.com (GitHub) Date: Sat, 01 Dec 2012 14:50:05 -0800 Subject: [Numpy-svn] [numpy/numpy] 300783: BUG: Fix bad memory access for 0-sized outputs in ... Message-ID: <50ba899d6e5cd_4df81a19af475964@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 300783c0ed1518ad1335f3aad9a4bda35f5e1123 https://github.com/numpy/numpy/commit/300783c0ed1518ad1335f3aad9a4bda35f5e1123 Author: Sebastian Berg Date: 2012-12-01 (Sat, 01 Dec 2012) Changed paths: M numpy/core/src/multiarray/multiarraymodule.c M numpy/core/tests/test_regression.py Log Message: ----------- BUG: Fix bad memory access for 0-sized outputs in numpy dot This fixes a bug where bad memory was written to in non-blas numpy if the output was a (0, N) array. Closes "Issue gh-2775". Commit: a289be867f810e076eec4558610032bf4bc5a174 https://github.com/numpy/numpy/commit/a289be867f810e076eec4558610032bf4bc5a174 Author: Charles Harris Date: 2012-12-01 (Sat, 01 Dec 2012) Changed paths: M numpy/core/src/multiarray/multiarraymodule.c M numpy/core/tests/test_regression.py Log Message: ----------- Merge pull request #2777 from seberg/issue2775 BUG: Fix bad memory access for 0-sized outputs in numpy dot Compare: https://github.com/numpy/numpy/compare/2e28619f968c...a289be867f81 From noreply at github.com Mon Dec 3 19:03:07 2012 From: noreply at github.com (GitHub) Date: Mon, 03 Dec 2012 16:03:07 -0800 Subject: [Numpy-svn] [numpy/numpy] 7855b2: API Make PyArray_DATA return void* Message-ID: <50bd3dbb9b285_16c512baaec886d5@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7855b2605d96a5b9efe1ae48cb8d7554caaba1de https://github.com/numpy/numpy/commit/7855b2605d96a5b9efe1ae48cb8d7554caaba1de Author: Luis Pedro Coelho Date: 2012-12-03 (Mon, 03 Dec 2012) Changed paths: M numpy/core/include/numpy/ndarraytypes.h M numpy/core/src/multiarray/getset.c Log Message: ----------- API Make PyArray_DATA return void* PyArray_DATA is documented as returning void*. Changing it to return char* breaks code such as (in C++):: float* my_floats = static_cast(PyArray_DATA(my_array)); PyArray_BYTES returns char*, but is otherwise the same function. Commit: b531ed2c4ae4c51eced5973f56690b9096227b3e https://github.com/numpy/numpy/commit/b531ed2c4ae4c51eced5973f56690b9096227b3e Author: Charles Harris Date: 2012-12-03 (Mon, 03 Dec 2012) Changed paths: M numpy/core/include/numpy/ndarraytypes.h M numpy/core/src/multiarray/getset.c Log Message: ----------- Merge pull request #2780 from luispedro/pyarray-data-voidp API Make PyArray_DATA return void* Compare: https://github.com/numpy/numpy/compare/a289be867f81...b531ed2c4ae4 From noreply at github.com Mon Dec 3 20:36:08 2012 From: noreply at github.com (GitHub) Date: Mon, 03 Dec 2012 17:36:08 -0800 Subject: [Numpy-svn] [numpy/numpy] 2d841a: TST: Catch possible warnings Message-ID: <50bd5388a23d_29031633ae841492@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 2d841a8edc7acc3054937912b150d7a23764c41c https://github.com/numpy/numpy/commit/2d841a8edc7acc3054937912b150d7a23764c41c Author: Ond?ej ?ert?k Date: 2012-11-14 (Wed, 14 Nov 2012) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- TST: Catch possible warnings Previously the test sometimes fails with the following error: ====================================================================== ERROR: Test a special case for var ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/travis/virtualenv/python3.2/lib/python3.2/site-packages/numpy/ma/tests/test_core.py", line 2731, in test_varstd_specialcases _ = method(out=mout) File "/home/travis/virtualenv/python3.2/lib/python3.2/site-packages/numpy/ma/core.py", line 4778, in std np.power(out, 0.5, out=out, casting='unsafe') RuntimeWarning: invalid value encountered in power ---------------------------------------------------------------------- Now we catch it, as recommended by the thread: http://old.nabble.com/Should-abs(-nan-)-be-supported--td34389839.html Commit: 7b75899f586ee476affbf89572d0105996725d94 https://github.com/numpy/numpy/commit/7b75899f586ee476affbf89572d0105996725d94 Author: Ond?ej ?ert?k Date: 2012-12-03 (Mon, 03 Dec 2012) Changed paths: M numpy/ma/tests/test_core.py Log Message: ----------- Merge pull request #2745 from certik/fix_warnings TST: Catch possible warnings Compare: https://github.com/numpy/numpy/compare/b531ed2c4ae4...7b75899f586e From noreply at github.com Tue Dec 4 15:25:47 2012 From: noreply at github.com (GitHub) Date: Tue, 04 Dec 2012 12:25:47 -0800 Subject: [Numpy-svn] [numpy/numpy] d0c0f1: DOC: use bold for section names, monospace for var... Message-ID: <50be5c4b4a27b_1704ecdaec774f5@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: d0c0f14260e9ad758c398902288100d533ca3ea5 https://github.com/numpy/numpy/commit/d0c0f14260e9ad758c398902288100d533ca3ea5 Author: endolith Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M doc/HOWTO_DOCUMENT.rst.txt Log Message: ----------- DOC: use bold for section names, monospace for variables in HOWTO_DOCUMENT. From noreply at github.com Tue Dec 4 18:27:09 2012 From: noreply at github.com (GitHub) Date: Tue, 04 Dec 2012 15:27:09 -0800 Subject: [Numpy-svn] [numpy/numpy] b46eec: FIX: Use 'pip' for travis build. Message-ID: <50be86cddd5dc_2c30176eae81778e1@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: b46eecbf0477f7a1cee8f2f4cefc69206d86a3cc https://github.com/numpy/numpy/commit/b46eecbf0477f7a1cee8f2f4cefc69206d86a3cc Author: Nathaniel J. Smith Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M .travis.yml Log Message: ----------- FIX: Use 'pip' for travis build. Closes gh-2768. Commit: ad9c2f47b491fbf19c48e9c2dc7fd56ddca61685 https://github.com/numpy/numpy/commit/ad9c2f47b491fbf19c48e9c2dc7fd56ddca61685 Author: Gabriel Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M numpy/distutils/exec_command.py Log Message: ----------- Assume we can use sys.stdout.fileno() and friends. The workaround shouldn't be necessary in a recent python shell. Tested in python, ipython. In fact, distutils is almost never imported and run manually from an interactive shell. This removes the use of `sys.__stdout__`, which broke with distribute 0.6.30 on Python 3. Compare: https://github.com/numpy/numpy/compare/3a52aa06c50e...ad9c2f47b491 From noreply at github.com Tue Dec 4 18:36:54 2012 From: noreply at github.com (GitHub) Date: Tue, 04 Dec 2012 15:36:54 -0800 Subject: [Numpy-svn] [numpy/numpy] e4fe78: FIX: base always refers to the original subclass Message-ID: <50be8916a28d5_2c30176eae81808c0@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: e4fe78926c0dac9ee2bc5678d4d6a567598e2c3a https://github.com/numpy/numpy/commit/e4fe78926c0dac9ee2bc5678d4d6a567598e2c3a Author: GaelVaroquaux Date: 2012-11-15 (Thu, 15 Nov 2012) Changed paths: M numpy/core/src/multiarray/arrayobject.c M numpy/core/tests/test_memmap.py Log Message: ----------- FIX: base always refers to the original subclass Closes #470 The use case is that if b is a memmap, 'np.asarray(b).base' should be a memmap, and thus we put is to b in such a situation. Commit: b3bcda21d6586cb304b0278c944c9b2b740283da https://github.com/numpy/numpy/commit/b3bcda21d6586cb304b0278c944c9b2b740283da Author: GaelVaroquaux Date: 2012-11-15 (Thu, 15 Nov 2012) Changed paths: M numpy/core/src/multiarray/arrayobject.c Log Message: ----------- COMMENT: fix grammar in comment Commit: 69d57d074c7e3ad9b73954f5f2e1519e3d2760b7 https://github.com/numpy/numpy/commit/69d57d074c7e3ad9b73954f5f2e1519e3d2760b7 Author: GaelVaroquaux Date: 2012-11-15 (Thu, 15 Nov 2012) Changed paths: M numpy/core/src/multiarray/arrayobject.c Log Message: ----------- MISC: fix whitespace in C file Commit: d8370da29094cebb33271604d941ca5789929a26 https://github.com/numpy/numpy/commit/d8370da29094cebb33271604d941ca5789929a26 Author: Ond?ej ?ert?k Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M numpy/core/src/multiarray/arrayobject.c M numpy/core/tests/test_memmap.py Log Message: ----------- Merge pull request #2746 from GaelVaroquaux/fix-470 FIX: base always refers to the original subclass Compare: https://github.com/numpy/numpy/compare/d0c0f14260e9...d8370da29094 From noreply at github.com Tue Dec 4 18:44:42 2012 From: noreply at github.com (GitHub) Date: Tue, 04 Dec 2012 15:44:42 -0800 Subject: [Numpy-svn] [numpy/numpy] 622795: API Make PyArray_DATA return void* Message-ID: <50be8aeaaaa9a_669816d1af4896b8@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: 6227952f8fe3001c27a41910159752f80e46b4db https://github.com/numpy/numpy/commit/6227952f8fe3001c27a41910159752f80e46b4db Author: Luis Pedro Coelho Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M numpy/core/include/numpy/ndarraytypes.h M numpy/core/src/multiarray/getset.c Log Message: ----------- API Make PyArray_DATA return void* PyArray_DATA is documented as returning void*. Changing it to return char* breaks code such as (in C++):: float* my_floats = static_cast(PyArray_DATA(my_array)); PyArray_BYTES returns char*, but is otherwise the same function. Commit: a8a877e3269242107c34f1228bb129fc3207a9af https://github.com/numpy/numpy/commit/a8a877e3269242107c34f1228bb129fc3207a9af Author: Ond?ej ?ert?k Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M numpy/core/include/numpy/ndarraytypes.h M numpy/core/src/multiarray/getset.c Log Message: ----------- Merge pull request #2784 from certik/backport2780 Backport #2780 Compare: https://github.com/numpy/numpy/compare/ad9c2f47b491...a8a877e32692 From noreply at github.com Wed Dec 5 08:21:11 2012 From: noreply at github.com (GitHub) Date: Wed, 05 Dec 2012 05:21:11 -0800 Subject: [Numpy-svn] [numpy/numpy] 14fc78: BUG: gh-2785, np.unique: TypeError: requested sort... Message-ID: <50bf4a47cca36_7f3e166caf04992e@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.6.x Home: https://github.com/numpy/numpy Commit: 14fc78319e1b61cb2806be7059f78d03a02bc7f7 https://github.com/numpy/numpy/commit/14fc78319e1b61cb2806be7059f78d03a02bc7f7 Author: Bradley M. Froehle Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M numpy/core/tests/test_regression.py M numpy/lib/arraysetops.py Log Message: ----------- BUG: gh-2785, np.unique: TypeError: requested sort not available for type Revert "BUG: ticket #2063, make unique return consistent index." This reverts commit 74b9f5eef8fac643bf9012dbb2ac6b4b19f46892. Conflicts: numpy/core/tests/test_regression.py This commit introduced a regression in `np.unique` for certain data types: >>> A = np.array([[1, 2], [1, 3], [1, 2]], dtype='i') >>> B, I, J = np.unique(A.view([('', A.dtype)]*A.shape[1]), True, True) Traceback (most recent call last): File ".../numpy/lib/arraysetops.py", line 178, in unique perm = ar.argsort(kind='mergesort') TypeError: requested sort not available for type Commit: 46e3b4cc9d9101ceaafffc6bb8faafee1bdc5fc9 https://github.com/numpy/numpy/commit/46e3b4cc9d9101ceaafffc6bb8faafee1bdc5fc9 Author: Bradley M. Froehle Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M numpy/core/tests/test_regression.py Log Message: ----------- TST: Add test for gh-2785. Ensure that np.unique works on data types with special comparators. Commit: 3f5862193a6085a4d59f4dde8d006670a24cae04 https://github.com/numpy/numpy/commit/3f5862193a6085a4d59f4dde8d006670a24cae04 Author: njsmith Date: 2012-12-05 (Wed, 05 Dec 2012) Changed paths: M numpy/core/tests/test_regression.py M numpy/lib/arraysetops.py Log Message: ----------- Merge pull request #2787 from bfroehle/unique_argsort np.unique: TypeError: requested sort not available for type Compare: https://github.com/numpy/numpy/compare/023e559eda10...3f5862193a60 From noreply at github.com Thu Dec 6 17:17:55 2012 From: noreply at github.com (GitHub) Date: Thu, 06 Dec 2012 14:17:55 -0800 Subject: [Numpy-svn] [numpy/numpy] 3190a5: FIX: base always refers to the original subclass Message-ID: <50c1199346987_7275e9baec149426@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: 3190a57e37cf0ced17f66e5f325c70392dc81b8c https://github.com/numpy/numpy/commit/3190a57e37cf0ced17f66e5f325c70392dc81b8c Author: GaelVaroquaux Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M numpy/core/src/multiarray/arrayobject.c M numpy/core/tests/test_memmap.py Log Message: ----------- FIX: base always refers to the original subclass Closes #470 The use case is that if b is a memmap, 'np.asarray(b).base' should be a memmap, and thus we put is to b in such a situation. Commit: 0c50c56a0fd42798f54beb38a6d6fc2c3abbd505 https://github.com/numpy/numpy/commit/0c50c56a0fd42798f54beb38a6d6fc2c3abbd505 Author: GaelVaroquaux Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M numpy/core/src/multiarray/arrayobject.c Log Message: ----------- COMMENT: fix grammar in comment Commit: c9a496636b608a76b07ba7778decf2eb9b2892b0 https://github.com/numpy/numpy/commit/c9a496636b608a76b07ba7778decf2eb9b2892b0 Author: GaelVaroquaux Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M numpy/core/src/multiarray/arrayobject.c Log Message: ----------- MISC: fix whitespace in C file Commit: 807cabd63dab233af6524404cbd07b3fb6f36ae1 https://github.com/numpy/numpy/commit/807cabd63dab233af6524404cbd07b3fb6f36ae1 Author: Ond?ej ?ert?k Date: 2012-12-06 (Thu, 06 Dec 2012) Changed paths: M numpy/core/src/multiarray/arrayobject.c M numpy/core/tests/test_memmap.py Log Message: ----------- Merge pull request #2789 from certik/backport2746 Backports #2746 Compare: https://github.com/numpy/numpy/compare/a8a877e32692...807cabd63dab From noreply at github.com Thu Dec 6 17:18:30 2012 From: noreply at github.com (GitHub) Date: Thu, 06 Dec 2012 14:18:30 -0800 Subject: [Numpy-svn] [numpy/numpy] dd14dd: BUG: Incorrect type in _attempt_nocopy_reshape Message-ID: <50c119b64bae7_7275e9baec1503a@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: dd14dd0d09164a605b599e1a909c096c746cec47 https://github.com/numpy/numpy/commit/dd14dd0d09164a605b599e1a909c096c746cec47 Author: Sebastian Berg Date: 2012-12-04 (Tue, 04 Dec 2012) Changed paths: M numpy/core/src/multiarray/shape.c Log Message: ----------- BUG: Incorrect type in _attempt_nocopy_reshape This caused a segmentation fault for some large reshapes as reported by Terry J. Ligocki on the mailing list. Commit: 5487ac312c9dbe35fb9fdebedeb79ddb7d7cd96b https://github.com/numpy/numpy/commit/5487ac312c9dbe35fb9fdebedeb79ddb7d7cd96b Author: Ond?ej ?ert?k Date: 2012-12-06 (Thu, 06 Dec 2012) Changed paths: M numpy/core/src/multiarray/shape.c Log Message: ----------- Merge pull request #2782 from certik/backport2754 Backports #2754 Compare: https://github.com/numpy/numpy/compare/807cabd63dab...5487ac312c9d From noreply at github.com Thu Dec 6 18:23:58 2012 From: noreply at github.com (GitHub) Date: Thu, 06 Dec 2012 15:23:58 -0800 Subject: [Numpy-svn] [numpy/numpy] c97f40: BLD: MSVC build fix for switch of PyArray_DATA to ... Message-ID: <50c1290e70e7a_224a1a75ae8924d@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: c97f405d47d059c00df6b2aea7f79fc5c520dda6 https://github.com/numpy/numpy/commit/c97f405d47d059c00df6b2aea7f79fc5c520dda6 Author: Mark Wiebe Date: 2012-12-06 (Thu, 06 Dec 2012) Changed paths: M numpy/core/src/multiarray/common.c M numpy/core/src/multiarray/ctors.c M numpy/core/src/multiarray/getset.c M numpy/core/src/multiarray/item_selection.c M numpy/core/src/multiarray/mapping.c M numpy/core/src/multiarray/methods.c M numpy/core/src/multiarray/multiarray_tests.c.src M numpy/core/src/multiarray/multiarraymodule.c M numpy/core/src/multiarray/shape.c Log Message: ----------- BLD: MSVC build fix for switch of PyArray_DATA to void* Build errors because void* doesn't have a size, so adding an offset to it is disallowed. From noreply at github.com Thu Dec 6 18:25:23 2012 From: noreply at github.com (GitHub) Date: Thu, 06 Dec 2012 15:25:23 -0800 Subject: [Numpy-svn] [numpy/numpy] cb0ee5: BLD: MSVC build fix for switch of PyArray_DATA to ... Message-ID: <50c129636b7bc_23bb1b48aec99993@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: cb0ee58cb2b4c3046f4b126933849b3914d0aed6 https://github.com/numpy/numpy/commit/cb0ee58cb2b4c3046f4b126933849b3914d0aed6 Author: Mark Wiebe Date: 2012-12-06 (Thu, 06 Dec 2012) Changed paths: M numpy/core/src/multiarray/common.c M numpy/core/src/multiarray/ctors.c M numpy/core/src/multiarray/getset.c M numpy/core/src/multiarray/item_selection.c M numpy/core/src/multiarray/mapping.c M numpy/core/src/multiarray/methods.c M numpy/core/src/multiarray/multiarray_tests.c.src M numpy/core/src/multiarray/multiarraymodule.c M numpy/core/src/multiarray/shape.c Log Message: ----------- BLD: MSVC build fix for switch of PyArray_DATA to void* Build errors because void* doesn't have a size, so adding an offset to it is disallowed. From noreply at github.com Sat Dec 8 06:21:48 2012 From: noreply at github.com (GitHub) Date: Sat, 08 Dec 2012 03:21:48 -0800 Subject: [Numpy-svn] [numpy/numpy] c6c95f: add platform specific python include directories t... Message-ID: <50c322ccab606_367c1cefae4721ae@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: c6c95f4fd6e117ee70ece40e61f567480f628a8e https://github.com/numpy/numpy/commit/c6c95f4fd6e117ee70ece40e61f567480f628a8e Author: Julian Taylor Date: 2012-12-05 (Wed, 05 Dec 2012) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- add platform specific python include directories to search paths the generic and platform specific path diverge in python3.3 in ubuntu 13.04 Commit: b7b54cdd91305e9334564c7bf388192e35016c77 https://github.com/numpy/numpy/commit/b7b54cdd91305e9334564c7bf388192e35016c77 Author: Ralf Gommers Date: 2012-12-08 (Sat, 08 Dec 2012) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- Merge pull request #2791 from juliantaylor/ma-python add platform specific python include directories to search paths Compare: https://github.com/numpy/numpy/compare/c97f405d47d0...b7b54cdd9130 From noreply at github.com Sat Dec 8 14:57:30 2012 From: noreply at github.com (GitHub) Date: Sat, 08 Dec 2012 11:57:30 -0800 Subject: [Numpy-svn] [numpy/numpy] 0196ae: Fixes #2432. Rather than creating a new data arra... Message-ID: <50c39baa228ba_2526177cae493077@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 0196aedb5cfe00ce35e26fb3ff2081bae7d6f05e https://github.com/numpy/numpy/commit/0196aedb5cfe00ce35e26fb3ff2081bae7d6f05e Author: Michael Droettboom Date: 2012-11-15 (Thu, 15 Nov 2012) Changed paths: M numpy/ma/core.py Log Message: ----------- Fixes #2432. Rather than creating a new data array and assigning to it (which doesn't work when it is a recarray containing object fields), just create a copy with the np.array constructor. Commit: 457b78f503bbde12c4b2b2ecf25137d7244cca38 https://github.com/numpy/numpy/commit/457b78f503bbde12c4b2b2ecf25137d7244cca38 Author: Michael Droettboom Date: 2012-12-03 (Mon, 03 Dec 2012) Changed paths: M numpy/ma/tests/test_mrecords.py Log Message: ----------- Add a test Commit: 686bcfd8a7f8de0886f993fad9fc3608ba476708 https://github.com/numpy/numpy/commit/686bcfd8a7f8de0886f993fad9fc3608ba476708 Author: njsmith Date: 2012-12-08 (Sat, 08 Dec 2012) Changed paths: M numpy/ma/core.py M numpy/ma/tests/test_mrecords.py Log Message: ----------- Merge pull request #2747 from mdboom/fix-masked-recarrays-with-objects cannot access masked array rows with np.object dtype (Fixes #2432) Compare: https://github.com/numpy/numpy/compare/b7b54cdd9130...686bcfd8a7f8 From noreply at github.com Sat Dec 8 16:23:18 2012 From: noreply at github.com (GitHub) Date: Sat, 08 Dec 2012 13:23:18 -0800 Subject: [Numpy-svn] [numpy/numpy] 761ba5: Fix distutils build_src with 'c++' in swig_opts an... Message-ID: <50c3afc69b879_2526177cae4101450@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 761ba5dda03fededefea449672ace4560fd409a7 https://github.com/numpy/numpy/commit/761ba5dda03fededefea449672ace4560fd409a7 Author: Dan Hipschman Date: 2012-12-06 (Thu, 06 Dec 2012) Changed paths: M numpy/distutils/command/build_src.py Log Message: ----------- Fix distutils build_src with 'c++' in swig_opts and a c++ comment in the .i file (issue #2551) Commit: 9c5a9226e7d742e3549d4e53d07d53517096f123 https://github.com/numpy/numpy/commit/9c5a9226e7d742e3549d4e53d07d53517096f123 Author: Ralf Gommers Date: 2012-12-08 (Sat, 08 Dec 2012) Changed paths: M numpy/distutils/command/build_src.py Log Message: ----------- Merge pull request #2795 from d5h/issue_2551 Fix distutils build_src with 'c++' in swig_opts and a c++ comment in the... Compare: https://github.com/numpy/numpy/compare/686bcfd8a7f8...9c5a9226e7d7 From noreply at github.com Tue Dec 11 14:16:52 2012 From: noreply at github.com (GitHub) Date: Tue, 11 Dec 2012 11:16:52 -0800 Subject: [Numpy-svn] [numpy/numpy] e9beee: BUG: Fix bad call of internal functionand fix usag... Message-ID: <50c786a4882f2_2ea51ab7aec219a6@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: e9beee6dc9753e9f2e148d9e574d59f219390420 https://github.com/numpy/numpy/commit/e9beee6dc9753e9f2e148d9e574d59f219390420 Author: Travis E. Oliphant Date: 2012-11-29 (Thu, 29 Nov 2012) Changed paths: M numpy/core/src/multiarray/scalarapi.c Log Message: ----------- BUG: Fix bad call of internal functionand fix usage of PyField_Names Commit: 35dc14b0a59cf16be8ebdac04f7269ac455d5e43 https://github.com/numpy/numpy/commit/35dc14b0a59cf16be8ebdac04f7269ac455d5e43 Author: Travis E. Oliphant Date: 2012-12-11 (Tue, 11 Dec 2012) Changed paths: M numpy/core/src/multiarray/scalarapi.c Log Message: ----------- Merge pull request #2772 from ContinuumIO/field_names BUG: Fix bad call of internal function and fix usage of PyField_Names Compare: https://github.com/numpy/numpy/compare/9c5a9226e7d7...35dc14b0a59c From noreply at github.com Thu Dec 13 17:20:08 2012 From: noreply at github.com (GitHub) Date: Thu, 13 Dec 2012 14:20:08 -0800 Subject: [Numpy-svn] [numpy/numpy] 2da0d2: ENH: make random.choice size argument default to N... Message-ID: <50ca549858e2d_21a3e17ae465617@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 2da0d2288667202ff489ba7b922b534ca98768f3 https://github.com/numpy/numpy/commit/2da0d2288667202ff489ba7b922b534ca98768f3 Author: Sebastian Berg Date: 2012-12-06 (Thu, 06 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- ENH: make random.choice size argument default to None and allow tuple The size argument to random.choice should work like it does for all other functions in random as well. Commit: 7b10fc90097c514e24cd477af5c1e47349d1c0ac https://github.com/numpy/numpy/commit/7b10fc90097c514e24cd477af5c1e47349d1c0ac Author: Sebastian Berg Date: 2012-12-06 (Thu, 06 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- BUG: Do not sort new indices in random.choice. Random choice used np.unique to find new indices when replace was False and p given. This is wrong since unique will sort the indices. This solves the bug, but likely not ideal. Commit: 3e5b9b2366607bc3d85b60c34b370327e491e1ef https://github.com/numpy/numpy/commit/3e5b9b2366607bc3d85b60c34b370327e491e1ef Author: Sebastian Berg Date: 2012-12-06 (Thu, 06 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- BUG: Fix various problems in the previous commits. Thanks to @alan-isaac for pointing out the 0-d vs. scalar issue. Commit: 7f9d7bcf616371f3318513ca5500f19124f573e1 https://github.com/numpy/numpy/commit/7f9d7bcf616371f3318513ca5500f19124f573e1 Author: Sebastian Berg Date: 2012-12-06 (Thu, 06 Dec 2012) Changed paths: M numpy/random/tests/test_random.py Log Message: ----------- TST: Add tests for new feature and fix in random.choice Commit: 24a1bcdcef3ce15f43402d36c8efa077777a8a4c https://github.com/numpy/numpy/commit/24a1bcdcef3ce15f43402d36c8efa077777a8a4c Author: Sebastian Berg Date: 2012-12-06 (Thu, 06 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.c Log Message: ----------- MAINT: Regenerate mtrand.c Commit: cdeb48be603323b2db9e6cc3eb6441f75ec622f6 https://github.com/numpy/numpy/commit/cdeb48be603323b2db9e6cc3eb6441f75ec622f6 Author: Ond?ej ?ert?k Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.c M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_random.py Log Message: ----------- Merge pull request #2793 from certik/pull-request-2727 This is PR #2727, but rebased Compare: https://github.com/numpy/numpy/compare/35dc14b0a59c...cdeb48be6033 From noreply at github.com Thu Dec 13 19:32:09 2012 From: noreply at github.com (GitHub) Date: Thu, 13 Dec 2012 16:32:09 -0800 Subject: [Numpy-svn] [numpy/numpy] aa8c94: FIX: Add multiarch paths to the distutils' ones Message-ID: <50ca73893a7b7_b08d5baec4511a@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: aa8c948f8375854398b79aa3cfc027f18bf5344f https://github.com/numpy/numpy/commit/aa8c948f8375854398b79aa3cfc027f18bf5344f Author: Ond?ej ?ert?k Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- FIX: Add multiarch paths to the distutils' ones Thanks to Julian Taylor and Sandro Tosi from Debian for the original patch. Ralf has posted a link to the patch here: http://article.gmane.org/gmane.comp.python.numeric.general/51454 I have modified the patch to remove the bare except command only catch the OSError. Also I suppress the stderr. Commit: 5db0088b97982a5bf9b63ff4fe577a9e570525a4 https://github.com/numpy/numpy/commit/5db0088b97982a5bf9b63ff4fe577a9e570525a4 Author: Ond?ej ?ert?k Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- Merge pull request #2792 from certik/multi_arch Add multiarch paths to the distutils' ones Compare: https://github.com/numpy/numpy/compare/cdeb48be6033...5db0088b9798 From noreply at github.com Thu Dec 13 23:11:17 2012 From: noreply at github.com (GitHub) Date: Thu, 13 Dec 2012 20:11:17 -0800 Subject: [Numpy-svn] [numpy/numpy] e0dd41: BUG: Attempt to fix sparc segfault (gh-2668) Message-ID: <50caa6e5318b3_1590f8aae858554@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: e0dd41c0a7a4ec75f6f00dc6ef33f67964ea14b3 https://github.com/numpy/numpy/commit/e0dd41c0a7a4ec75f6f00dc6ef33f67964ea14b3 Author: Mark Wiebe Date: 2012-12-06 (Thu, 06 Dec 2012) Changed paths: M numpy/core/src/multiarray/dtype_transfer.c Log Message: ----------- BUG: Attempt to fix sparc segfault (gh-2668) Commit: c95da7d48b2b6ff135b15bb9cd169e7e7bc692ef https://github.com/numpy/numpy/commit/c95da7d48b2b6ff135b15bb9cd169e7e7bc692ef Author: Mark Wiebe Date: 2012-12-11 (Tue, 11 Dec 2012) Changed paths: M numpy/core/tests/test_regression.py Log Message: ----------- TST: Add a test for bug gh-2668 This is the test attached to the bug from Matthew Brett. I tried to make a simpler test, but it didn't repro the problem. Commit: 4f7d3ff253888b9508f1ec06b8fea6ce1d92b502 https://github.com/numpy/numpy/commit/4f7d3ff253888b9508f1ec06b8fea6ce1d92b502 Author: Ond?ej ?ert?k Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/dtype_transfer.c M numpy/core/tests/test_regression.py Log Message: ----------- Merge pull request #2794 from mwiebe/complex_copy_misalignment BUG: Attempt to fix sparc segfault (gh-2668) Compare: https://github.com/numpy/numpy/compare/5db0088b9798...4f7d3ff25388 From noreply at github.com Thu Dec 13 23:18:04 2012 From: noreply at github.com (GitHub) Date: Thu, 13 Dec 2012 20:18:04 -0800 Subject: [Numpy-svn] [numpy/numpy] fcd67d: ENH: Allow objects to use the array interface with... Message-ID: <50caa87c2d623_1283110aae4184e2@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: fcd67d4ecfa1a30aac947a5711b1dd63dc6eac71 https://github.com/numpy/numpy/commit/fcd67d4ecfa1a30aac947a5711b1dd63dc6eac71 Author: Han Genuit Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/ctors.c Log Message: ----------- ENH: Allow objects to use the array interface without specifying data Commit: 6385ac48208571a0b34b2bf4bfd54fde8f93767a https://github.com/numpy/numpy/commit/6385ac48208571a0b34b2bf4bfd54fde8f93767a Author: Han Genuit Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/ctors.c Log Message: ----------- BUG: Make shape check for special case a bit stricter Commit: b24d9717c1e5709a26a388d8b63e66912d0d0fd7 https://github.com/numpy/numpy/commit/b24d9717c1e5709a26a388d8b63e66912d0d0fd7 Author: Han Genuit Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/tests/test_multiarray.py Log Message: ----------- TST: Add test for special case in array interface Commit: 193f2d34fb873cf63f6565db94a678c6f7db56bb https://github.com/numpy/numpy/commit/193f2d34fb873cf63f6565db94a678c6f7db56bb Author: Han Genuit Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/ctors.c Log Message: ----------- BUG: Make sure empty shapes are disallowed when data is specified Commit: b6ce3bb3178335ed07d624b619971d9c0d881da0 https://github.com/numpy/numpy/commit/b6ce3bb3178335ed07d624b619971d9c0d881da0 Author: Han Genuit Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/common.c M numpy/core/src/multiarray/ctors.c Log Message: ----------- BUG: Fixes for Python 3.x Commit: 911dd0319ff067d74b16a26684cd05feb8053c61 https://github.com/numpy/numpy/commit/911dd0319ff067d74b16a26684cd05feb8053c61 Author: Han Genuit Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/ctors.c Log Message: ----------- BUG: Handle scalars correctly. Commit: e575a51153ef7ea6557156731fb0861f940f7d71 https://github.com/numpy/numpy/commit/e575a51153ef7ea6557156731fb0861f940f7d71 Author: Han Genuit Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/ctors.c Log Message: ----------- ENH: Assume object is scalar if no shape and data attribute are given Commit: 438567f8c026d79e4865b35a232b774b271ed23f https://github.com/numpy/numpy/commit/438567f8c026d79e4865b35a232b774b271ed23f Author: Han Genuit Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/ctors.c Log Message: ----------- BUG: Disallow shapesize > 1 when coercing scalar to array Commit: 590811f0b388311ffdd7ba6f37dd2ea0480bbe8c https://github.com/numpy/numpy/commit/590811f0b388311ffdd7ba6f37dd2ea0480bbe8c Author: Han Genuit Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/tests/test_multiarray.py Log Message: ----------- TST: Add more tests. Commit: 27a9c3622858d4f971c9fff78c74480fb2968721 https://github.com/numpy/numpy/commit/27a9c3622858d4f971c9fff78c74480fb2968721 Author: Ond?ej ?ert?k Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/common.c M numpy/core/src/multiarray/ctors.c M numpy/core/tests/test_multiarray.py Log Message: ----------- Merge pull request #2815 from certik/backport444 Backport444 Compare: https://github.com/numpy/numpy/compare/cb0ee58cb2b4...27a9c3622858 From noreply at github.com Thu Dec 13 23:18:46 2012 From: noreply at github.com (GitHub) Date: Thu, 13 Dec 2012 20:18:46 -0800 Subject: [Numpy-svn] [numpy/numpy] ecee2b: FIX: Add multiarch paths to the distutils' ones Message-ID: <50caa8a67dac4_1e731266af044395@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: ecee2b0454fef4e7b4fb4f9ac88c60d33b422afe https://github.com/numpy/numpy/commit/ecee2b0454fef4e7b4fb4f9ac88c60d33b422afe Author: Ond?ej ?ert?k Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- FIX: Add multiarch paths to the distutils' ones Thanks to Julian Taylor and Sandro Tosi from Debian for the original patch. Ralf has posted a link to the patch here: http://article.gmane.org/gmane.comp.python.numeric.general/51454 I have modified the patch to remove the bare except command only catch the OSError. Also I suppress the stderr. Commit: 62bc3719f7ebcd3b7aa940bbb9a936683581c2a1 https://github.com/numpy/numpy/commit/62bc3719f7ebcd3b7aa940bbb9a936683581c2a1 Author: Ond?ej ?ert?k Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/distutils/system_info.py Log Message: ----------- Merge pull request #2816 from certik/backport2792 Backports #2792 Compare: https://github.com/numpy/numpy/compare/27a9c3622858...62bc3719f7eb From noreply at github.com Thu Dec 13 23:37:21 2012 From: noreply at github.com (GitHub) Date: Thu, 13 Dec 2012 20:37:21 -0800 Subject: [Numpy-svn] [numpy/numpy] c25886: BUG: Attempt to fix sparc segfault (gh-2668) Message-ID: <50caad012f7f0_7006ed4af4889f2@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: c25886d0c0f134fefec5a2fb11b009d092ee2601 https://github.com/numpy/numpy/commit/c25886d0c0f134fefec5a2fb11b009d092ee2601 Author: Mark Wiebe Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/dtype_transfer.c Log Message: ----------- BUG: Attempt to fix sparc segfault (gh-2668) Commit: d676f1f9ca90ffc72e13ab0578365958af7ebe22 https://github.com/numpy/numpy/commit/d676f1f9ca90ffc72e13ab0578365958af7ebe22 Author: Mark Wiebe Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/tests/test_regression.py Log Message: ----------- TST: Add a test for bug gh-2668 This is the test attached to the bug from Matthew Brett. I tried to make a simpler test, but it didn't repro the problem. Commit: bf084bdc834be01418cf883e3fc6b649628eeadb https://github.com/numpy/numpy/commit/bf084bdc834be01418cf883e3fc6b649628eeadb Author: Ond?ej ?ert?k Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/dtype_transfer.c M numpy/core/tests/test_regression.py Log Message: ----------- Merge pull request #2817 from certik/backport2794 Backport2794 Compare: https://github.com/numpy/numpy/compare/62bc3719f7eb...bf084bdc834b From noreply at github.com Fri Dec 14 21:15:53 2012 From: noreply at github.com (GitHub) Date: Fri, 14 Dec 2012 18:15:53 -0800 Subject: [Numpy-svn] [numpy/numpy] 48a06c: ENH: warning on silent truncation of indices Message-ID: <50cbdd592950a_12cb16d8ae8933e1@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 48a06cf8c9e559913c90bfb584e9a44fbed59e01 https://github.com/numpy/numpy/commit/48a06cf8c9e559913c90bfb584e9a44fbed59e01 Author: David Warde-Farley Date: 2012-12-12 (Wed, 12 Dec 2012) Changed paths: M numpy/core/src/multiarray/iterators.c M numpy/core/src/multiarray/mapping.c M numpy/core/src/private/npy_pycompat.h Log Message: ----------- ENH: warning on silent truncation of indices Commit: 5b1d7d60f7067c2355291633d08c31f1f3c036f1 https://github.com/numpy/numpy/commit/5b1d7d60f7067c2355291633d08c31f1f3c036f1 Author: David Warde-Farley Date: 2012-12-12 (Wed, 12 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- DOC: Clarify a C code comment. Commit: f354ade123accc4be71654b3fe6511aabf232594 https://github.com/numpy/numpy/commit/f354ade123accc4be71654b3fe6511aabf232594 Author: David Warde-Farley Date: 2012-12-12 (Wed, 12 Dec 2012) Changed paths: M numpy/core/src/multiarray/iterators.c M numpy/core/src/multiarray/mapping.c Log Message: ----------- STY: C code style. Commit: 830126cd7c5853daf50a9bf4bd3ac649096182b6 https://github.com/numpy/numpy/commit/830126cd7c5853daf50a9bf4bd3ac649096182b6 Author: David Warde-Farley Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: A numpy/core/tests/test_deprecations.py Log Message: ----------- TST: Add tests for deprecation warnings. Commit: 0aa1a4b81a603be4e4e975b6f00485e0eb7899b0 https://github.com/numpy/numpy/commit/0aa1a4b81a603be4e4e975b6f00485e0eb7899b0 Author: David Warde-Farley Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- TST: Add back failing tests + negative index. Commit: e5fce7847d58faf6eeaf4efb591e99977698d927 https://github.com/numpy/numpy/commit/e5fce7847d58faf6eeaf4efb591e99977698d927 Author: David Warde-Farley Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/iterators.c M numpy/core/src/multiarray/mapping.c Log Message: ----------- BUG: Explicitly bubble errors up, simple case. Commit: 783130c6c81dc096b47a0f44ef62872ab81da9f8 https://github.com/numpy/numpy/commit/783130c6c81dc096b47a0f44ef62872ab81da9f8 Author: David Warde-Farley Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- BUG: Bubble errors from _tuple_of_integers. Refactors _tuple_of_integers a little bit in order to propagate error state. Zero indicates failure of the test (given tuple is not a tuple of integers), whereas non-zero indicates either success (positive) or an exception during the warning (negative). This allows us to use (ret = _tuple_of_integers(...)) as an if condition, and then put the error handling inside the if body. Commit: ac749afb940857b74158ce60ff780db12ed5e558 https://github.com/numpy/numpy/commit/ac749afb940857b74158ce60ff780db12ed5e558 Author: David Warde-Farley Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- Fix typo in module-level comment. Commit: 9c87855da1e90eeeab84880c3c442041d52ea398 https://github.com/numpy/numpy/commit/9c87855da1e90eeeab84880c3c442041d52ea398 Author: David Warde-Farley Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- STY: comment blank line/*'s. Commit: 484f876d00cdf84a9ec23d38463f266579a8e966 https://github.com/numpy/numpy/commit/484f876d00cdf84a9ec23d38463f266579a8e966 Author: David Warde-Farley Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- REF: move tuple checks into function. Commit: 2ca3a2488e67cb09b9c8bfbd2f59ed73dad12b74 https://github.com/numpy/numpy/commit/2ca3a2488e67cb09b9c8bfbd2f59ed73dad12b74 Author: David Warde-Farley Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- ENH: Add NPY_INLINE to _is_full_index. Commit: 5acc7df970c005ef52d87563450da3303db04467 https://github.com/numpy/numpy/commit/5acc7df970c005ef52d87563450da3303db04467 Author: David Warde-Farley Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- REF: nested conditionals for readability. Commit: 3a0b66e47f53f5664c281c7e4f63f3fe9ddd1f87 https://github.com/numpy/numpy/commit/3a0b66e47f53f5664c281c7e4f63f3fe9ddd1f87 Author: David Warde-Farley Date: 2012-12-13 (Thu, 13 Dec 2012) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- TST: disable DeprecationWarning tests in 2.4 These DeprecationWarnings use a Python 2.5+ feature (PyIndex_Check) and don't fire for 2.4 (support for which will be dropped shortly anyway). Commit: 5de9999d82fa2353fce4518a83c187a168bf2aa3 https://github.com/numpy/numpy/commit/5de9999d82fa2353fce4518a83c187a168bf2aa3 Author: David Warde-Farley Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- TST: Add tests for non-int slice deprecation. Commit: 1515155e32ece1bd6dfe1ea85101ede9a8b1c44c https://github.com/numpy/numpy/commit/1515155e32ece1bd6dfe1ea85101ede9a8b1c44c Author: David Warde-Farley Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/core/src/multiarray/iterators.c Log Message: ----------- ENH: DeprecationWarning for non-int slice indices. Commit: 8ff916a47d9a64baeb16f02c8cf502b11c15b177 https://github.com/numpy/numpy/commit/8ff916a47d9a64baeb16f02c8cf502b11c15b177 Author: David Warde-Farley Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- DOC: Deprecation info for float-slicing. Commit: bb0952d780fd0488c9ea872e33c0bf9d79fe7607 https://github.com/numpy/numpy/commit/bb0952d780fd0488c9ea872e33c0bf9d79fe7607 Author: David Warde-Farley Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- DOC: Comments about deprecation timeframe. Commit: 7706227842c5d57804a99ce35ac191be542938da https://github.com/numpy/numpy/commit/7706227842c5d57804a99ce35ac191be542938da Author: Charles Harris Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/core/src/multiarray/iterators.c M numpy/core/src/multiarray/mapping.c M numpy/core/src/private/npy_pycompat.h A numpy/core/tests/test_deprecations.py Log Message: ----------- Merge pull request #2812 from dwf/deprecate_scalar_float Deprecate non-integer scalar indices and slice parameters Compare: https://github.com/numpy/numpy/compare/4f7d3ff25388...7706227842c5 From noreply at github.com Sat Dec 15 07:28:51 2012 From: noreply at github.com (GitHub) Date: Sat, 15 Dec 2012 04:28:51 -0800 Subject: [Numpy-svn] [numpy/numpy] 83d890: BUG: internal call fix in random.choice Message-ID: <50cc6d03e1cd4_6adff88af4100065@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 83d890e21ecd991976a44af040521fd800c7a175 https://github.com/numpy/numpy/commit/83d890e21ecd991976a44af040521fd800c7a175 Author: Sebastian Berg Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.c M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_regression.py Log Message: ----------- BUG: internal call fix in random.choice An random.random call from within mtrand was done by a call to np.random.random instead of inside the class. This can possibly lead to non-deterministic results after seeding. Commit: 5f04dc8a53346e8225d0865a0e7064e4f4d93d4b https://github.com/numpy/numpy/commit/5f04dc8a53346e8225d0865a0e7064e4f4d93d4b Author: njsmith Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.c M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_regression.py Log Message: ----------- Merge pull request #2823 from seberg/random-choice-state BUG: internal call fix in random.choice Compare: https://github.com/numpy/numpy/compare/7706227842c5...5f04dc8a5334 From noreply at github.com Sat Dec 15 15:55:08 2012 From: noreply at github.com (GitHub) Date: Sat, 15 Dec 2012 12:55:08 -0800 Subject: [Numpy-svn] [numpy/numpy] 86436d: Include msvcr100 (MSVC v10 aka 2010) in msvc_runti... Message-ID: <50cce3ac6e1ff_6adff88af412767@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: 86436d8bbbf3021762ce40eb7e82e5b4924076a3 https://github.com/numpy/numpy/commit/86436d8bbbf3021762ce40eb7e82e5b4924076a3 Author: peterjc Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M numpy/distutils/misc_util.py Log Message: ----------- Include msvcr100 (MSVC v10 aka 2010) in msvc_runtime_library() Commit: 0e1f9a34f5c3cba1d42a6f6f78220c1ebad613b5 https://github.com/numpy/numpy/commit/0e1f9a34f5c3cba1d42a6f6f78220c1ebad613b5 Author: peterjc Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M numpy/distutils/mingw32ccompiler.py Log Message: ----------- Cope with two digit major number in MSCV v10 Commit: fec3a99064fe3d634952a94f24c6e4ffe685524b https://github.com/numpy/numpy/commit/fec3a99064fe3d634952a94f24c6e4ffe685524b Author: peterjc Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M numpy/distutils/mingw32ccompiler.py Log Message: ----------- Handle MSVC v10 in _MSVCRVER_TO_FULLVER Commit: ba91f3963f4c6b2522f29530d6fb74eb07d1df6d https://github.com/numpy/numpy/commit/ba91f3963f4c6b2522f29530d6fb74eb07d1df6d Author: Ralf Gommers Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M numpy/distutils/mingw32ccompiler.py M numpy/distutils/misc_util.py Log Message: ----------- Merge pull request #2829 from certik/backport2726 Backport2726 Compare: https://github.com/numpy/numpy/compare/bf084bdc834b...ba91f3963f4c From noreply at github.com Sat Dec 15 15:56:28 2012 From: noreply at github.com (GitHub) Date: Sat, 15 Dec 2012 12:56:28 -0800 Subject: [Numpy-svn] [numpy/numpy] 06973e: DOC: Deprecate NPY_CHAR in release notes Message-ID: <50cce3fcb9c33_3bdd13e8af415177c@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: 06973edbf67e3e6d0a3b7cb1b4d5fa8185205118 https://github.com/numpy/numpy/commit/06973edbf67e3e6d0a3b7cb1b4d5fa8185205118 Author: Ond?ej ?ert?k Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M doc/release/1.7.0-notes.rst Log Message: ----------- DOC: Deprecate NPY_CHAR in release notes Fixes gh-2801. Commit: 57bab9e5f35c28974ef4616585fd658903eb159f https://github.com/numpy/numpy/commit/57bab9e5f35c28974ef4616585fd658903eb159f Author: Ralf Gommers Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M doc/release/1.7.0-notes.rst Log Message: ----------- Merge pull request #2828 from certik/npy_char_deprec DOC: Deprecate NPY_CHAR in release notes Compare: https://github.com/numpy/numpy/compare/ba91f3963f4c...57bab9e5f35c From noreply at github.com Sat Dec 15 16:19:44 2012 From: noreply at github.com (GitHub) Date: Sat, 15 Dec 2012 13:19:44 -0800 Subject: [Numpy-svn] [numpy/numpy] acf742: ENH: make random.choice size argument default to N... Message-ID: <50cce9706cb44_6bd0137eaf060038@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: acf7421128b9d974d5153759650b7aaee3c2efec https://github.com/numpy/numpy/commit/acf7421128b9d974d5153759650b7aaee3c2efec Author: Sebastian Berg Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- ENH: make random.choice size argument default to None and allow tuple The size argument to random.choice should work like it does for all other functions in random as well. Commit: 6b523d65f862eabb5ae8d19266cfe085388d9f76 https://github.com/numpy/numpy/commit/6b523d65f862eabb5ae8d19266cfe085388d9f76 Author: Sebastian Berg Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- BUG: Do not sort new indices in random.choice. Random choice used np.unique to find new indices when replace was False and p given. This is wrong since unique will sort the indices. This solves the bug, but likely not ideal. Commit: 959f790a6d7afb8ecf722c95f293b97032ea26b1 https://github.com/numpy/numpy/commit/959f790a6d7afb8ecf722c95f293b97032ea26b1 Author: Sebastian Berg Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- BUG: Fix various problems in the previous commits. Thanks to @alan-isaac for pointing out the 0-d vs. scalar issue. Commit: 4b0249f700cdec74986168b5724940aaa6113b69 https://github.com/numpy/numpy/commit/4b0249f700cdec74986168b5724940aaa6113b69 Author: Sebastian Berg Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/random/tests/test_random.py Log Message: ----------- TST: Add tests for new feature and fix in random.choice Commit: d27ddeeb97f7309b8a238c0f5b6e9cbbc31b8c2a https://github.com/numpy/numpy/commit/d27ddeeb97f7309b8a238c0f5b6e9cbbc31b8c2a Author: Sebastian Berg Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.c Log Message: ----------- MAINT: Regenerate mtrand.c Commit: eb77c8d75e304da6dd7861a02fd4158db812e8e8 https://github.com/numpy/numpy/commit/eb77c8d75e304da6dd7861a02fd4158db812e8e8 Author: Sebastian Berg Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.c M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_regression.py Log Message: ----------- BUG: internal call fix in random.choice An random.random call from within mtrand was done by a call to np.random.random instead of inside the class. This can possibly lead to non-deterministic results after seeding. Commit: fa3f5a199b18abf7bbb3f0ec3345d5f5a07b0c4a https://github.com/numpy/numpy/commit/fa3f5a199b18abf7bbb3f0ec3345d5f5a07b0c4a Author: Ond?ej ?ert?k Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.c M numpy/random/mtrand/mtrand.pyx M numpy/random/tests/test_random.py M numpy/random/tests/test_regression.py Log Message: ----------- Merge pull request #2820 from certik/backport2793 Backport2793 Compare: https://github.com/numpy/numpy/compare/57bab9e5f35c...fa3f5a199b18 From noreply at github.com Sat Dec 15 22:30:10 2012 From: noreply at github.com (GitHub) Date: Sat, 15 Dec 2012 19:30:10 -0800 Subject: [Numpy-svn] [numpy/numpy] 3c23c9: FIX: Fixes the segfault in PyArray_FromScalar Message-ID: <50cd40423ea4_35981275af0104075@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 3c23c9f6f50b5bea5f449cddd607d5758e4b45b1 https://github.com/numpy/numpy/commit/3c23c9f6f50b5bea5f449cddd607d5758e4b45b1 Author: Ond?ej ?ert?k Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M numpy/core/src/multiarray/scalarapi.c Log Message: ----------- FIX: Fixes the segfault in PyArray_FromScalar The problem was that PyArray_NewFromDescr() steals a reference to typecode and so any further usage of it is undefined. Apparently this bug only appeared in debug version of Python 3.2. The fix is to simply INCREF typecode and then carefully DECREF it at each possible exit from the function. Fixes gh-2738. Commit: afde23f1897812570f176227fb1d32245c28bb3c https://github.com/numpy/numpy/commit/afde23f1897812570f176227fb1d32245c28bb3c Author: Travis E. Oliphant Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M numpy/core/src/multiarray/scalarapi.c Log Message: ----------- Merge pull request #2831 from certik/fix2738 FIX: Fixes the segfault in PyArray_FromScalar Compare: https://github.com/numpy/numpy/compare/5f04dc8a5334...afde23f18978 From noreply at github.com Sun Dec 16 04:58:32 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 01:58:32 -0800 Subject: [Numpy-svn] [numpy/numpy] 7bdeaa: TST: also filter Cython warnings in NoseTester. S... Message-ID: <50cd9b483d56a_6221161eae4441d1@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: 7bdeaa3f0509f3d1878174496a1b7073dbed561b https://github.com/numpy/numpy/commit/7bdeaa3f0509f3d1878174496a1b7073dbed561b Author: Ralf Gommers Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/testing/nosetester.py Log Message: ----------- TST: also filter Cython warnings in NoseTester. See PR-432. There a resetwarnings() call, so need to add back these filters. From noreply at github.com Sun Dec 16 14:13:52 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 11:13:52 -0800 Subject: [Numpy-svn] [numpy/numpy] f8700f: ENH: Expose Euler-Mascheroni constant. Message-ID: <50ce1d7063cb4_6221161eae480426@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: f8700f047be2a1079161874d632a55785bc1da88 https://github.com/numpy/numpy/commit/f8700f047be2a1079161874d632a55785bc1da88 Author: Charles Harris Date: 2012-12-02 (Sun, 02 Dec 2012) Changed paths: M numpy/core/src/umath/umathmodule.c Log Message: ----------- ENH: Expose Euler-Mascheroni constant. This closes issue gh-2753. Commit: 86d7845ecddd26c8fadea1ad688077ad3a45d784 https://github.com/numpy/numpy/commit/86d7845ecddd26c8fadea1ad688077ad3a45d784 Author: Charles Harris Date: 2012-12-02 (Sun, 02 Dec 2012) Changed paths: M numpy/core/src/umath/umathmodule.c Log Message: ----------- MAINT: Use NPY_E to expose 'e'. Previously 'e' was defined as exp(1.) Commit: f7555b9b8237f88b83722d2a1533cc8585ef0737 https://github.com/numpy/numpy/commit/f7555b9b8237f88b83722d2a1533cc8585ef0737 Author: Charles Harris Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/core/src/umath/umathmodule.c Log Message: ----------- Merge pull request #2779 from charris/add-euler Expose the Euler-Mascheroni constant Compare: https://github.com/numpy/numpy/compare/afde23f18978...f7555b9b8237 From noreply at github.com Sun Dec 16 14:59:39 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 11:59:39 -0800 Subject: [Numpy-svn] [numpy/numpy] e208de: FIX: Fixes the segfault in PyArray_FromScalar Message-ID: <50ce282b4d7b0_31b9164daec102566@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: e208de6adfdd38aabe0b5a87ba22f80e04a014ad https://github.com/numpy/numpy/commit/e208de6adfdd38aabe0b5a87ba22f80e04a014ad Author: Ond?ej ?ert?k Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/core/src/multiarray/scalarapi.c Log Message: ----------- FIX: Fixes the segfault in PyArray_FromScalar The problem was that PyArray_NewFromDescr() steals a reference to typecode and so any further usage of it is undefined. Apparently this bug only appeared in debug version of Python 3.2. The fix is to simply INCREF typecode and then carefully DECREF it at each possible exit from the function. Fixes gh-2738. Commit: d5d7632870a535051d18ca23e6f9c7d6e4828aee https://github.com/numpy/numpy/commit/d5d7632870a535051d18ca23e6f9c7d6e4828aee Author: Ond?ej ?ert?k Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/core/src/multiarray/scalarapi.c Log Message: ----------- Merge pull request #2837 from certik/backport2831 FIX: Fixes the segfault in PyArray_FromScalar Compare: https://github.com/numpy/numpy/compare/7bdeaa3f0509...d5d7632870a5 From noreply at github.com Sun Dec 16 15:09:20 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 12:09:20 -0800 Subject: [Numpy-svn] [numpy/numpy] 7f1f57: MAINT: Update and cleanup 1.7.0-notes.rst. Message-ID: <50ce2a70d2541_767a1604af41210c3@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 7f1f57de438ece90761bc9b5bdce7394c26778e8 https://github.com/numpy/numpy/commit/7f1f57de438ece90761bc9b5bdce7394c26778e8 Author: Charles Harris Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M doc/release/1.7.0-notes.rst Log Message: ----------- MAINT: Update and cleanup 1.7.0-notes.rst. The master branch version had diverged from the release branch. This brings them back into sync, adds a mention that Python 2.4 - 2.5 support has been dropped, corrects spelling errors, does some reformatting, and removes trailing whitespace. Commit: db52df0fd82ed084926075709cc3cd61dad3435e https://github.com/numpy/numpy/commit/db52df0fd82ed084926075709cc3cd61dad3435e Author: Ond?ej ?ert?k Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M doc/release/1.7.0-notes.rst Log Message: ----------- Merge pull request #2834 from charris/cleanup-1.7.0-notes MAINT: Update and cleanup 1.7.0-notes.rst. Compare: https://github.com/numpy/numpy/compare/f7555b9b8237...db52df0fd82e From noreply at github.com Sun Dec 16 15:11:53 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 12:11:53 -0800 Subject: [Numpy-svn] [numpy/numpy] eb730a: MAINT: Update and cleanup 1.7.0-notes.rst. Message-ID: <50ce2b092afc_71de188bae81322ad@sh3.rs.github.com.mail> Branch: refs/heads/1.7.x Home: https://github.com/numpy/numpy Commit: eb730a50467b9708260f6e2602bf8a8b4a2b1b67 https://github.com/numpy/numpy/commit/eb730a50467b9708260f6e2602bf8a8b4a2b1b67 Author: Ond?ej ?ert?k Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M doc/release/1.7.0-notes.rst Log Message: ----------- MAINT: Update and cleanup 1.7.0-notes.rst. This backports 7f1f57de438ece90761bc9b5bdce7394c26778e8 into the release branch. From noreply at github.com Sun Dec 16 15:24:59 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 12:24:59 -0800 Subject: [Numpy-svn] [numpy/numpy] Message-ID: <50ce2e1be24a9_76771240ae4133797@sh2.rs.github.com.mail> Branch: refs/heads/1.7.x Home: https://github.com/numpy/numpy From noreply at github.com Sun Dec 16 15:25:15 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 12:25:15 -0800 Subject: [Numpy-svn] [numpy/numpy] eb730a: MAINT: Update and cleanup 1.7.0-notes.rst. Message-ID: <50ce2e2bb0dd1_51291ca6aec3713d@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: eb730a50467b9708260f6e2602bf8a8b4a2b1b67 https://github.com/numpy/numpy/commit/eb730a50467b9708260f6e2602bf8a8b4a2b1b67 Author: Ond?ej ?ert?k Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M doc/release/1.7.0-notes.rst Log Message: ----------- MAINT: Update and cleanup 1.7.0-notes.rst. This backports 7f1f57de438ece90761bc9b5bdce7394c26778e8 into the release branch. From noreply at github.com Sun Dec 16 15:30:26 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 12:30:26 -0800 Subject: [Numpy-svn] [numpy/numpy] e610b2: MAINT: Cleanup 1.8.0-notes.rst. Message-ID: <50ce2f627a058_620e102caf011399e@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: e610b2bd76a1ff2702ac57d38dd79afa6d3e477a https://github.com/numpy/numpy/commit/e610b2bd76a1ff2702ac57d38dd79afa6d3e477a Author: Charles Harris Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M doc/release/1.8.0-notes.rst Log Message: ----------- MAINT: Cleanup 1.8.0-notes.rst. Remove contents of 1.7.0-notes that were left when it was copied, note that support for Python 2.4 - 2.5 has been dropped, and note deprecation of non-integer indices. Commit: 5cd7e76024ed84569580a079733d86de0542424b https://github.com/numpy/numpy/commit/5cd7e76024ed84569580a079733d86de0542424b Author: Charles Harris Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M doc/release/1.8.0-notes.rst Log Message: ----------- DOC: Note that Euler's constant is exposed in numpy 1.8.0. Commit: b0695a8fa7d2f7d2ba1c1d295be3e3379084c4ae https://github.com/numpy/numpy/commit/b0695a8fa7d2f7d2ba1c1d295be3e3379084c4ae Author: Ralf Gommers Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M doc/release/1.8.0-notes.rst Log Message: ----------- Merge pull request #2835 from charris/update-1.8.0-notes MAINT: Cleanup 1.8.0-notes.rst. Compare: https://github.com/numpy/numpy/compare/db52df0fd82e...b0695a8fa7d2 From noreply at github.com Sun Dec 16 17:01:40 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 14:01:40 -0800 Subject: [Numpy-svn] [numpy/numpy] 2050eb: [FIX] preserve memory order in np.copy() Message-ID: <50ce44c4244e1_35981275af015622c@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: 2050eb07985fa156c1b4f33ae0d1b1e3a759f7e9 https://github.com/numpy/numpy/commit/2050eb07985fa156c1b4f33ae0d1b1e3a759f7e9 Author: Nathaniel J. Smith Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/add_newdocs.py M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- [FIX] preserve memory order in np.copy() This switches us back to the behaviour seen in numpy 1.6 and earlier, which it turns out that scikit-learn (and probably others) relied on. Commit: 63bb787ef7b8673db2c8c1425ca44f3b02d2b572 https://github.com/numpy/numpy/commit/63bb787ef7b8673db2c8c1425ca44f3b02d2b572 Author: Ond?ej ?ert?k Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/add_newdocs.py M numpy/lib/function_base.py M numpy/lib/tests/test_function_base.py Log Message: ----------- Merge pull request #2839 from certik/backport476 [FIX] preserve memory order in np.copy() Compare: https://github.com/numpy/numpy/compare/eb730a50467b...63bb787ef7b8 From noreply at github.com Sun Dec 16 17:40:09 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 14:40:09 -0800 Subject: [Numpy-svn] [numpy/numpy] de6f3b: MAINT: update Intel Fortran compiler flags for the... Message-ID: <50ce4dc9a13b9_767a1604af4133356@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: de6f3b69b1355b71291ff0ff255d46b3f657309d https://github.com/numpy/numpy/commit/de6f3b69b1355b71291ff0ff255d46b3f657309d Author: Ralf Gommers Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/distutils/fcompiler/intel.py Log Message: ----------- MAINT: update Intel Fortran compiler flags for the 21st century. Thanks to Intel for this contribution. Note that there's also an MKL application note which recommends these flags: http://software.intel.com/en-us/articles/numpyscipy-with-intel-mkl Commit: 28aab3202a23c9b2c7cf6ffa2301fe9b83817db6 https://github.com/numpy/numpy/commit/28aab3202a23c9b2c7cf6ffa2301fe9b83817db6 Author: Ond?ej ?ert?k Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/distutils/fcompiler/intel.py Log Message: ----------- Merge pull request #2841 from certik/backport433 MAINT: update Intel Fortran compiler flags for the 21st century. Compare: https://github.com/numpy/numpy/compare/63bb787ef7b8...28aab3202a23 From noreply at github.com Sun Dec 16 22:38:24 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 19:38:24 -0800 Subject: [Numpy-svn] [numpy/numpy] 6d7bcd: MAINT: Refactor test_deprecations.py Message-ID: <50ce93b0398e6_7ac51213ae4186159@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 6d7bcd963b28f8381ccc15500194496cdca810c7 https://github.com/numpy/numpy/commit/6d7bcd963b28f8381ccc15500194496cdca810c7 Author: Charles Harris Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- MAINT: Refactor test_deprecations.py Remove an unwanted print statement and make the verbose test output more readable. Commit: b2ffc82caf9ac9f650e14d8acdfe612058d28cfa https://github.com/numpy/numpy/commit/b2ffc82caf9ac9f650e14d8acdfe612058d28cfa Author: Charles Harris Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- MAINT: test_deprecations.py cleanups. Removed unneeded imports, corrected spelling, and put C function references in double back-ticks. Commit: 7bc44a289758d13c4c5ccc7bc062dac8c8186160 https://github.com/numpy/numpy/commit/7bc44a289758d13c4c5ccc7bc062dac8c8186160 Author: Charles Harris Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/core/tests/test_deprecations.py Log Message: ----------- Merge pull request #2833 from charris/fix-deprecation-tests MAINT: Refactor test_deprecations.py Compare: https://github.com/numpy/numpy/compare/b0695a8fa7d2...7bc44a289758 From noreply at github.com Mon Dec 17 02:12:33 2012 From: noreply at github.com (GitHub) Date: Sun, 16 Dec 2012 23:12:33 -0800 Subject: [Numpy-svn] [numpy/numpy] f5d883: TST: Add failing test for unicode array with objec... Message-ID: <50cec5e19ab33_1db9f53ae87124a@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: f5d883cb8f4cb9e66fa29f25579df5b8e5abf3bd https://github.com/numpy/numpy/commit/f5d883cb8f4cb9e66fa29f25579df5b8e5abf3bd Author: Skipper Seabold Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/core/tests/test_arrayprint.py Log Message: ----------- TST: Add failing test for unicode array with object dtype Commit: b3b367f2aec98db6c81b9e957f8a24162b7872db https://github.com/numpy/numpy/commit/b3b367f2aec98db6c81b9e957f8a24162b7872db Author: Skipper Seabold Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/core/arrayprint.py Log Message: ----------- BUG: Use numpystr for arrayprint fallback instead of str Commit: 049ae4db5d21481b01e3b2b71602013c55656273 https://github.com/numpy/numpy/commit/049ae4db5d21481b01e3b2b71602013c55656273 Author: Skipper Seabold Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/core/tests/test_arrayprint.py Log Message: ----------- TST: Change expected output for Python 3. Commit: c4c169c7cb32075386bd03463a908035c655784b https://github.com/numpy/numpy/commit/c4c169c7cb32075386bd03463a908035c655784b Author: Ralf Gommers Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/core/arrayprint.py M numpy/core/tests/test_arrayprint.py Log Message: ----------- Merge pull request #2842 from certik/backport459 Backport459 Compare: https://github.com/numpy/numpy/compare/28aab3202a23...c4c169c7cb32 From noreply at github.com Mon Dec 17 09:16:09 2012 From: noreply at github.com (GitHub) Date: Mon, 17 Dec 2012 06:16:09 -0800 Subject: [Numpy-svn] [numpy/numpy] 45a7a0: fix a spelling error Message-ID: <50cf29294079_429b11fbae8562cc@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 45a7a064bc8244bc26db03c6348a0761331dfdc9 https://github.com/numpy/numpy/commit/45a7a064bc8244bc26db03c6348a0761331dfdc9 Author: Julian Taylor Date: 2012-12-14 (Fri, 14 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- fix a spelling error Commit: ec11084018d741a6f3401aaf68e8bcaf7e55428e https://github.com/numpy/numpy/commit/ec11084018d741a6f3401aaf68e8bcaf7e55428e Author: Charles Harris Date: 2012-12-17 (Mon, 17 Dec 2012) Changed paths: M numpy/random/mtrand/mtrand.pyx Log Message: ----------- Merge pull request #2818 from juliantaylor/spelling fix a spelling error Compare: https://github.com/numpy/numpy/compare/7bc44a289758...ec11084018d7 From noreply at github.com Mon Dec 17 14:36:34 2012 From: noreply at github.com (GitHub) Date: Mon, 17 Dec 2012 11:36:34 -0800 Subject: [Numpy-svn] [numpy/numpy] 2d2ae9: Fix unicode tests for flexible string representati... Message-ID: <50cf74426a27c_33b6168dae8189f@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 2d2ae9c6411925aee53a4348a6db1616f00dc497 https://github.com/numpy/numpy/commit/2d2ae9c6411925aee53a4348a6db1616f00dc497 Author: cgohlke Date: 2012-12-16 (Sun, 16 Dec 2012) Changed paths: M numpy/core/tests/test_unicode.py Log Message: ----------- Fix unicode tests for flexible string representation on Python 3.3 Commit: 9d44aaa352149a34fbc521486c07ca9187140768 https://github.com/numpy/numpy/commit/9d44aaa352149a34fbc521486c07ca9187140768 Author: Ralf Gommers Date: 2012-12-17 (Mon, 17 Dec 2012) Changed paths: M numpy/core/tests/test_unicode.py Log Message: ----------- Merge pull request #2836 from cgohlke/patch-2 Fix unicode tests for flexible string representation on Python 3.3 Compare: https://github.com/numpy/numpy/compare/ec11084018d7...9d44aaa35214 From noreply at github.com Wed Dec 19 13:14:50 2012 From: noreply at github.com (GitHub) Date: Wed, 19 Dec 2012 10:14:50 -0800 Subject: [Numpy-svn] [numpy/numpy] 3b559f: added a fix for 1d iteration which was failing and... Message-ID: <50d2041a99204_64e1156caec535a6@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 3b559fd7425cdfc1a58dd5e7a2ce492395e8c5de https://github.com/numpy/numpy/commit/3b559fd7425cdfc1a58dd5e7a2ce492395e8c5de Author: John Salvatier Date: 2012-11-06 (Tue, 06 Nov 2012) Changed paths: M numpy/core/src/multiarray/mapping.c M numpy/core/tests/test_multiarray.py Log Message: ----------- added a fix for 1d iteration which was failing and a test to test that case Commit: 0db7a4ac73d88b4ef4a717d688a7308f047d277c https://github.com/numpy/numpy/commit/0db7a4ac73d88b4ef4a717d688a7308f047d277c Author: John Salvatier Date: 2012-11-09 (Fri, 09 Nov 2012) Changed paths: M numpy/core/tests/test_multiarray.py Log Message: ----------- tabs -> spaces Commit: b86deb746fa996f9311bd02ef6eb0098aba5de70 https://github.com/numpy/numpy/commit/b86deb746fa996f9311bd02ef6eb0098aba5de70 Author: John Salvatier Date: 2012-11-19 (Mon, 19 Nov 2012) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- gave PyArray_MapIterBind an error code on exit Commit: 14c7faa1a39d38f6d42f3c751a86afd25ee320d8 https://github.com/numpy/numpy/commit/14c7faa1a39d38f6d42f3c751a86afd25ee320d8 Author: John Salvatier Date: 2012-11-19 (Mon, 19 Nov 2012) Changed paths: M numpy/core/src/multiarray/mapping.c M numpy/core/src/multiarray/mapping.h Log Message: ----------- wrong error check Commit: da7770c0f818787c69cc75d9969ae9efbaa537ce https://github.com/numpy/numpy/commit/da7770c0f818787c69cc75d9969ae9efbaa537ce Author: John Salvatier Date: 2012-12-01 (Sat, 01 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c M numpy/core/tests/test_multiarray.py Log Message: ----------- added a fix for 1d iteration which was failing and a test to test that case Commit: a82639fa4945ccb3ddb16f9e1095a8aefaff1959 https://github.com/numpy/numpy/commit/a82639fa4945ccb3ddb16f9e1095a8aefaff1959 Author: John Salvatier Date: 2012-12-01 (Sat, 01 Dec 2012) Changed paths: M numpy/core/tests/test_multiarray.py Log Message: ----------- tabs -> spaces Commit: 663b3ec83467c6a9a3f9c627bf6610b59747cdaf https://github.com/numpy/numpy/commit/663b3ec83467c6a9a3f9c627bf6610b59747cdaf Author: John Salvatier Date: 2012-12-01 (Sat, 01 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- gave PyArray_MapIterBind an error code on exit Commit: b3bf8ea01f23d394052dc0d771409f3deb6fada4 https://github.com/numpy/numpy/commit/b3bf8ea01f23d394052dc0d771409f3deb6fada4 Author: John Salvatier Date: 2012-12-01 (Sat, 01 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c M numpy/core/src/multiarray/mapping.h Log Message: ----------- wrong error check Commit: 3fcbdf8abdc19b169d43bfa964442ef928e55ed3 https://github.com/numpy/numpy/commit/3fcbdf8abdc19b169d43bfa964442ef928e55ed3 Author: John Salvatier Date: 2012-12-01 (Sat, 01 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- removed fancy check and added more informative message Commit: 7887c16fcceb995a6416cf32bb4a0702bf08a7bb https://github.com/numpy/numpy/commit/7887c16fcceb995a6416cf32bb4a0702bf08a7bb Author: John Salvatier Date: 2012-12-02 (Sun, 02 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c Log Message: ----------- goto fail better Commit: c9325530b499f205b46d444d2f00be1bc49c9e23 https://github.com/numpy/numpy/commit/c9325530b499f205b46d444d2f00be1bc49c9e23 Author: njsmith Date: 2012-12-19 (Wed, 19 Dec 2012) Changed paths: M numpy/core/src/multiarray/mapping.c M numpy/core/src/multiarray/mapping.h M numpy/core/tests/test_multiarray.py Log Message: ----------- Merge pull request #2710 from jsalvatier/mapapi3 MapIter API 1d iteration fix and tests Compare: https://github.com/numpy/numpy/compare/9d44aaa35214...c9325530b499 From noreply at github.com Thu Dec 20 20:02:42 2012 From: noreply at github.com (GitHub) Date: Thu, 20 Dec 2012 17:02:42 -0800 Subject: [Numpy-svn] [numpy/numpy] ba5871: Fix unicode tests for flexible string representati... Message-ID: <50d3b532d1f8f_32011528af43549d@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: ba587183b215495b617acba11fa3367408746603 https://github.com/numpy/numpy/commit/ba587183b215495b617acba11fa3367408746603 Author: cgohlke Date: 2012-12-20 (Thu, 20 Dec 2012) Changed paths: M numpy/core/tests/test_unicode.py Log Message: ----------- Fix unicode tests for flexible string representation on Python 3.3 Commit: 9408b214897c87aa8b92657ad76a77ef155c713c https://github.com/numpy/numpy/commit/9408b214897c87aa8b92657ad76a77ef155c713c Author: Ond?ej ?ert?k Date: 2012-12-20 (Thu, 20 Dec 2012) Changed paths: M numpy/core/tests/test_unicode.py Log Message: ----------- Merge pull request #2849 from certik/backport2836 Fix unicode tests for flexible string representation on Python 3.3 Compare: https://github.com/numpy/numpy/compare/c4c169c7cb32...9408b214897c From noreply at github.com Fri Dec 21 08:01:51 2012 From: noreply at github.com (GitHub) Date: Fri, 21 Dec 2012 05:01:51 -0800 Subject: [Numpy-svn] [numpy/numpy] 6d3950: BUG: Fix regression for in1d with non-array input Message-ID: <50d45dbf3ba52_1479e7daec226f@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 6d3950c8ac3ad6088a473acc7d68ba405c14267c https://github.com/numpy/numpy/commit/6d3950c8ac3ad6088a473acc7d68ba405c14267c Author: Sebastian Berg Date: 2012-12-08 (Sat, 08 Dec 2012) Changed paths: M numpy/lib/arraysetops.py M numpy/lib/tests/test_arraysetops.py Log Message: ----------- BUG: Fix regression for in1d with non-array input There was a regression introduced by the speed improvement in commit 6441c2a. This fixes it, and generally ravels the arrays for np.in1d. However it can be argued that at least the first array should not be ravelled in the future. Fixes "Issue gh-2755" Commit: b0ac985036918c39322e18d06bd69523cfef9e39 https://github.com/numpy/numpy/commit/b0ac985036918c39322e18d06bd69523cfef9e39 Author: Sebastian Berg Date: 2012-12-15 (Sat, 15 Dec 2012) Changed paths: M numpy/lib/tests/test_arraysetops.py Log Message: ----------- TST: Add test for in1d ravelling The behavior of in1d is not really defined here, but it should be at least consistent over different execution branches. This is what it has been for most usages. Commit: 3abd8699dc3c71e389356ca6d80a2cb9efa16151 https://github.com/numpy/numpy/commit/3abd8699dc3c71e389356ca6d80a2cb9efa16151 Author: njsmith Date: 2012-12-21 (Fri, 21 Dec 2012) Changed paths: M numpy/lib/arraysetops.py M numpy/lib/tests/test_arraysetops.py Log Message: ----------- Merge pull request #2800 from seberg/issue2755 BUG: Fix regression for in1d with non-array input Compare: https://github.com/numpy/numpy/compare/c9325530b499...3abd8699dc3c From noreply at github.com Fri Dec 21 16:03:53 2012 From: noreply at github.com (GitHub) Date: Fri, 21 Dec 2012 13:03:53 -0800 Subject: [Numpy-svn] [numpy/numpy] 9340dd: Fix invalid typestring size Message-ID: <50d4ceb92e63b_5d191b0caec9223a@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: 9340dd4522c79a7b043818b3084b4a76add33b8a https://github.com/numpy/numpy/commit/9340dd4522c79a7b043818b3084b4a76add33b8a Author: Jay Bourque Date: 2012-12-21 (Fri, 21 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c Log Message: ----------- Fix invalid typestring size Revert to pre numpy 1.7 behavior where invalid typestring size was ignored and isplay deprecate warning. This warning should eventually be changed to an error in future numpy versions. Commit: d288e39ff895504649a990318dbb9496edcc794a https://github.com/numpy/numpy/commit/d288e39ff895504649a990318dbb9496edcc794a Author: Jay Bourque Date: 2012-12-21 (Fri, 21 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c M numpy/core/tests/test_datetime.py M numpy/core/tests/test_dtype.py Log Message: ----------- Refactor to cover more cases; modify unit tests Commit: ab2d5d25d94fc463f5613c1750e8b1fb3f810e1d https://github.com/numpy/numpy/commit/ab2d5d25d94fc463f5613c1750e8b1fb3f810e1d Author: Jay Bourque Date: 2012-12-21 (Fri, 21 Dec 2012) Changed paths: M numpy/core/tests/test_dtype.py Log Message: ----------- Modify unit tests for 32 bit support Commit: 6209e3ef3974a82d82e0f6ca8d3e5bab6df4f005 https://github.com/numpy/numpy/commit/6209e3ef3974a82d82e0f6ca8d3e5bab6df4f005 Author: Jay Bourque Date: 2012-12-21 (Fri, 21 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c M numpy/core/tests/test_dtype.py Log Message: ----------- Refactor unit tests and add DECREF - Refactor unit tests for invalid dtypes so that each test is on a separate line. This will make it easier to figure out which typestring is failing the unit test. - Add Py_DECREF for temp variable Commit: d0aca0ee3fdec88358fc7afd1e703c73df020680 https://github.com/numpy/numpy/commit/d0aca0ee3fdec88358fc7afd1e703c73df020680 Author: Jay Bourque Date: 2012-12-21 (Fri, 21 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c Log Message: ----------- Add debug logging to figure out why unit test fails on Travis Commit: 5de0b6e728079bb06dcec5c77e5461f377379960 https://github.com/numpy/numpy/commit/5de0b6e728079bb06dcec5c77e5461f377379960 Author: Jay Bourque Date: 2012-12-21 (Fri, 21 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c M numpy/core/tests/test_dtype.py Log Message: ----------- Add fix to unit test; remove debug logging Add check to see if 12 bytes is a valid size for a long double Commit: 1e8fcdfbb7f993199dd8b3e249af83542a9fcb3a https://github.com/numpy/numpy/commit/1e8fcdfbb7f993199dd8b3e249af83542a9fcb3a Author: njsmith Date: 2012-12-21 (Fri, 21 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c M numpy/core/tests/test_datetime.py M numpy/core/tests/test_dtype.py Log Message: ----------- Merge pull request #2797 from ContinuumIO/typestring_fix Fix invalid typestring size Compare: https://github.com/numpy/numpy/compare/9408b214897c...1e8fcdfbb7f9 From noreply at github.com Wed Dec 26 08:47:59 2012 From: noreply at github.com (GitHub) Date: Wed, 26 Dec 2012 05:47:59 -0800 Subject: [Numpy-svn] [numpy/numpy] 8ea667: ENH - .mailmap file to harmonize git shortlog Message-ID: <50db000f24d4b_1f7316adaf02376fc@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 8ea667dc9a4bdb2417cf635418da27b6203e8d42 https://github.com/numpy/numpy/commit/8ea667dc9a4bdb2417cf635418da27b6203e8d42 Author: Matthew Brett Date: 2012-12-24 (Mon, 24 Dec 2012) Changed paths: A .mailmap Log Message: ----------- ENH - .mailmap file to harmonize git shortlog Reduce duplicates in git shortlog Commit: 9fba6c53301852ebf9d238752653a8b4e2247b26 https://github.com/numpy/numpy/commit/9fba6c53301852ebf9d238752653a8b4e2247b26 Author: Ralf Gommers Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: A .mailmap Log Message: ----------- Merge pull request #2852 from matthew-brett/add-mailmap ENH - .mailmap file to harmonize git shortlog Compare: https://github.com/numpy/numpy/compare/3abd8699dc3c...9fba6c533018 From noreply at github.com Wed Dec 26 12:13:07 2012 From: noreply at github.com (GitHub) Date: Wed, 26 Dec 2012 09:13:07 -0800 Subject: [Numpy-svn] [numpy/numpy] fd4fd0: TST: Replace Python 3.1 test with 3.3. Message-ID: <50db30233c405_36311b6aae8112988@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: fd4fd0d17ed97478fb18cd5500f2e8eaa92c592e https://github.com/numpy/numpy/commit/fd4fd0d17ed97478fb18cd5500f2e8eaa92c592e Author: Ond?ej ?ert?k Date: 2012-12-20 (Thu, 20 Dec 2012) Changed paths: M .travis.yml Log Message: ----------- TST: Replace Python 3.1 test with 3.3. Travis does not support 3.1 anymore, but supports 3.3. See: https://groups.google.com/d/topic/travis-ci/02iRu6kmwY8/discussion Commit: 60df7b0726a450bf6beccb43160934a724e3e83a https://github.com/numpy/numpy/commit/60df7b0726a450bf6beccb43160934a724e3e83a Author: Ond?ej ?ert?k Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M .travis.yml Log Message: ----------- Merge pull request #2851 from certik/travis_fix2 TST: Replace Python 3.1 test with 3.3. Compare: https://github.com/numpy/numpy/compare/1e8fcdfbb7f9...60df7b0726a4 From noreply at github.com Wed Dec 26 12:32:20 2012 From: noreply at github.com (GitHub) Date: Wed, 26 Dec 2012 09:32:20 -0800 Subject: [Numpy-svn] [numpy/numpy] 86dbd4: Fix invalid typestring size Message-ID: <50db34a437ded_35901328aec55691@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 86dbd45bfd2753000a90756cc947089657f3db54 https://github.com/numpy/numpy/commit/86dbd45bfd2753000a90756cc947089657f3db54 Author: Jay Bourque Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c Log Message: ----------- Fix invalid typestring size Revert to pre numpy 1.7 behavior where invalid typestring size was ignored and isplay deprecate warning. This warning should eventually be changed to an error in future numpy versions. Commit: 4237c6e3e2396ef0b7e9130d0c0bf15c4cba9afa https://github.com/numpy/numpy/commit/4237c6e3e2396ef0b7e9130d0c0bf15c4cba9afa Author: Jay Bourque Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c M numpy/core/tests/test_datetime.py M numpy/core/tests/test_dtype.py Log Message: ----------- Refactor to cover more cases; modify unit tests Commit: 18e73ab359968875e7df6a0b45e788feee8fd716 https://github.com/numpy/numpy/commit/18e73ab359968875e7df6a0b45e788feee8fd716 Author: Jay Bourque Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/core/tests/test_dtype.py Log Message: ----------- Modify unit tests for 32 bit support Commit: 83de7cd1810f38a845d7e281943d46c5e225633b https://github.com/numpy/numpy/commit/83de7cd1810f38a845d7e281943d46c5e225633b Author: Jay Bourque Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c M numpy/core/tests/test_dtype.py Log Message: ----------- Refactor unit tests and add DECREF - Refactor unit tests for invalid dtypes so that each test is on a separate line. This will make it easier to figure out which typestring is failing the unit test. - Add Py_DECREF for temp variable Commit: 0f5afde4b719d622f4530c707d9577eea6c131fd https://github.com/numpy/numpy/commit/0f5afde4b719d622f4530c707d9577eea6c131fd Author: Jay Bourque Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c Log Message: ----------- Add debug logging to figure out why unit test fails on Travis Commit: 1f1537eff87721f9d3829513eadb1fe85fc1d866 https://github.com/numpy/numpy/commit/1f1537eff87721f9d3829513eadb1fe85fc1d866 Author: Jay Bourque Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c M numpy/core/tests/test_dtype.py Log Message: ----------- Add fix to unit test; remove debug logging Add check to see if 12 bytes is a valid size for a long double Commit: 8093d5aaa64c51570bd89fb089fcc1505f6a404d https://github.com/numpy/numpy/commit/8093d5aaa64c51570bd89fb089fcc1505f6a404d Author: Ond?ej ?ert?k Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/core/src/multiarray/conversion_utils.c M numpy/core/tests/test_datetime.py M numpy/core/tests/test_dtype.py Log Message: ----------- Merge pull request #2853 from certik/forwardport2797 Forwardports #2797 Compare: https://github.com/numpy/numpy/compare/9fba6c533018...8093d5aaa64c From noreply at github.com Wed Dec 26 12:40:28 2012 From: noreply at github.com (GitHub) Date: Wed, 26 Dec 2012 09:40:28 -0800 Subject: [Numpy-svn] [numpy/numpy] 42e5b8: BUG: Fix regression for in1d with non-array input Message-ID: <50db368c34590_1c581056ae4328ad@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: 42e5b80c1fc0ee83f4b364b6f27aa777bf48c5f5 https://github.com/numpy/numpy/commit/42e5b80c1fc0ee83f4b364b6f27aa777bf48c5f5 Author: Sebastian Berg Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/lib/arraysetops.py M numpy/lib/tests/test_arraysetops.py Log Message: ----------- BUG: Fix regression for in1d with non-array input There was a regression introduced by the speed improvement in commit 6441c2a. This fixes it, and generally ravels the arrays for np.in1d. However it can be argued that at least the first array should not be ravelled in the future. Fixes "Issue gh-2755" Commit: bffea7a2c2d0388e920f5ab537a44c9d668b4a46 https://github.com/numpy/numpy/commit/bffea7a2c2d0388e920f5ab537a44c9d668b4a46 Author: Sebastian Berg Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/lib/tests/test_arraysetops.py Log Message: ----------- TST: Add test for in1d ravelling The behavior of in1d is not really defined here, but it should be at least consistent over different execution branches. This is what it has been for most usages. Commit: 69c06da1d1488df7f048fe2071c4d6b91fd25c08 https://github.com/numpy/numpy/commit/69c06da1d1488df7f048fe2071c4d6b91fd25c08 Author: Ond?ej ?ert?k Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/lib/arraysetops.py M numpy/lib/tests/test_arraysetops.py Log Message: ----------- Merge pull request #2854 from certik/backport2800 Backports #2800 Compare: https://github.com/numpy/numpy/compare/60df7b0726a4...69c06da1d148 From noreply at github.com Wed Dec 26 12:57:12 2012 From: noreply at github.com (GitHub) Date: Wed, 26 Dec 2012 09:57:12 -0800 Subject: [Numpy-svn] [numpy/numpy] 834d32: TST: Replace Python 3.1 test with 3.3. Message-ID: <50db3a7880dc8_3cd7135aaec1030be@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 834d32bbdeda076d1dff12ab54338421d365ef4b https://github.com/numpy/numpy/commit/834d32bbdeda076d1dff12ab54338421d365ef4b Author: Ond?ej ?ert?k Date: 2012-12-20 (Thu, 20 Dec 2012) Changed paths: M .travis.yml Log Message: ----------- TST: Replace Python 3.1 test with 3.3. Travis does not support 3.1 anymore, but supports 3.3. See: https://groups.google.com/d/topic/travis-ci/02iRu6kmwY8/discussion Commit: db671db12269c6aedfbfcabfb2f17b991b44d1d0 https://github.com/numpy/numpy/commit/db671db12269c6aedfbfcabfb2f17b991b44d1d0 Author: njsmith Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M .travis.yml Log Message: ----------- Merge pull request #2850 from certik/travis_fix TST: Replace Python 3.1 test with 3.3. Compare: https://github.com/numpy/numpy/compare/8093d5aaa64c...db671db12269 From noreply at github.com Wed Dec 26 19:29:11 2012 From: noreply at github.com (GitHub) Date: Wed, 26 Dec 2012 16:29:11 -0800 Subject: [Numpy-svn] [numpy/numpy] a757cb: DOC: document the change in .base Message-ID: <50db9657375ee_1d5113d3af01109e3@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: a757cb5faa0849b90e1b77f82324e93a5a5bebc9 https://github.com/numpy/numpy/commit/a757cb5faa0849b90e1b77f82324e93a5a5bebc9 Author: Ond?ej ?ert?k Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M doc/release/1.7.0-notes.rst Log Message: ----------- DOC: document the change in .base Fixes gh-438. Based on Nathan's comments in gh-2737. Commit: c2b2422c0d24ee7c0edc57ab7a3366f1619c414d https://github.com/numpy/numpy/commit/c2b2422c0d24ee7c0edc57ab7a3366f1619c414d Author: njsmith Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M doc/release/1.7.0-notes.rst Log Message: ----------- Merge pull request #2737 from certik/fix438 DOC: document the change in .base Compare: https://github.com/numpy/numpy/compare/69c06da1d148...c2b2422c0d24 From noreply at github.com Thu Dec 27 01:46:21 2012 From: noreply at github.com (GitHub) Date: Wed, 26 Dec 2012 22:46:21 -0800 Subject: [Numpy-svn] [numpy/numpy] 15022c: FIX: Use the NPY_TIME_T macro everywhere Message-ID: <50dbeebdc45d1_7e06f9baf0154832@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 15022cbfc5fdbae023fae3b8384459d2dee07c53 https://github.com/numpy/numpy/commit/15022cbfc5fdbae023fae3b8384459d2dee07c53 Author: Ond?ej ?ert?k Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/core/src/multiarray/datetime_strings.c Log Message: ----------- FIX: Use the NPY_TIME_T macro everywhere Previously, two (critical) parts of the code used `time_t` instead of `NPY_TIME_T`. Due to the fact, that most of the time `NPY_TIME_T` was equal to `time_t`, this bug didn't show up. But in mingw, `NPY_TIME_T` is actually equal to `__time64_t` and then this causes 64 bit integers to be cast into 32 bit integers (thus becoming negative), which causes localtime() to fail in mingw. Fixes gh-568. Commit: 7a0c495cdd0e07e6e8430db96aed98510845c0c2 https://github.com/numpy/numpy/commit/7a0c495cdd0e07e6e8430db96aed98510845c0c2 Author: Charles Harris Date: 2012-12-26 (Wed, 26 Dec 2012) Changed paths: M numpy/core/src/multiarray/datetime_strings.c Log Message: ----------- Merge pull request #2856 from certik/fix568 FIX: Use the NPY_TIME_T macro everywhere Compare: https://github.com/numpy/numpy/compare/db671db12269...7a0c495cdd0e From noreply at github.com Thu Dec 27 11:25:10 2012 From: noreply at github.com (GitHub) Date: Thu, 27 Dec 2012 08:25:10 -0800 Subject: [Numpy-svn] [numpy/numpy] e54f75: FIX: Use the NPY_TIME_T macro everywhere Message-ID: <50dc76663b559_19f11132ae4823b5@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: e54f750ad52eeb0f551ecf7b576aac8ef0d5b325 https://github.com/numpy/numpy/commit/e54f750ad52eeb0f551ecf7b576aac8ef0d5b325 Author: Ond?ej ?ert?k Date: 2012-12-27 (Thu, 27 Dec 2012) Changed paths: M numpy/core/src/multiarray/datetime_strings.c Log Message: ----------- FIX: Use the NPY_TIME_T macro everywhere Previously, two (critical) parts of the code used `time_t` instead of `NPY_TIME_T`. Due to the fact, that most of the time `NPY_TIME_T` was equal to `time_t`, this bug didn't show up. But in mingw, `NPY_TIME_T` is actually equal to `__time64_t` and then this causes 64 bit integers to be cast into 32 bit integers (thus becoming negative), which causes localtime() to fail in mingw. Fixes gh-568. Commit: 7f3aeac8696dd4e169f8ed7034345dbddcd3718b https://github.com/numpy/numpy/commit/7f3aeac8696dd4e169f8ed7034345dbddcd3718b Author: Ond?ej ?ert?k Date: 2012-12-27 (Thu, 27 Dec 2012) Changed paths: M numpy/core/src/multiarray/datetime_strings.c Log Message: ----------- Merge pull request #2857 from certik/backport2856 FIX: Use the NPY_TIME_T macro everywhere Compare: https://github.com/numpy/numpy/compare/c2b2422c0d24...7f3aeac8696d From noreply at github.com Thu Dec 27 12:46:38 2012 From: noreply at github.com (GitHub) Date: Thu, 27 Dec 2012 09:46:38 -0800 Subject: [Numpy-svn] [numpy/numpy] a8c641: DOC: document the change in .base Message-ID: <50dc897ee40ba_2a0b119eaf0995ef@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: a8c641ffa03d23932ab5aea9d8ccced0f919ac8c https://github.com/numpy/numpy/commit/a8c641ffa03d23932ab5aea9d8ccced0f919ac8c Author: Ond?ej ?ert?k Date: 2012-12-27 (Thu, 27 Dec 2012) Changed paths: M doc/release/1.7.0-notes.rst Log Message: ----------- DOC: document the change in .base Forwardport gh-2737. From noreply at github.com Thu Dec 27 18:57:42 2012 From: noreply at github.com (GitHub) Date: Thu, 27 Dec 2012 15:57:42 -0800 Subject: [Numpy-svn] [numpy/numpy] 75bb79: DOC: Thoroughly document datetime issues Message-ID: <50dce0761b888_44061680af0923a5@sh3.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 75bb79c26dc6f4f8fde066db6eeb99caa1fbcc8b https://github.com/numpy/numpy/commit/75bb79c26dc6f4f8fde066db6eeb99caa1fbcc8b Author: Ond?ej ?ert?k Date: 2012-12-27 (Thu, 27 Dec 2012) Changed paths: M numpy/core/src/multiarray/datetime_strings.c Log Message: ----------- DOC: Thoroughly document datetime issues After understanding the issues with datetime (see gh-568), I have documented my understanding as comments in the code, so that the next time there are problems with datetime on some platform, one can quickly figure out what is going on from the code + comments. Commit: 8a99edc3c6ae2c48c0f21d1bce5553a8540b85e0 https://github.com/numpy/numpy/commit/8a99edc3c6ae2c48c0f21d1bce5553a8540b85e0 Author: Ond?ej ?ert?k Date: 2012-12-27 (Thu, 27 Dec 2012) Changed paths: M numpy/core/src/multiarray/datetime_strings.c Log Message: ----------- DOC: Add a blank line to multiline comments Multiline comments should begin with a blank line. This patch fixes it. Commit: ec8236e20db1bbb66df2b5c1bd0c281422a7c9c5 https://github.com/numpy/numpy/commit/ec8236e20db1bbb66df2b5c1bd0c281422a7c9c5 Author: Charles Harris Date: 2012-12-27 (Thu, 27 Dec 2012) Changed paths: M numpy/core/src/multiarray/datetime_strings.c Log Message: ----------- Merge pull request #2858 from certik/document_datetime DOC: Thoroughly document datetime issues Compare: https://github.com/numpy/numpy/compare/a8c641ffa03d...ec8236e20db1 From noreply at github.com Thu Dec 27 20:46:21 2012 From: noreply at github.com (GitHub) Date: Thu, 27 Dec 2012 17:46:21 -0800 Subject: [Numpy-svn] [numpy/numpy] c8decf: DOC: Thoroughly document datetime issues Message-ID: <50dcf9edcd2b_18481822ae8825d1@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: c8decf25189ad560b5ab40a13cf007390e626649 https://github.com/numpy/numpy/commit/c8decf25189ad560b5ab40a13cf007390e626649 Author: Ond?ej ?ert?k Date: 2012-12-27 (Thu, 27 Dec 2012) Changed paths: M numpy/core/src/multiarray/datetime_strings.c Log Message: ----------- DOC: Thoroughly document datetime issues After understanding the issues with datetime (see gh-568), I have documented my understanding as comments in the code, so that the next time there are problems with datetime on some platform, one can quickly figure out what is going on from the code + comments. Commit: bae733005749e9747fd6632730e2542d80f78aea https://github.com/numpy/numpy/commit/bae733005749e9747fd6632730e2542d80f78aea Author: Ond?ej ?ert?k Date: 2012-12-27 (Thu, 27 Dec 2012) Changed paths: M numpy/core/src/multiarray/datetime_strings.c Log Message: ----------- DOC: Add a blank line to multiline comments Multiline comments should begin with a blank line. This patch fixes it. Commit: 77bcfcb8a01ce8887e94f3da8cd8cbb0d2f27769 https://github.com/numpy/numpy/commit/77bcfcb8a01ce8887e94f3da8cd8cbb0d2f27769 Author: Ond?ej ?ert?k Date: 2012-12-27 (Thu, 27 Dec 2012) Changed paths: M numpy/core/src/multiarray/datetime_strings.c Log Message: ----------- Merge pull request #2861 from certik/backport2858 Backport #2858 Compare: https://github.com/numpy/numpy/compare/7f3aeac8696d...77bcfcb8a01c From noreply at github.com Fri Dec 28 14:41:00 2012 From: noreply at github.com (GitHub) Date: Fri, 28 Dec 2012 11:41:00 -0800 Subject: [Numpy-svn] [numpy/numpy] e92469: BLD: Add support for Python 3.3 in paver Message-ID: <50ddf5ccefc07_33061a22af045129@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: e924692e8de9fa3e36bda48e6d4070b73f870037 https://github.com/numpy/numpy/commit/e924692e8de9fa3e36bda48e6d4070b73f870037 Author: Ond?ej ?ert?k Date: 2012-12-28 (Fri, 28 Dec 2012) Changed paths: M pavement.py Log Message: ----------- BLD: Add support for Python 3.3 in paver Commit: 6b788c890be45f527cb7cf938279014053a36185 https://github.com/numpy/numpy/commit/6b788c890be45f527cb7cf938279014053a36185 Author: Ond?ej ?ert?k Date: 2012-12-28 (Fri, 28 Dec 2012) Changed paths: M pavement.py Log Message: ----------- Merge pull request #2864 from certik/addpy3.3 BLD: Add support for Python 3.3 in paver Compare: https://github.com/numpy/numpy/compare/ec8236e20db1...6b788c890be4 From noreply at github.com Fri Dec 28 14:42:02 2012 From: noreply at github.com (GitHub) Date: Fri, 28 Dec 2012 11:42:02 -0800 Subject: [Numpy-svn] [numpy/numpy] 931c1c: BLD: Add support for Python 3.3 in paver Message-ID: <50ddf60ac2dc1_5191821ae485937@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: 931c1c0c6a5f54b38b19420399af3adbb1efc3f1 https://github.com/numpy/numpy/commit/931c1c0c6a5f54b38b19420399af3adbb1efc3f1 Author: Ond?ej ?ert?k Date: 2012-12-28 (Fri, 28 Dec 2012) Changed paths: M pavement.py Log Message: ----------- BLD: Add support for Python 3.3 in paver From noreply at github.com Fri Dec 28 15:05:18 2012 From: noreply at github.com (GitHub) Date: Fri, 28 Dec 2012 12:05:18 -0800 Subject: [Numpy-svn] [numpy/numpy] 678ad4: FIX: remove a spurious check in get_cast_transfer_... Message-ID: <50ddfb7e9c062_3c5e1343af415814@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 678ad43878dfae3a85362c549a8a5ab6bf5c48f1 https://github.com/numpy/numpy/commit/678ad43878dfae3a85362c549a8a5ab6bf5c48f1 Author: Nathaniel J. Smith Date: 2012-12-28 (Fri, 28 Dec 2012) Changed paths: M numpy/core/src/multiarray/dtype_transfer.c M numpy/core/tests/test_dtype.py Log Message: ----------- FIX: remove a spurious check in get_cast_transfer_function At least, I hope it's spurious. Certainly it's creating a spurious error message, is unexpected by callers (one of whom specifically makes the *opposite* check before calling get_cast_transfer_function), and even if it is a useful check for some reason I can't see, it certainly doesn't belong in this function (which is otherwise just taking care of byte-swapping and alignment issues and doesn't know anything about dtypes). And worst case, we'll have turned an exception into a crash; even if I'm wrong, this shouldn't cause any code to go from working to not working, just from broken to slightly-more-broken. Test and original diagnosis by @cgohlke. Fixes gh-2798. Commit: 4a3c3478ececa99d0382ca9a8d9d134d4bdd256d https://github.com/numpy/numpy/commit/4a3c3478ececa99d0382ca9a8d9d134d4bdd256d Author: Charles Harris Date: 2012-12-28 (Fri, 28 Dec 2012) Changed paths: M numpy/core/src/multiarray/dtype_transfer.c M numpy/core/tests/test_dtype.py Log Message: ----------- Merge pull request #2863 from njsmith/remove-weird-type-check FIX: remove a spurious check in get_cast_transfer_function Compare: https://github.com/numpy/numpy/compare/6b788c890be4...4a3c3478ecec From noreply at github.com Fri Dec 28 16:16:03 2012 From: noreply at github.com (GitHub) Date: Fri, 28 Dec 2012 13:16:03 -0800 Subject: [Numpy-svn] [numpy/numpy] d930c8: FIX: remove a spurious check in get_cast_transfer_... Message-ID: <50de0c1333734_5191821ae41018ea@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: d930c8827f2f664e8e756de919f9cf3367cfe37b https://github.com/numpy/numpy/commit/d930c8827f2f664e8e756de919f9cf3367cfe37b Author: Nathaniel J. Smith Date: 2012-12-28 (Fri, 28 Dec 2012) Changed paths: M numpy/core/src/multiarray/dtype_transfer.c M numpy/core/tests/test_dtype.py Log Message: ----------- FIX: remove a spurious check in get_cast_transfer_function At least, I hope it's spurious. Certainly it's creating a spurious error message, is unexpected by callers (one of whom specifically makes the *opposite* check before calling get_cast_transfer_function), and even if it is a useful check for some reason I can't see, it certainly doesn't belong in this function (which is otherwise just taking care of byte-swapping and alignment issues and doesn't know anything about dtypes). And worst case, we'll have turned an exception into a crash; even if I'm wrong, this shouldn't cause any code to go from working to not working, just from broken to slightly-more-broken. Test and original diagnosis by @cgohlke. Fixes gh-2798. From noreply at github.com Fri Dec 28 17:56:49 2012 From: noreply at github.com (GitHub) Date: Fri, 28 Dec 2012 14:56:49 -0800 Subject: [Numpy-svn] [numpy/numpy] 82fc66: Update the C API version number Message-ID: <50de23b158b17_70c61475ae439920@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: 82fc667f97430b8835b16a2fdb02b26a928ea3a6 https://github.com/numpy/numpy/commit/82fc667f97430b8835b16a2fdb02b26a928ea3a6 Author: Ond?ej ?ert?k Date: 2012-12-28 (Fri, 28 Dec 2012) Changed paths: M numpy/core/code_generators/cversions.txt Log Message: ----------- Update the C API version number Commit: 1cd02e093d4a27ff526dfffa2152a67e93817fbd https://github.com/numpy/numpy/commit/1cd02e093d4a27ff526dfffa2152a67e93817fbd Author: Ond?ej ?ert?k Date: 2012-12-28 (Fri, 28 Dec 2012) Changed paths: M setup.py Log Message: ----------- REL: Release 1.7.0rc1 Compare: https://github.com/numpy/numpy/compare/d930c8827f2f...1cd02e093d4a From noreply at github.com Fri Dec 28 17:58:34 2012 From: noreply at github.com (GitHub) Date: Fri, 28 Dec 2012 14:58:34 -0800 Subject: [Numpy-svn] [numpy/numpy] Message-ID: <50de241abfc95_57e01194af052258@sh3.rs.github.com.mail> Branch: refs/tags/v1.7.0rc1 Home: https://github.com/numpy/numpy From noreply at github.com Sun Dec 30 11:31:30 2012 From: noreply at github.com (GitHub) Date: Sun, 30 Dec 2012 08:31:30 -0800 Subject: [Numpy-svn] [numpy/numpy] 864353: move to www.numpy.org Message-ID: <50e06c62e558e_52cb1336ae83079f@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 864353e4f2ce74e81416ee5071d8b6c4ce9e2934 https://github.com/numpy/numpy/commit/864353e4f2ce74e81416ee5071d8b6c4ce9e2934 Author: Sandro Tosi Date: 2012-12-30 (Sun, 30 Dec 2012) Changed paths: M bento.info M doc/source/dev/gitwash/git_links.inc M doc/source/dev/gitwash_links.txt M setup.py Log Message: ----------- move to www.numpy.org Commit: c56826b9255b232053d5189286dd545d736a262d https://github.com/numpy/numpy/commit/c56826b9255b232053d5189286dd545d736a262d Author: Ralf Gommers Date: 2012-12-30 (Sun, 30 Dec 2012) Changed paths: M bento.info M doc/source/dev/gitwash/git_links.inc M doc/source/dev/gitwash_links.txt M setup.py Log Message: ----------- Merge pull request #2872 from sandrotosi/master-numpy.org DOC: point links to www.numpy.org Compare: https://github.com/numpy/numpy/compare/4a3c3478ecec...c56826b9255b From noreply at github.com Mon Dec 31 11:56:06 2012 From: noreply at github.com (GitHub) Date: Mon, 31 Dec 2012 08:56:06 -0800 Subject: [Numpy-svn] [numpy/numpy] e61589: fix array interface documentation links Message-ID: <50e1c3a69a2ff_1854164faf49214@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: e615890269ac9cfb26ebb490eaef76bbe4845642 https://github.com/numpy/numpy/commit/e615890269ac9cfb26ebb490eaef76bbe4845642 Author: Sandro Tosi Date: 2012-12-30 (Sun, 30 Dec 2012) Changed paths: M doc/numpybook/numpybook.lyx M numpy/core/include/numpy/ndarraytypes.h Log Message: ----------- fix array interface documentation links Commit: a457fd2a2a8bcd99c7e4a25c56051de46dc06525 https://github.com/numpy/numpy/commit/a457fd2a2a8bcd99c7e4a25c56051de46dc06525 Author: Ralf Gommers Date: 2012-12-31 (Mon, 31 Dec 2012) Changed paths: M doc/numpybook/numpybook.lyx M numpy/core/include/numpy/ndarraytypes.h Log Message: ----------- Merge pull request #2873 from sandrotosi/master-numpy.org DOC: fix array interface documentation links Compare: https://github.com/numpy/numpy/compare/c56826b9255b...a457fd2a2a8b From noreply at github.com Mon Dec 31 13:34:38 2012 From: noreply at github.com (GitHub) Date: Mon, 31 Dec 2012 10:34:38 -0800 Subject: [Numpy-svn] [numpy/numpy] 78628f: fix array interface documentation links Message-ID: <50e1dabe3ddd_6896ec3aec1216e@sh2.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: 78628fd33e92bb094bbe51a61c2e0b59718bda9e https://github.com/numpy/numpy/commit/78628fd33e92bb094bbe51a61c2e0b59718bda9e Author: Sandro Tosi Date: 2012-12-31 (Mon, 31 Dec 2012) Changed paths: M doc/numpybook/numpybook.lyx M numpy/core/include/numpy/ndarraytypes.h Log Message: ----------- fix array interface documentation links From noreply at github.com Mon Dec 31 13:35:53 2012 From: noreply at github.com (GitHub) Date: Mon, 31 Dec 2012 10:35:53 -0800 Subject: [Numpy-svn] [numpy/numpy] d5d204: move to www.numpy.org Message-ID: <50e1db099b32e_270d199faec124734@sh3.rs.github.com.mail> Branch: refs/heads/maintenance/1.7.x Home: https://github.com/numpy/numpy Commit: d5d2049e05c016e3929523ddf8c646ab47f76487 https://github.com/numpy/numpy/commit/d5d2049e05c016e3929523ddf8c646ab47f76487 Author: Sandro Tosi Date: 2012-12-31 (Mon, 31 Dec 2012) Changed paths: M bento.info M doc/source/dev/gitwash/git_links.inc M doc/source/dev/gitwash_links.txt M setup.py Log Message: ----------- move to www.numpy.org From noreply at github.com Mon Dec 31 17:32:45 2012 From: noreply at github.com (GitHub) Date: Mon, 31 Dec 2012 14:32:45 -0800 Subject: [Numpy-svn] [numpy/numpy] 9e7f46: DOC: Add missing minus sign Message-ID: <50e2128dc16f3_162a1bb0ae8492b3@sh2.rs.github.com.mail> Branch: refs/heads/master Home: https://github.com/numpy/numpy Commit: 9e7f462b0dc386a856ec07c21876b07016c9258b https://github.com/numpy/numpy/commit/9e7f462b0dc386a856ec07c21876b07016c9258b Author: Ond?ej ?ert?k Date: 2012-12-31 (Mon, 31 Dec 2012) Changed paths: M numpy/doc/basics.py Log Message: ----------- DOC: Add missing minus sign The int64 data type allows numbers from -9223372036854775808 to 9223372036854775807. The minus sign was missing. Commit: c74586282e4598e70b9b2473ee987785e2a61477 https://github.com/numpy/numpy/commit/c74586282e4598e70b9b2473ee987785e2a61477 Author: njsmith Date: 2012-12-31 (Mon, 31 Dec 2012) Changed paths: M numpy/doc/basics.py Log Message: ----------- Merge pull request #2874 from certik/fixdoc DOC: Add missing minus sign Compare: https://github.com/numpy/numpy/compare/a457fd2a2a8b...c74586282e45