<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/tests, branch v1.13.2</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>ENH: Spelling fixes</title>
<updated>2017-05-09T09:16:14+00:00</updated>
<author>
<name>Ville Skyttä</name>
<email>ville.skytta@iki.fi</email>
</author>
<published>2017-05-09T09:16:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ef5684564e3074daf614846f30bfdd7f15f5254f'/>
<id>ef5684564e3074daf614846f30bfdd7f15f5254f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove asbytes where a b prefix would suffice</title>
<updated>2017-03-25T10:36:28+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2017-03-25T10:11:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b87fca27261f79be20ab06a222ed2330d60d9f2c'/>
<id>b87fca27261f79be20ab06a222ed2330d60d9f2c</id>
<content type='text'>
Since we only need to support python 2, we can remove any case where we just
pass a single string literal and use the b prefix instead.

What we can't do is transform asbytes("tests %d" % num), because %-formatting
fails on bytes in python 3.x &lt; 3.5.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since we only need to support python 2, we can remove any case where we just
pass a single string literal and use the b prefix instead.

What we can't do is transform asbytes("tests %d" % num), because %-formatting
fails on bytes in python 3.x &lt; 3.5.
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Add tests for stacklevel in warnings and "ignore" filters.</title>
<updated>2016-09-02T14:39:17+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2016-01-29T00:17:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4ec016784b02f69347c4429829b9eb8225ace5ee'/>
<id>4ec016784b02f69347c4429829b9eb8225ace5ee</id>
<content type='text'>
Enforces that stacklevel is used in warnings.warn and "ignore"
is not used in filterwarnings or simplefilter for most of numpy.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Enforces that stacklevel is used in warnings.warn and "ignore"
is not used in filterwarnings or simplefilter for most of numpy.
</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>TST: Fix test_ctypeslib and test_indexing when running on debug interpreter</title>
<updated>2016-04-20T14:29:17+00:00</updated>
<author>
<name>Tadeu Manoel</name>
<email>tadeu@esss.com.br</email>
</author>
<published>2016-04-20T14:27:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=afe2f5a30ebdb2654c21e40428a818cebb1180b2'/>
<id>afe2f5a30ebdb2654c21e40428a818cebb1180b2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[PATCH] Make _pointer_type_cache functional</title>
<updated>2016-02-22T21:25:39+00:00</updated>
<author>
<name>Meet Udeshi</name>
<email>mudeshi1209@gmail.com</email>
</author>
<published>2016-02-22T21:25:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=141d3a954b955b7f0821574e03b693ec4078640b'/>
<id>141d3a954b955b7f0821574e03b693ec4078640b</id>
<content type='text'>
Fix #2303
Cache queries wont miss because the whole tuple is cached as key
and not just dtype
Adapted from patch submitted by Colin Hogben
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix #2303
Cache queries wont miss because the whole tuple is cached as key
and not just dtype
Adapted from patch submitted by Colin Hogben
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Use `is None` or `is not None` instead of `== None` or `!= None`.</title>
<updated>2016-02-16T01:18:13+00:00</updated>
<author>
<name>Dongjoon Hyun</name>
<email>dongjoon@apache.org</email>
</author>
<published>2016-02-16T01:01:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c854818b60d904e2dbaa48710490441a63d0f836'/>
<id>c854818b60d904e2dbaa48710490441a63d0f836</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Fixed f2py test for Anaconda non-win32</title>
<updated>2016-02-02T20:39:26+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung17@gmail.com</email>
</author>
<published>2016-02-02T19:34:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=69a2ca41e2316e0eaa11ac2b9a618926815dad6d'/>
<id>69a2ca41e2316e0eaa11ac2b9a618926815dad6d</id>
<content type='text'>
When you run 'python -V' under Anaconda, it
returns for example, 'Python 3.4.3 :: Continuum
Analytics, Inc.' However, the original parsing
of the version in 'test_f2py' assumed there was
nothing following the version number, causing a
ValueError because you can't assign three
variables to four components that you get from
splitting on the '.'
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When you run 'python -V' under Anaconda, it
returns for example, 'Python 3.4.3 :: Continuum
Analytics, Inc.' However, the original parsing
of the version in 'test_f2py' assumed there was
nothing following the version number, causing a
ValueError because you can't assign three
variables to four components that you get from
splitting on the '.'
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Fixed f2py test for non-versioned python executables</title>
<updated>2016-01-25T21:50:12+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung@mit.edu</email>
</author>
<published>2016-01-25T21:07:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=588a1c3e42302418de80eb5f7da4ad375228396e'/>
<id>588a1c3e42302418de80eb5f7da4ad375228396e</id>
<content type='text'>
The 'sys.executable' can come in various names, but
the three main ones are "python", "python{major_version}",
and "python{major_version.minor_version}". The current
version of the f2py test assumes that only the latter
two are used. Since "f2py" is generally versioned,
using the executable basename "python" will make it
impossible to find. This commit fixes that issue
by using a sure-fire way of getting the Python version.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The 'sys.executable' can come in various names, but
the three main ones are "python", "python{major_version}",
and "python{major_version.minor_version}". The current
version of the f2py test assumes that only the latter
two are used. Since "f2py" is generally versioned,
using the executable basename "python" will make it
impossible to find. This commit fixes that issue
by using a sure-fire way of getting the Python version.
</pre>
</div>
</content>
</entry>
</feed>
