-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathversion_0_32.rst.inc
More file actions
58 lines (34 loc) · 1.15 KB
/
version_0_32.rst.inc
File metadata and controls
58 lines (34 loc) · 1.15 KB
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
.. py:currentmodule:: larray
Syntax changes
^^^^^^^^^^^^^^
* renamed ``LArray.old_method_name()`` to :py:obj:`LArray.new_method_name()` (closes :issue:`1`).
* renamed ``old_argument_name`` argument of :py:obj:`LArray.method_name()` to ``new_argument_name``.
Backward incompatible changes
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
* other backward incompatible changes
New features
^^^^^^^^^^^^
* added a feature (see the :ref:`miscellaneous section <misc>` for details). It works on :ref:`api-axis` and
:ref:`api-group` objects.
Here is an example of the new feature:
>>> arr = ndtest((2, 3))
>>> arr
a\b b0 b1 b2
a0 0 1 2
a1 3 4 5
And it can also be used like this:
>>> arr = ndtest("a=a0..a2")
>>> arr
a a0 a1 a2
0 1 2
* added another feature in the editor (closes :editor_issue:`1`).
.. note::
- It works for foo bar !
- It does not work for foo baz !
.. _misc:
Miscellaneous improvements
^^^^^^^^^^^^^^^^^^^^^^^^^^
* made it possible to pass LArray objects to Numpy ufuncs directly (e.g. np.sqrt(ndtest(3)), closes :issue:`234`).
Fixes
^^^^^
* fixed something (closes :issue:`1`).