Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-10 | docs/_thread: Add a placeholder docs for _thread module. | Paul Sokolovsky | |
Doesn't list specific API calls yet, the purpose is to let user know that the module exists. | |||
2017-11-08 | docs/ure: Emphasize not supported features more. | Paul Sokolovsky | |
Plus, additional descriptions/formatting. | |||
2017-11-04 | docs/ure: Add flags arg to ure.compile(), mention that ure.DEBUG is optional. | Paul Sokolovsky | |
2017-10-31 | docs/ure: Add "|" (alternative) to the list of supported operators. | Paul Sokolovsky | |
2017-10-31 | docs/usocket: Document that settimeout() isn't supported by all ports. | Paul Sokolovsky | |
And describe an alternative of using uselect.poll(). | |||
2017-10-30 | docs/ussl: Fix module name refs and use "MicroPython port" term. | Paul Sokolovsky | |
2017-10-27 | docs/library/network: Add dhcp_hostname parameter | Joar Wandborg | |
I have not actually tested this, going by information available in https://forum.micropython.org/viewtopic.php?t=2584 | |||
2017-10-27 | docs/usocket: Document inet_ntop(), inet_pton(). | Paul Sokolovsky | |
2017-10-26 | docs/usocket: Elaborate descriptions. | Paul Sokolovsky | |
Use the "usocket" module name everywhere. Use "MicroPython port" terminology. Suggest to avoid using IPPROTO_* constants in socket() call. | |||
2017-10-26 | docs/uselect: Document one-shot polling mode. | Paul Sokolovsky | |
2017-10-16 | docs/library/network: Update docs to state that W5500 is supported. | Damien George | |
2017-10-16 | stm32/modnwwiznet5k: Implement WIZNET5K.isconnected() method. | Damien George | |
2017-10-11 | docs/library: Add missing cross-ref links for classes in pyb module. | Mike Causer | |
2017-10-09 | docs/library/network: Clarify usage of "bssid" arg in connect() method. | Damien George | |
2017-09-17 | docs/btree: Describe page caching policy of the underlying implementation. | Paul Sokolovsky | |
2017-09-13 | docs/library/framebuf.rst: Generalise constructor to all colour formats. | Peter Hinch | |
2017-08-29 | docs/library/micropython: Fix typo in RST formatting. | Damien George | |
2017-08-29 | docs/library: Add description of "index" parameter to uos.dupterm(). | Damien George | |
2017-08-29 | docs/machine.Signal: Improve style/grammar and add usage example. | Paul Sokolovsky | |
2017-08-28 | docs/library/network: Fix ref to "socket" module (should be "usocket"). | Paul Sokolovsky | |
2017-08-28 | docs: More xrefs to "MicroPython port" in glossary. | Paul Sokolovsky | |
2017-08-22 | docs: Consistently link to micropython-lib in glossary. | Paul Sokolovsky | |
2017-08-20 | docs/library/usocket: Describe complete information on address formats. | Paul Sokolovsky | |
Describe that the only portable way to deal with addresses is by using getaddrinfo(). Describe that some ports may support tuple addresses using "socket" module (vs "usocket" of native MicroPython). | |||
2017-08-20 | docs/library/usocket: Move socket.error to its own section. | Paul Sokolovsky | |
It's too minor a point to start the module description with it. | |||
2017-08-17 | docs/library/ubinascii: Update base64 docs. | Alex Robbins | |
This clarifies return values and the handling of invalid (e.g. newline) characters. Encoding conforms to RFC 3548, but decoding does not, as it ignores invalid characters in base64 input. Instead, it conforms to MIME handling of base64 (RFC 2045). Note that CPython doesn't document handling of invalid characters in a2b_base64() docs: https://docs.python.org/3/library/binascii.html#binascii.a2b_base64 , so we specify it more explicitly than it, based on CPython's actual behavior (with which MicroPython now compliant). | |||
2017-08-14 | docs/library/machine.RTC.rst: Fix typo. | Javier Candeira | |
2017-07-15 | docs,teensy: Use the name MicroPython consistently in documentation | Alexander Steffen | |
2017-07-04 | docs/uzlib: Update description of decompress() and mention DecompIO. | Paul Sokolovsky | |
2017-07-03 | docs/uerrno: Document "uerrno" module. | Paul Sokolovsky | |
2017-07-02 | docs/library: Add CPython docs xref to each pertinent module. | Paul Sokolovsky | |
Cross-reference text/link is implemented as RST substitution, so easy to consistently. | |||
2017-07-02 | docs/ure: Elaborate doc, update markup to the latest conventions. | Paul Sokolovsky | |
2017-07-01 | docs/builtins: Add AssertionError, SyntaxError, ZeroDivisionError. | Paul Sokolovsky | |
Also, update heading of 1st sections to "Functions and types". | |||
2017-07-01 | reference/index: Rewrite introduction paragraph to avoid confusion. | Paul Sokolovsky | |
The old intro talked about "differences", but there were hardly any sections describing differences, mostly MicroPython specific features. On the other hand, we now have real "differences" chapter, though it's mostly concerned with stdlib differences. So, try to avoid confusion by changing wording and linking to the other chapters and contrasting them with what is described in "MicroPython language". | |||
2017-06-30 | docs/{uselect,ussl,ustruct}: Use markup adhering to latest docs conventions. | Paul Sokolovsky | |
2017-06-29 | docs/{framebuf,usocket}: Use markup adhering to the latest docs conventions. | Paul Sokolovsky | |
2017-06-28 | docs/{micropython,sys,uos}: Use markup adhering to the latest docs conventions. | Paul Sokolovsky | |
2017-06-27 | docs/{esp,pyb,ubinascii}: Use markup adhering to the latest docs conventions. | Paul Sokolovsky | |
2017-06-26 | docs/library/gc: Fix grammar and improve readability of gc.threshold(). | Damien George | |
2017-06-26 | docs/network: Use markup adhering to the latest docs conventions. | Paul Sokolovsky | |
2017-06-25 | docs/machine*: Use markup adhering to the latest docs conventions. | Paul Sokolovsky | |
2017-06-25 | docs/lcd160cr: Group related constants together. Use full sentences. | Paul Sokolovsky | |
Per the latest docs conventions. | |||
2017-06-25 | docs/utime: Use markup adhering to the latest conventions. | Paul Sokolovsky | |
2017-06-25 | docs/lcd160cr: Use markup adhering to the latest conventions. | Paul Sokolovsky | |
2017-06-25 | docs/btree: Use markup adhering to the latest conventions. | Paul Sokolovsky | |
2017-06-24 | docs/builtins: List builtin exceptions. | Paul Sokolovsky | |
If for nothing else, then at least to cross-reference them. | |||
2017-06-24 | docs/gc: Document gc.threshold() function. | Paul Sokolovsky | |
2017-06-24 | docs/gc: Mark mem_alloc()/mem_free() as uPy-specific. | Paul Sokolovsky | |
2017-06-16 | docs/select: Rename to uselect, to match the actual module name. | Paul Sokolovsky | |
Also, add ipoll() documentation and markup changes to comply with CPython usage. | |||
2017-06-15 | stmhal: Add .value() method to Switch object, to mirror Pin and Signal. | Damien George | |
2017-06-11 | docs/btree: Typo/wording fixes. | Paul Sokolovsky | |