<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/__init__.py, branch v1.12.0rc1</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>DOC: change Numpy to NumPy in dosctrings and comments</title>
<updated>2016-09-06T12:42:08+00:00</updated>
<author>
<name>Pierre de Buyl</name>
<email>pdebuyl@pdebuyl.be</email>
</author>
<published>2016-09-06T12:42:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681'/>
<id>2a55233b81a6ea18a57d1dd4f7bc5fff9f2fb681</id>
<content type='text'>
The strings in error messages were left untouched
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The strings in error messages were left untouched
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Make sure numpy globals keep identity after reload.</title>
<updated>2016-08-16T19:12:32+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-07-20T17:09:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=0ade4c43f052247a2d12a2c49d3c846e6c429fa9'/>
<id>0ade4c43f052247a2d12a2c49d3c846e6c429fa9</id>
<content type='text'>
Reloading currently causes problems because global classes defined in
numpy/__init__.py change their identity (a is b) after reload. The
solution taken here is to move those classes to a new non-reloadable
module numpy/_globals and import them into numpy from there.

Classes moved are ModuleDeprecationWarning, VisibleDeprecationWarning,
and _NoValue.

Closes #7844.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reloading currently causes problems because global classes defined in
numpy/__init__.py change their identity (a is b) after reload. The
solution taken here is to move those classes to a new non-reloadable
module numpy/_globals and import them into numpy from there.

Classes moved are ModuleDeprecationWarning, VisibleDeprecationWarning,
and _NoValue.

Closes #7844.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Raise RuntimeError when reloading numpy is attempted.</title>
<updated>2016-07-20T17:23:15+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-07-20T17:09:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b9b42ee958db9882c6490311aa47395b4b5e5922'/>
<id>b9b42ee958db9882c6490311aa47395b4b5e5922</id>
<content type='text'>
There seems to be little use in reloading numpy as any changed modules
that are imported into numpy would need to be reloaded first in order to
see any changes. Furthermore, reloading causes problems as global
classes defined in numpy/__init__.py change their identity. Hence we
raise a RuntimeError when an attempt to reload numpy is made.

Closes #7844.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There seems to be little use in reloading numpy as any changed modules
that are imported into numpy would need to be reloaded first in order to
see any changes. Furthermore, reloading causes problems as global
classes defined in numpy/__init__.py change their identity. Hence we
raise a RuntimeError when an attempt to reload numpy is made.

Closes #7844.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: platform-specific install hook to change init</title>
<updated>2016-03-07T23:17:21+00:00</updated>
<author>
<name>Matthew Brett</name>
<email>matthew.brett@gmail.com</email>
</author>
<published>2016-02-11T21:24:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=9d6cdc1946073dd6fc5195a18f77785800d71db2'/>
<id>9d6cdc1946073dd6fc5195a18f77785800d71db2</id>
<content type='text'>
Give hook to allow platform-specific installs to modify the
initialization of numpy.  Particular use-case is to allow check for SSE2
on Windows when shipping with ATLAS wheel.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Give hook to allow platform-specific installs to modify the
initialization of numpy.  Particular use-case is to allow check for SSE2
on Windows when shipping with ATLAS wheel.
</pre>
</div>
</content>
</entry>
<entry>
<title>[TST] Refactor new raise_warnings logic for subpackage test suites</title>
<updated>2015-12-30T13:43:43+00:00</updated>
<author>
<name>Nathaniel J. Smith</name>
<email>njs@pobox.com</email>
</author>
<published>2015-12-30T11:01:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a61ddd3812cc95f9c9e6eeac7f8bcfb92130f978'/>
<id>a61ddd3812cc95f9c9e6eeac7f8bcfb92130f978</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[FIX] fix NoseTester's raise_warning default</title>
<updated>2015-12-30T02:25:56+00:00</updated>
<author>
<name>Nathaniel J. Smith</name>
<email>njs@pobox.com</email>
</author>
<published>2015-12-30T01:52:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=237ab4398ac880be30fc262e7bf6163e9baff921'/>
<id>237ab4398ac880be30fc262e7bf6163e9baff921</id>
<content type='text'>
Our test-runner's raise_warning mode traditionally has varied depending
on whether we have a development or release version of numpy: for
development versions we raise on warnings, and for release versions we
don't. This is all very sensible... *if* you're running numpy's test
suite. But our test-runner is also used by other packages like scipy,
and it doesn't make sense for scipy's raise_warning mode to vary
depending on whether *numpy* is a development or release version. (It
should vary depending on whether the scipy-under-test is a development
or release version.) So this commit moves the numpy-version-dependent
raise_warning logic out of the generic NoseTester class and into
numpy-specific code.

