File tree 4 files changed +5
-8
lines changed
4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -1191,7 +1191,7 @@ difference is that a Python list can contain objects of many different types.
1191
1191
1192
1192
The ``array `` module also provides methods for creating arrays of fixed types
1193
1193
with compact representations, but they are slower to index than lists. Also
1194
- note that the Numeric extensions and others define array-like structures with
1194
+ note that NumPy and other third party packages define array-like structures with
1195
1195
various characteristics as well.
1196
1196
1197
1197
To get Lisp-style linked lists, you can emulate cons cells using tuples::
Original file line number Diff line number Diff line change @@ -257,7 +257,6 @@ Examples::
257
257
Packing and unpacking of External Data Representation (XDR) data as used in some
258
258
remote procedure call systems.
259
259
260
- `The Numerical Python Documentation <https://docs.scipy.org/doc/ >`_
261
- The Numeric Python extension (NumPy) defines another array type; see
262
- http://www.numpy.org/ for further information about Numerical Python.
260
+ `NumPy <https://numpy.org/ >`_
261
+ The NumPy package defines another array type.
263
262
Original file line number Diff line number Diff line change @@ -1512,14 +1512,12 @@ are always available. They are listed here in alphabetical order.
1512
1512
.. class :: slice(stop)
1513
1513
slice(start, stop[, step])
1514
1514
1515
- .. index :: single: Numerical Python
1516
-
1517
1515
Return a :term: `slice ` object representing the set of indices specified by
1518
1516
``range(start, stop, step) ``. The *start * and *step * arguments default to
1519
1517
``None ``. Slice objects have read-only data attributes :attr: `~slice.start `,
1520
1518
:attr: `~slice.stop ` and :attr: `~slice.step ` which merely return the argument
1521
1519
values (or their default). They have no other explicit functionality;
1522
- however they are used by Numerical Python and other third party extensions .
1520
+ however they are used by NumPy and other third party packages .
1523
1521
Slice objects are also generated when extended indexing syntax is used. For
1524
1522
example: ``a[start:stop:step] `` or ``a[start:stop, i] ``. See
1525
1523
:func: `itertools.islice ` for an alternate version that returns an iterator.
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ which implements arithmetic based on rational numbers (so the numbers like
158
158
1/3 can be represented exactly).
159
159
160
160
If you are a heavy user of floating point operations you should take a look
161
- at the Numerical Python package and many other packages for mathematical and
161
+ at the NumPy package and many other packages for mathematical and
162
162
statistical operations supplied by the SciPy project. See <https://scipy.org>.
163
163
164
164
Python provides tools that may help on those rare occasions when you really
You can’t perform that action at this time.
0 commit comments