New submission from vtheno athena <a2550...@gmail.com>:
When I was involved in the YaPyPy project, I found a problem, An source "assert 0" will compile to an bytecode, On that bytecode sequence, it always raise a "AssertionError" from global, when we rewrite global "AssertionError" like here: ``` class AssertionError(Exception): def __init__(self,msg): self.msg = f"User AssertionError: {msg}" # other code ``` so, "assert" is meta-programming? ---------- messages: 326942 nosy: vtheno athena priority: normal severity: normal status: open title: About the "assert" bytecode type: behavior versions: Python 3.6 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue34880> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com