<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/f2py, branch auto</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>MAINT: Fix some typos in a code string and comments</title>
<updated>2016-01-28T05:14:48+00:00</updated>
<author>
<name>Dongjoon Hyun</name>
<email>dongjoon@apache.org</email>
</author>
<published>2016-01-27T23:42:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=73a2fd11a74eedb97201fc8d54ea193e810ea9d3'/>
<id>73a2fd11a74eedb97201fc8d54ea193e810ea9d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT, STY: Removed unused variable in f2py/f90mod_rules.py</title>
<updated>2016-01-07T02:46:05+00:00</updated>
<author>
<name>rehassachdeva</name>
<email>aquannie@gmail.com</email>
</author>
<published>2016-01-07T02:46:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=1c3615f16239808d518c0dc86bfc34541fd1ce4a'/>
<id>1c3615f16239808d518c0dc86bfc34541fd1ce4a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #6886 from charris/use-temppath</title>
<updated>2016-01-02T15:34:54+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2016-01-02T15:34:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=9bd67153c6efab990b33ff34342b7782256de1f9'/>
<id>9bd67153c6efab990b33ff34342b7782256de1f9</id>
<content type='text'>
MAINT: Simplify some tests using temppath context manager.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MAINT: Simplify some tests using temppath context manager.</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://91.123.203.49/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>MAINT: Simplify some tests using temppath context manager.</title>
<updated>2015-12-26T23:04:12+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2015-12-25T04:04:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=555787a5b6a0ec4e27ce05a2c96d97b2aa48cef7'/>
<id>555787a5b6a0ec4e27ce05a2c96d97b2aa48cef7</id>
<content type='text'>
This replaces code of the pattern

```
fd, name = tempfile.mkstemp(...)
os.close(fd)
try:
   do stuff with name
finally:
    os.remove(name)
```

with

```
with temppath() as name:
    do stuff with name
```

A few more complicated cases are also handled. The remains some
particularly gnarly code the could probably be refactored to use
temppath, but that is a more demanding project.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This replaces code of the pattern

```
fd, name = tempfile.mkstemp(...)
os.close(fd)
try:
   do stuff with name
finally:
    os.remove(name)
```

with

```
with temppath() as name:
    do stuff with name
```

A few more complicated cases are also handled. The remains some
particularly gnarly code the could probably be refactored to use
temppath, but that is a more demanding project.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove commented out code blocks</title>
<updated>2015-12-20T09:08:29+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung17@gmail.com</email>
</author>
<published>2015-12-20T09:08:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=0574f62bf58eada5860fe0620151aede85a8dae4'/>
<id>0574f62bf58eada5860fe0620151aede85a8dae4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Use print only as function when print_function is imported from __future__</title>
<updated>2015-12-20T00:50:09+00:00</updated>
<author>
<name>gfyoung</name>
<email>gfyoung17@gmail.com</email>
</author>
<published>2015-12-20T00:49:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=8bc592fabf4a2b0bc76db996b1523330ba095be3'/>
<id>8bc592fabf4a2b0bc76db996b1523330ba095be3</id>
<content type='text'>
Closes gh-6863.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes gh-6863.
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Some documentation fixups.</title>
<updated>2015-12-17T21:55:13+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2015-12-17T21:39:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=d8967ceefe7afca7a260df3f744699d1512f6fd6'/>
<id>d8967ceefe7afca7a260df3f744699d1512f6fd6</id>
<content type='text'>
Add '.. versionadded:: 1.11.0' to the new `extension` parameter
in f2py.compile and document it in the 1.11.0 release notes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add '.. versionadded:: 1.11.0' to the new `extension` parameter
in f2py.compile and document it in the 1.11.0 release notes.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG,ENH: Add extension parameter to f2py.compile and fix verbose.</title>
<updated>2015-12-17T21:52:51+00:00</updated>
<author>
<name>Alex Rogozhnikov</name>
<email>arogozhnikov@users.noreply.github.com</email>
</author>
<published>2015-11-17T19:24:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=efc2e68c153cdfa12bf87b89f6f5ed0d2073cc51'/>
<id>efc2e68c153cdfa12bf87b89f6f5ed0d2073cc51</id>
<content type='text'>
1. Verbose parameter was ignored earlier.
2. Allowed .f90 extensions for tempfiles
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1. Verbose parameter was ignored earlier.
2. Allowed .f90 extensions for tempfiles
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Include from __future__ boilerplate in some files missing it.</title>
<updated>2015-12-06T02:16:00+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2015-12-06T02:16:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=4743f3b4454a736e2bbd8b6f116f7efaef13c406'/>
<id>4743f3b4454a736e2bbd8b6f116f7efaef13c406</id>
<content type='text'>
Some newer *.py files are missing the `from __future__` boilerplate
that helps assure Python2 and Python3 compatibility.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some newer *.py files are missing the `from __future__` boilerplate
that helps assure Python2 and Python3 compatibility.
</pre>
</div>
</content>
</entry>
</feed>
