File size: 3,902 Bytes
c011401 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
.. topic:: Old F2PY NEWS January 30, 2005 Latest F2PY release (version 2.45.241_1926). New features: wrapping unsigned integers, support for ``.pyf.src`` template files, callback arguments can now be CObjects, fortran objects, built-in functions. Introduced ``intent(aux)`` attribute. Wrapped objects have ``_cpointer`` attribute holding C pointer to wrapped functions or variables. Many bug fixes and improvements, updated documentation. `Differences with the previous release (version 2.43.239_1831)`__. __ http://cens.ioc.ee/cgi-bin/cvsweb/python/f2py2e/docs/HISTORY.txt.diff?r1=1.163&r2=1.137&f=h October 4, 2004 F2PY bug fix release (version 2.43.239_1831). Better support for 64-bit platforms. Introduced ``--help-link`` and ``--link-<resource>`` options. Bug fixes. `Differences with the previous release (version 2.43.239_1806)`__. __ http://cens.ioc.ee/cgi-bin/cvsweb/python/f2py2e/docs/HISTORY.txt.diff?r1=1.137&r2=1.131&f=h September 25, 2004 Latest F2PY release (version 2.43.239_1806). Support for ``ENTRY`` statement. New attributes: ``intent(inplace)``, ``intent(callback)``. Supports Numarray 1.1. Introduced ``-*- fix -*-`` header content. Improved ``PARAMETER`` support. Documentation updates. `Differences with the previous release (version 2.39.235-1693)`__. __ http://cens.ioc.ee/cgi-bin/cvsweb/python/f2py2e/docs/HISTORY.txt.diff?r1=1.131&r2=1.98&f=h March 30, 2004 F2PY bug fix release (version 2.39.235-1693). Two new command line switches: ``--compiler`` and ``--include_paths``. Support for allocatable string arrays. Callback arguments may now be arbitrary callable objects. Win32 installers for F2PY and Scipy_core are provided. `Differences with the previous release (version 2.37.235-1660)`__. __ http://cens.ioc.ee/cgi-bin/cvsweb/python/f2py2e/docs/HISTORY.txt.diff?r1=1.98&r2=1.87&f=h March 9, 2004 F2PY bug fix release (version 2.39.235-1660). `Differences with the previous release (version 2.37.235-1644)`__. __ http://cens.ioc.ee/cgi-bin/cvsweb/python/f2py2e/docs/HISTORY.txt.diff?r1=1.87&r2=1.83&f=h February 24, 2004 Latest F2PY release (version 2.39.235-1644). Support for numpy_distutils 0.2.2 and up (e.g. compiler flags can be changed via f2py command line options). Implemented support for character arrays and arrays of strings (e.g. ``character*(*) a(m,..)``). *Important bug fixes regarding complex arguments, upgrading is highly recommended*. Documentation updates. `Differences with the previous release (version 2.37.233-1545)`__. __ http://cens.ioc.ee/cgi-bin/cvsweb/python/f2py2e/docs/HISTORY.txt.diff?r1=1.83&r2=1.58&f=h September 11, 2003 Latest F2PY release (version 2.37.233-1545). New statements: ``pymethoddef`` and ``usercode`` in interface blocks. New function: ``as_column_major_storage``. New CPP macro: ``F2PY_REPORT_ON_ARRAY_COPY``. Bug fixes. `Differences with the previous release (version 2.35.229-1505)`__. __ http://cens.ioc.ee/cgi-bin/cvsweb/python/f2py2e/docs/HISTORY.txt.diff?r1=1.58&r2=1.49&f=h August 2, 2003 Latest F2PY release (version 2.35.229-1505). `Differences with the previous release (version 2.32.225-1419)`__. __ http://cens.ioc.ee/cgi-bin/cvsweb/python/f2py2e/docs/HISTORY.txt.diff?r1=1.49&r2=1.28&f=h April 2, 2003 Initial support for Numarray_ (thanks to Todd Miller). December 8, 2002 Sixth public release of F2PY (version 2.32.225-1419). Comes with revised `F2PY Users Guide`__, `new testing site`__, lots of fixes and other improvements, see `HISTORY.txt`_ for details. __ usersguide/index.html __ TESTING.txt_ .. References ========== .. _HISTORY.txt: HISTORY.html .. _Numarray: http://www.stsci.edu/resources/software_hardware/numarray .. _TESTING.txt: TESTING.html |