Python Code Review Guide¶
Review Priorities¶
- Readability and function size.
- Edge-case handling and exceptions.
- Data-structure choice and complexity.
- Test quality and coverage of important paths.
Checklist¶
- Are names clear and meaningful?
- Are corner cases handled?
- Is there duplicated logic to refactor?
- Are critical behaviors tested?
Summary¶
Python reviews should prioritize clarity and predictable behavior.