• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

READMED25-Apr-2025838 1712

bogus_code_obj.pyD25-Apr-2025619 2014

borrowed_ref_1.pyD25-Apr-2025398 3023

borrowed_ref_2.pyD25-Apr-2025644 3929

buffer_mutate.pyD25-Apr-2025873 319

compiler_recursion.pyD25-Apr-202581 64

decref_before_assignment.pyD25-Apr-20251,020 4534

gc_has_finalizer.pyD25-Apr-2025724 3726

gc_inspection.pyD25-Apr-20251.1 KiB3323

infinite_loop_re.pyD25-Apr-2025645 179

loosing_mro_ref.pyD25-Apr-20251.1 KiB3622

mutation_inside_cyclegc.pyD25-Apr-2025753 3214

nasty_eq_vs_dict.pyD25-Apr-20251 KiB4828

recursion_limit_too_high.pyD25-Apr-2025779 174

recursive_call.pyD25-Apr-2025357 165

warnings_del_crasher.pyD25-Apr-2025873 3023

README

1This directory only contains tests for outstanding bugs that cause the
2interpreter to segfault.  Ideally this directory should always be empty, but
3sometimes it may not be easy to fix the underlying cause and the bug is deemed
4too obscure to invest the effort.
5
6Each test should fail when run from the command line:
7
8	./python Lib/test/crashers/weakref_in_del.py
9
10Put as much info into a docstring or comments to help determine the cause of the
11failure, as well as a bugs.python.org issue number if it exists.  Particularly
12note if the cause is system or environment dependent and what the variables are.
13
14Once the crash is fixed, the test case should be moved into an appropriate test
15(even if it was originally from the test suite).  This ensures the regression
16doesn't happen again.  And if it does, it should be easier to track down.
17