Distinguish Between Definition and Abstract Definition

Hello! Is it possible to distinguish between part definitions and abstract part definitions? I’ve extracted all parts from my model and would like to now remove abstract parts from the list in python. Here’s an example model:

abstract part def A;
part def B;
abstract part def C;

In python I currently have parts = [ A, B, C ], but would like to obtain parts = [ B ]

Embarrassing, I immediately found the answer in the documentation after I posted this, although I wasn’t able to find it prior..

.is_abstract