8000 docs: fix references to ubinascii · larsks/micropython@647ff38 · GitHub
[go: up one dir, main page]

Skip to content

Commit 647ff38

Browse files
committed
docs: fix references to ubinascii
1 parent 9d484c4 commit 647ff38

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

docs/library/ubinascii.rst renamed to docs/library/binascii.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
:mod:`ubinascii` -- binary/ASCII conversions
1+
:mod:`binascii` -- binary/ASCII conversions
22
============================================
33

4-
.. include:: ../templates/unsupported_in_circuitpython.inc
5-
6-
.. module:: ubinascii
4+
.. module:: binascii
75
:synopsis: binary/ASCII conversions
86

97
|see_cpython_module| :mod:`cpython:binascii`.

docs/library/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Python standard libraries and micro-libraries
2020
array.rst
2121
gc.rst
2222
sys.rst
23-
ubinascii.rst
23+
binascii.rst
2424
ucollections.rst
2525
uerrno.rst
2626
uhashlib.rst

docs/library/network.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Methods
202202
(ssid, bssid, channel, RSSI, authmode, hidden)
203203

204204
*bssid* is hardware address of an access point, in binary form, returned as
205-
bytes object. You can use `ubinascii.hexlify()` to convert it to ASCII form.
205+
bytes object. You can use `binascii.hexlify()` to convert it to ASCII form.
206206

207207
There are five values for authmode:
208208

docs/library/uhashlib.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ Methods
5555

5656
.. method:: hash.hexdigest()
5757

58-
This method is NOT implemented. Use ``ubinascii.hexlify(hash.digest())``
58+
This method is NOT implemented. Use ``binascii.hexlify(hash.digest())``
5959
to achieve a similar effect.

shared-bindings/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Module Supported Ports
2323
`analogio` **All Supported**
2424
`audiobusio` **SAMD/SAMD Express**
2525
`audioio` **SAMD Express**
26+
`binascii` **ESP8266**
2627
`bitbangio` **SAMD Express, ESP8266**
2728
`board` **All Supported**
2829
`busio` **All Supported**

0 commit comments

Comments
 (0)
0