(See scipy/scipy#5609 for more discussion.)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Our test-runner's raise_warning mode traditionally has varied depending
on whether we have a development or release version of numpy: for
development versions we raise on warnings, and for release versions we
don't. This is all very sensible... *if* you're running numpy's test
suite. But our test-runner is also used by other packages like scipy,
and it doesn't make sense for scipy's raise_warning mode to vary
depending on whether *numpy* is a development or release version. (It
should vary depending on whether the scipy-under-test is a development
or release version.) So this commit moves the numpy-version-dependent
raise_warning logic out of the generic NoseTester class and into
numpy-specific code.

(See scipy/scipy#5609 for more discussion.)
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: add a warning filter for possible "ndarray size changed" Cython noise.</title>
<updated>2015-04-05T07:37:39+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2015-04-05T07:37:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=524208a537aed9765aac1d7eb553eac9b82d32f1'/>
<id>524208a537aed9765aac1d7eb553eac9b82d32f1</id>
<content type='text'>
See gh-432 for details.  Motivation for adding this now is the discussion
on gh-5343.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See gh-432 for details.  Motivation for adding this now is the discussion
on gh-5343.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: _NoValue class at top-level to test kwargs</title>
<updated>2015-03-15T18:31:37+00:00</updated>
<author>
<name>Matthew Brett</name>
<email>matthew.brett@gmail.com</email>
</author>
<published>2015-03-15T18:31:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4b4d8510739c9ea7a80391e2656d84a3c5e4a9c3'/>
<id>4b4d8510739c9ea7a80391e2656d84a3c5e4a9c3</id>
<content type='text'>
Add _NoValue class at top level to make it possible to detect when
non-default values got passed to a keyword argument, as in:

    def func(a, b=np._NoValue):
        if b is not np._NoValue:
            warnings.warn("Argument b is deprecated",
                          DeprecationWarning)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add _NoValue class at top level to make it possible to detect when
non-default values got passed to a keyword argument, as in:

    def func(a, b=np._NoValue):
        if b is not np._NoValue:
            warnings.warn("Argument b is deprecated",
                          DeprecationWarning)
</pre>
</div>
</content>
</entry>
<entry>
<title>Update __init__.py</title>
<updated>2014-04-26T19:41:05+00:00</updated>
<author>
<name>Cameron Bates</name>
<email>cameron.r.bates@gmail.com</email>
</author>
<published>2014-04-26T19:41:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=d6e8cde4c5795dd721fcc12c20394f049fe8904f'/>
<id>d6e8cde4c5795dd721fcc12c20394f049fe8904f</id>
<content type='text'>
interpreter is misspelled</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
interpreter is misspelled</pre>
</div>
</content>
</entry>
<entry>
<title>DEP: Deprecate numpy.rank</title>
<updated>2014-04-22T20:31:40+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2014-04-12T21:42:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a45df106b5e34ae60eca0cf9f630df1e39bc0491'/>
<id>a45df106b5e34ae60eca0cf9f630df1e39bc0491</id>
<content type='text'>
This function is commonly confused with numpy.linalg.matrix_rank
and exists itself only for history reasons.

Closes gh-4616
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This function is commonly confused with numpy.linalg.matrix_rank
and exists itself only for history reasons.

Closes gh-4616
</pre>
</div>
</content>
</entry>
</feed>
