Merge pull request #797 from jepler/binascii-doc
docs: fix references to ubinascii
This commit is contained in:
commit
37bf61f6ac
|
@ -1,9 +1,7 @@
|
|||
:mod:`ubinascii` -- binary/ASCII conversions
|
||||
:mod:`binascii` -- binary/ASCII conversions
|
||||
============================================
|
||||
|
||||
.. include:: ../templates/unsupported_in_circuitpython.inc
|
||||
|
||||
.. module:: ubinascii
|
||||
.. module:: binascii
|
||||
:synopsis: binary/ASCII conversions
|
||||
|
||||
|see_cpython_module| :mod:`cpython:binascii`.
|
|
@ -20,7 +20,7 @@ Python standard libraries and micro-libraries
|
|||
array.rst
|
||||
gc.rst
|
||||
sys.rst
|
||||
ubinascii.rst
|
||||
binascii.rst
|
||||
ucollections.rst
|
||||
uerrno.rst
|
||||
uhashlib.rst
|
||||
|
|
|
@ -202,7 +202,7 @@ Methods
|
|||
(ssid, bssid, channel, RSSI, authmode, hidden)
|
||||
|
||||
*bssid* is hardware address of an access point, in binary form, returned as
|
||||
bytes object. You can use `ubinascii.hexlify()` to convert it to ASCII form.
|
||||
bytes object. You can use `binascii.hexlify()` to convert it to ASCII form.
|
||||
|
||||
There are five values for authmode:
|
||||
|
||||
|
|
|
@ -55,5 +55,5 @@ Methods
|
|||
|
||||
.. method:: hash.hexdigest()
|
||||
|
||||
This method is NOT implemented. Use ``ubinascii.hexlify(hash.digest())``
|
||||
This method is NOT implemented. Use ``binascii.hexlify(hash.digest())``
|
||||
to achieve a similar effect.
|
||||
|
|
|
@ -23,6 +23,7 @@ Module Supported Ports
|
|||
`analogio` **All Supported**
|
||||
`audiobusio` **SAMD/SAMD Express**
|
||||
`audioio` **SAMD Express**
|
||||
`binascii` **ESP8266**
|
||||
`bitbangio` **SAMD Express, ESP8266**
|
||||
`board` **All Supported**
|
||||
`busio` **All Supported**
|
||||
|
|
Loading…
Reference in New Issue