Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
micropython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
micropython
Commits
621c6442
Commit
621c6442
authored
May 02, 2016
by
Paul Sokolovsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: _io and _collections were renamed to have standard "u" prefix.
parent
9549590f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
docs/library/index.rst
docs/library/index.rst
+6
-6
docs/library/ucollections.rst
docs/library/ucollections.rst
+4
-4
docs/library/uio.rst
docs/library/uio.rst
+2
-2
No files found.
docs/library/index.rst
View file @
621c6442
...
...
@@ -28,15 +28,15 @@ library.
:maxdepth: 1
cmath.rst
_collections.rst
gc.rst
_io.rst
math.rst
select.rst
sys.rst
ubinascii.rst
ucollections.rst
uhashlib.rst
uheapq.rst
uio.rst
ujson.rst
uos.rst
ure.rst
...
...
@@ -51,15 +51,15 @@ library.
:maxdepth: 1
cmath.rst
_collections.rst
gc.rst
_io.rst
math.rst
select.rst
sys.rst
ubinascii.rst
ucollections.rst
uhashlib.rst
uheapq.rst
uio.rst
ujson.rst
uos.rst
ure.rst
...
...
@@ -89,14 +89,14 @@ library.
.. toctree::
:maxdepth: 1
_collections.rst
gc.rst
_io.rst
math.rst
sys.rst
ubinascii.rst
ucollections.rst
uhashlib.rst
uheapq.rst
uio.rst
ujson.rst
uos.rst
ure.rst
...
...
docs/library/
_
collections.rst
→
docs/library/
u
collections.rst
View file @
621c6442
:mod:`
_
collections` -- collection and container types
:mod:`
u
collections` -- collection and container types
=====================================================
.. module::
_
collections
.. module::
u
collections
:synopsis: collection and container types
This module implements advanced collection and container types to
...
...
@@ -20,7 +20,7 @@ Classes
a string with space-separated field named (but this is less efficient).
Example of use::
from
_
collections import namedtuple
from
u
collections import namedtuple
MyTuple = namedtuple("MyTuple", ("id", "name"))
t1 = MyTuple(1, "foo")
...
...
@@ -34,7 +34,7 @@ Classes
added. When ordered dict is iterated over, keys/items are returned in
the order they were added::
from
_
collections import OrderedDict
from
u
collections import OrderedDict
# To make benefit of ordered keys, OrderedDict should be initialized
# from sequence of (key, value) pairs.
...
...
docs/library/
_
io.rst
→
docs/library/
u
io.rst
View file @
621c6442
:mod:`
_
io` -- input/output streams
:mod:`
u
io` -- input/output streams
==================================
.. module::
_
io
.. module::
u
io
:synopsis: input/output streams
This module contains additional types of stream (file-like) objects
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment