diff options
author | Damien George <damien.p.george@gmail.com> | 2019-10-22 16:40:58 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-10-22 16:40:58 +1100 |
commit | a2eea57b1d5456696598703aa4ffdbc7e9fb52ea (patch) | |
tree | 66eb515300bc84a8bef3010233c50233fd2d512b | |
parent | 21a60935a5d5885817881b4f690fdfd3ef009100 (diff) |
docs/library: Rename "array" module to "uarray".
-rw-r--r-- | docs/library/index.rst | 2 | ||||
-rw-r--r-- | docs/library/uarray.rst (renamed from docs/library/array.rst) | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/library/index.rst b/docs/library/index.rst index dc89766e2..223304881 100644 --- a/docs/library/index.rst +++ b/docs/library/index.rst @@ -74,12 +74,12 @@ it will fallback to loading the built-in ``ujson`` module. :maxdepth: 1 builtins.rst - array.rst bluetooth.rst cmath.rst gc.rst math.rst sys.rst + uarray.rst ubinascii.rst ucollections.rst uerrno.rst diff --git a/docs/library/array.rst b/docs/library/uarray.rst index f837b0343..9fa82ff31 100644 --- a/docs/library/array.rst +++ b/docs/library/uarray.rst @@ -1,7 +1,7 @@ -:mod:`array` -- arrays of numeric data -====================================== +:mod:`uarray` -- arrays of numeric data +======================================= -.. module:: array +.. module:: uarray :synopsis: efficient arrays of numeric data |see_cpython_module| :mod:`python:array`. @@ -13,7 +13,7 @@ floating-point support). Classes ------- -.. class:: array.array(typecode, [iterable]) +.. class:: array(typecode, [iterable]) Create array with elements of given type. Initial contents of the array are given by *iterable*. If it is not provided, an empty |