Initial commit

This commit is contained in:
2025-07-04 19:26:39 +02:00
commit c8682d4801
248 changed files with 12519 additions and 0 deletions

View File

View File

@ -0,0 +1,11 @@
class DelTest:
def __del__(self):
print("Suppression.")
a = DelTest()
b = a
# On s'attend à afficher Suppression avant d'afficher la référence de b.
del a
print(b)