From 3806f9c5cc8ff8a673e75fafa26ed163d67d0417 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 3 Jan 2020 19:12:47 +0100 Subject: [PATCH] Memory view --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f24ed90..eb25bc7 100644 --- a/README.md +++ b/README.md @@ -1978,7 +1978,7 @@ Memory View = bytes() # Creates a new bytes object. = .join() # Joins mviews using bytes object as sep. = list() # Returns list of ints or floats. - = str(, 'utf-8') + = str(, 'utf-8') # Treats mview as a seqence of bytes. = int.from_bytes(, byteorder='big/little', signed=False) '' = .hex() ``` diff --git a/index.html b/index.html index 18213d1..4497412 100644 --- a/index.html +++ b/index.html @@ -1752,7 +1752,7 @@ db = connector.connect(host=<str>, user=<str>, password=<str>, <bytes> = bytes(<mview>) # Creates a new bytes object. <bytes> = <bytes>.join(<coll_of_mviews>) # Joins mviews using bytes object as sep. <list> = list(<mview>) # Returns list of ints or floats. -<str> = str(<mview>, 'utf-8') +<str> = str(<mview>, 'utf-8') # Treats mview as a seqence of bytes. <int> = int.from_bytes(<mview>, byteorder='big/little', signed=False) '<hex>' = <mview>.hex()