PATH: //opt/alt/python311/lib64/python3.11/test/crashers
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 README
↓
X
📁 __pycache__/
X
📄 bogus_code_obj.py
↓
X
📄 gc_inspection.py
↓
X
📄 infinite_loop_re.py
↓
X
📄 mutation_inside_cyclegc.py
↓
X
📄 recursive_call.py
↓
X
📄 trace_at_recursion_limit.py
↓
X
📄 underlying_dict.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: trace_at_recursion_limit.py
""" From http://bugs.python.org/issue6717 A misbehaving trace hook can trigger a segfault by exceeding the recursion limit. """ import sys def x(): pass def g(*args): if True: # change to True to crash interpreter try: x() except: pass return g def f(): print(sys.getrecursionlimit()) f() sys.settrace(g) f()
SIMPAN PERUBAHAN