From 3bc9b571bb5e8ffdcdb3ce1e8b20c1fb90520c5b Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 22 Apr 2016 22:35:31 +0300 Subject: [PATCH] docs/ustruct: There's no complete "struct" module, only "ustruct" subset. "ustruct" is good example of micro-ified module, so rather should belong to the corresponding list. --- docs/library/index.rst | 5 ++--- docs/library/{struct.rst => ustruct.rst} | 6 +++--- 2 files changed, 5 insertions(+), 6 deletions(-) rename docs/library/{struct.rst => ustruct.rst} (82%) diff --git a/docs/library/index.rst b/docs/library/index.rst index 47cd2eeb8e..5ae1ed86f4 100644 --- a/docs/library/index.rst +++ b/docs/library/index.rst @@ -26,7 +26,6 @@ For additional libraries, please download them from the `micropython-lib reposit gc.rst math.rst os.rst - struct.rst sys.rst time.rst @@ -40,7 +39,6 @@ For additional libraries, please download them from the `micropython-lib reposit math.rst os.rst select.rst - struct.rst sys.rst time.rst @@ -62,7 +60,6 @@ For additional libraries, please download them from the `micropython-lib reposit gc.rst math.rst - struct.rst sys.rst time.rst @@ -94,6 +91,7 @@ library. ujson.rst ure.rst usocket.rst + ustruct.rst uzlib.rst .. only:: port_esp8266 @@ -107,6 +105,7 @@ library. uheapq.rst ujson.rst ure.rst + ustruct.rst uzlib.rst .. only:: port_pyboard diff --git a/docs/library/struct.rst b/docs/library/ustruct.rst similarity index 82% rename from docs/library/struct.rst rename to docs/library/ustruct.rst index 71ee5c9b70..f65d6058df 100644 --- a/docs/library/struct.rst +++ b/docs/library/ustruct.rst @@ -1,7 +1,7 @@ -:mod:`struct` -- pack and unpack primitive data types -===================================================== +:mod:`ustruct` -- pack and unpack primitive data types +====================================================== -.. module:: struct +.. module:: ustruct :synopsis: pack and unpack primitive data types See `Python struct `_ for more