Search⌘ K
AI Features

Exercise: The Corrupted Configuration

Understand how to avoid unintentional mutations of global configuration dictionaries by implementing proper copying techniques. This exercise helps you fix a common problem in Python where mutable defaults are shared, ensuring each user gets an independent configuration copy without affecting the global state.

Problem statement

You are building a configuration ...