Merge branch 'master' into provide-utf8-IRR-files

pull/5017/head
Steve M 2023-03-21 13:35:01 -07:00 committed by GitHub
commit 9552769f82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -115,6 +115,10 @@ def _init(self, target = None, parent = None):
if m.startswith("_"): if m.startswith("_"):
continue continue
# We should not be accessing `mPrivate` according to structs.Scene.
if m == 'mPrivate':
continue
if m.startswith('mNum'): if m.startswith('mNum'):
if 'm' + m[4:] in dirself: if 'm' + m[4:] in dirself:
continue # will be processed later on continue # will be processed later on
@ -211,7 +215,7 @@ def _init(self, target = None, parent = None):
else: # starts with 'm' but not iterable else: # starts with 'm' but not iterable
setattr(target, m, obj) setattr(target, name, obj)
logger.debug("Added " + name + " as self." + name + " (type: " + str(type(obj)) + ")") logger.debug("Added " + name + " as self." + name + " (type: " + str(type(obj)) + ")")
if _is_init_type(obj): if _is_init_type(obj):

Binary file not shown.