File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,15 +28,15 @@ library.
2828 :maxdepth: 1
2929
3030 cmath.rst
31- _collections.rst
3231 gc.rst
33- _io.rst
3432 math.rst
3533 select.rst
3634 sys.rst
3735 ubinascii.rst
36+ ucollections.rst
3837 uhashlib.rst
3938 uheapq.rst
39+ uio.rst
4040 ujson.rst
4141 uos.rst
4242 ure.rst
@@ -51,15 +51,15 @@ library.
5151 :maxdepth: 1
5252
5353 cmath.rst
54- _collections.rst
5554 gc.rst
56- _io.rst
5755 math.rst
5856 select.rst
5957 sys.rst
6058 ubinascii.rst
59+ ucollections.rst
6160 uhashlib.rst
6261 uheapq.rst
62+ uio.rst
6363 ujson.rst
6464 uos.rst
6565 ure.rst
@@ -89,14 +89,14 @@ library.
8989 .. toctree ::
9090 :maxdepth: 1
9191
92- _collections.rst
9392 gc.rst
94- _io.rst
9593 math.rst
9694 sys.rst
9795 ubinascii.rst
96+ ucollections.rst
9897 uhashlib.rst
9998 uheapq.rst
99+ uio.rst
100100 ujson.rst
101101 uos.rst
102102 ure.rst
Original file line number Diff line number Diff line change 1- :mod: `_collections ` -- collection and container types
1+ :mod: `ucollections ` -- collection and container types
22=====================================================
33
4- .. module :: _collections
4+ .. module :: ucollections
55 :synopsis: collection and container types
66
77This module implements advanced collection and container types to
@@ -20,7 +20,7 @@ Classes
2020 a string with space-separated field named (but this is less efficient).
2121 Example of use::
2222
23- from _collections import namedtuple
23+ from ucollections import namedtuple
2424
2525 MyTuple = namedtuple("MyTuple", ("id", "name"))
2626 t1 = MyTuple(1, "foo")
@@ -34,7 +34,7 @@ Classes
3434 added. When ordered dict is iterated over, keys/items are returned in
3535 the order they were added::
3636
37- from _collections import OrderedDict
37+ from ucollections import OrderedDict
3838
3939 # To make benefit of ordered keys, OrderedDict should be initialized
4040 # from sequence of (key, value) pairs.
Original file line number Diff line number Diff line change 1- :mod: `_io ` -- input/output streams
1+ :mod: `uio ` -- input/output streams
22==================================
33
4- .. module :: _io
4+ .. module :: uio
55 :synopsis: input/output streams
66
77This module contains additional types of stream (file-like) objects
You can’t perform that action at this time.
0 commit comments