adoption

Pyvorin Code Review Checklist

What to look for when reviewing compile-ready Python.

Published May 30, 2026

Compilation Checklist

  • Does the function avoid generators?
  • Are variable types stable?
  • Are global mutations minimised?
  • Does it have type hints?
  • Is correctness_match checked?

Performance Checklist

  • Is the benchmark honest (warm runs)?
  • Is fallback rate below 10%?
  • Is speedup above 2x?
  • Is the function on the hot path?

Safety Checklist

  • Are error handlers present?
  • Is there a rollback plan?
  • Is the license valid?