From 04e1310d26ce1007439d10003e48ddc567c07cd1 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Thu, 25 Nov 2021 18:46:38 -0800 Subject: [PATCH] add FAQ entry about undetected syntax errors This came up in #2644. --- docs/faq.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/faq.md b/docs/faq.md index 72bae6b389d..ddf01e9884d 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -93,7 +93,14 @@ them in the right place, this detection is not and cannot be perfect. Therefore, sometimes have to manually move these comments to the right place after you format your codebase with _Black_. -## Can I run black with PyPy? +## Can I run Black with PyPy? Yes, there is support for PyPy 3.7 and higher. You cannot format Python 2 files under PyPy, because PyPy's inbuilt ast module does not support this. + +## Why does Black not detect syntax errors in my code? + +_Black_ is an autoformatter, not a Python linter or interpreter. Detecting all syntax +errors is not a goal. It can format all code accepted by CPython (if you find an example +where that doesn't hold, please report a bug!), but it may also format some code that +CPython doesn't accept.