<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/f2py/tests/src, branch main</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>TST: Add a test for gh-23533</title>
<updated>2023-05-12T17:41:22+00:00</updated>
<author>
<name>Rohit Goswami</name>
<email>rog32@hi.is</email>
</author>
<published>2023-04-16T17:12:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=aa5b9d6665709d5ca8a098c2e4f9ce2f5c8a25b7'/>
<id>aa5b9d6665709d5ca8a098c2e4f9ce2f5c8a25b7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'main' into f2pyFuncFix_23598</title>
<updated>2023-04-26T08:51:21+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastianb@nvidia.com</email>
</author>
<published>2023-04-26T08:51:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=b4f0e4122e83115d99de849fcfc4fd1fc8b8f65d'/>
<id>b4f0e4122e83115d99de849fcfc4fd1fc8b8f65d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Add a test for the f2py function wrapper file</title>
<updated>2023-04-17T00:59:45+00:00</updated>
<author>
<name>Rohit Goswami</name>
<email>rog32@hi.is</email>
</author>
<published>2023-04-17T00:59:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=c7ff4118a345c966e2a0fc688e054e3fd9191e99'/>
<id>c7ff4118a345c966e2a0fc688e054e3fd9191e99</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Add a test for gh-23598</title>
<updated>2023-04-16T18:18:02+00:00</updated>
<author>
<name>Rohit Goswami</name>
<email>rog32@hi.is</email>
</author>
<published>2023-04-16T18:18:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=f96b8daea959db191ff84b80dbc1ea948722fbaa'/>
<id>f96b8daea959db191ff84b80dbc1ea948722fbaa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix bug in parsing F77 style string arrays.</title>
<updated>2023-03-27T13:18:37+00:00</updated>
<author>
<name>Bob Eldering</name>
<email>eldering@jive.eu</email>
</author>
<published>2023-03-22T15:48:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=204927f66d2f71da3f4f676769da5684cf85f427'/>
<id>204927f66d2f71da3f4f676769da5684cf85f427</id>
<content type='text'>
Example problematic variable: CHARACTER WORDARR(3)*8
This would be wrapped by an array with shape (3, 8) and dtype |S1,
instead of the desired shape (3,) and dtype |S8.
See #23356.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Example problematic variable: CHARACTER WORDARR(3)*8
This would be wrapped by an array with shape (3, 8) and dtype |S1,
instead of the desired shape (3,) and dtype |S8.
See #23356.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix for f2py string scalars (#23194)</title>
<updated>2023-02-11T13:26:42+00:00</updated>
<author>
<name>Alexander Heger</name>
<email>2sn@users.noreply.github.com</email>
</author>
<published>2023-02-11T13:26:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=8daec0ecf11f9d2633d133f2d2b7d6c39f157f4b'/>
<id>8daec0ecf11f9d2633d133f2d2b7d6c39f157f4b</id>
<content type='text'>
in previous version, any string scalar was converted to a string array of dimension len, i.e., a definition

character(len=N) :: X
effectively became

character(len=NNN), dimension(NNN) :: X
from the point of few of the numpy (python) interface:

X.shape == (NNN,)
X.dtype == '|SNNN'

Closes gh-23192</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
in previous version, any string scalar was converted to a string array of dimension len, i.e., a definition

character(len=N) :: X
effectively became

character(len=NNN), dimension(NNN) :: X
from the point of few of the numpy (python) interface:

X.shape == (NNN,)
X.dtype == '|SNNN'

Closes gh-23192</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Use whole file for encoding checks with `charset_normalizer` [f2py] (#22872)</title>
<updated>2022-12-25T23:20:55+00:00</updated>
<author>
<name>Rohit Goswami</name>
<email>rgoswami@quansight.com</email>
</author>
<published>2022-12-25T23:20:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=fe73a8498417d762a2102d759fa4c88613b398ef'/>
<id>fe73a8498417d762a2102d759fa4c88613b398ef</id>
<content type='text'>
* BUG: Use whole file for encoding checks [f2py]

* DOC: Add a code comment

Co-authored-by: melissawm &lt;melissawm@gmail.com&gt;

* TST: Add a conditional unicode f2py test

* MAINT: Add chardet as a test requirement

* ENH: Cleanup and switch f2py to charset_normalizer

* MAINT: Remove chardet for charset_normalizer

* TST: Simplify UTF-8 encoding [f2py]

Co-authored-by: melissawm &lt;melissawm@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* BUG: Use whole file for encoding checks [f2py]

* DOC: Add a code comment

Co-authored-by: melissawm &lt;melissawm@gmail.com&gt;

* TST: Add a conditional unicode f2py test

* MAINT: Add chardet as a test requirement

* ENH: Cleanup and switch f2py to charset_normalizer

* MAINT: Remove chardet for charset_normalizer

* TST: Simplify UTF-8 encoding [f2py]

Co-authored-by: melissawm &lt;melissawm@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Ensure the f2py value attribute is handled</title>
<updated>2022-06-21T15:49:17+00:00</updated>
<author>
<name>Rohit Goswami</name>
<email>rog32@hi.is</email>
</author>
<published>2022-06-21T15:45:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=278309170715384a542b7e82b83d57f73025122e'/>
<id>278309170715384a542b7e82b83d57f73025122e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Ensure long_long in f2cmap works</title>
<updated>2022-06-10T03:53:09+00:00</updated>
<author>
<name>Rohit Goswami</name>
<email>rog32@hi.is</email>
</author>
<published>2022-06-10T03:52:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=43fe8d6775a2a9db63fd00c63c14c7ee2efae01f'/>
<id>43fe8d6775a2a9db63fd00c63c14c7ee2efae01f</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 #19388 from pearu/enh-f2py-character-support</title>
<updated>2022-06-06T15:46:27+00:00</updated>
<author>
<name>Melissa Weber Mendonça</name>
<email>melissawm.github@gmail.com</email>
</author>
<published>2022-06-06T15:46:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=aeb2b21670e6071467db1aa237fb2772616787e0'/>
<id>aeb2b21670e6071467db1aa237fb2772616787e0</id>
<content type='text'>
Co-authored-by: Rohit Goswami &lt;rog32@hi.is&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Rohit Goswami &lt;rog32@hi.is&gt;</pre>
</div>
</content>
</entry>
</feed>
