From 04bc6f11ae0289aae57d63d4cd32f4ef305d1a7a Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Thu, 29 Jun 2023 20:49:26 -0400 Subject: Move binary view loading in to the core; deprecate open_view in favor of load; update examples --- python/enterprise.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/enterprise.py') diff --git a/python/enterprise.py b/python/enterprise.py index 915f6c30..d398bdf9 100644 --- a/python/enterprise.py +++ b/python/enterprise.py @@ -325,7 +325,7 @@ class LicenseCheckout: >>> enterprise.authenticate_with_credentials("username", "password") >>> with enterprise.LicenseCheckout(): ... # Do some operation - ... with open_view("/bin/ls") as bv: # e.g. + ... with load("/bin/ls") as bv: # e.g. ... print(hex(bv.start)) # License is released at end of scope """ -- cgit v1.3.1