-
Notifications
You must be signed in to change notification settings - Fork 1.4k
RTD documentation updates #863
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
e65cc07
59615fc
20a13fa
079c20e
6a63ff0
bbdca2f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -31,7 +31,7 @@ Functions | |
| .. admonition:: Difference to CPython | ||
| :class: attention | ||
|
|
||
| This function is MicroPython extension. | ||
| This function is a MicroPython extension. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lets not call
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "The functionality of |
||
|
|
||
| .. function:: mem_free() | ||
|
|
||
|
|
@@ -41,7 +41,7 @@ Functions | |
| .. admonition:: Difference to CPython | ||
| :class: attention | ||
|
|
||
| This function is MicroPython extension. | ||
| This function is a MicroPython extension. | ||
|
|
||
| .. function:: threshold([amount]) | ||
|
|
||
|
|
@@ -63,6 +63,6 @@ Functions | |
| .. admonition:: Difference to CPython | ||
| :class: attention | ||
|
|
||
| This function is a MicroPython extension. CPython has a similar | ||
| This function is a a MicroPython extension. CPython has a similar | ||
| function - ``set_threshold()``, but due to different GC | ||
| implementations, its signature and semantics are different. | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,8 @@ | ||
| .. warning:: | ||
|
|
||
| This module is inherited from MicroPython and may not work in CircuitPython | ||
| as documented or at all! If they do work, they may change at any time. It is | ||
| unsupported. | ||
| Though this MicroPython-based library is available for use in CircuitPython, | ||
| its functionality may change in the future, perhaps significantly. | ||
| As CircuitPython continues to develop, it may be changed | ||
| to comply more closely with the corresponding standard Python library. | ||
| You may need to change your code later if you rely | ||
| on any non-standard functionality it currently provides. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer to have these docs inline rather than in files separate from the implementation. Until then I'd like to call them unsupported because its hard to keep them up to date.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm reluctant to call them unsupported. To me that means you shouldn't use them, or that we wouldn't fix bugs in them. If you want to say that they may change in the future, that seems more like what you want to imply. But we couldn't write a lot of useful code without
struct,array,sys,os, etc. in our libraries and use them in Learn Guides, so maybe something milder than "unsupported".