`text` 内の mintinline がコードの末尾に不要な n 文字を挿入するのはなぜですか?

`text` 内の mintinline がコードの末尾に不要な n 文字を挿入するのはなぜですか?

次の:

\documentclass{standalone}
\usepackage{minted}
\usepackage{amsmath}

\setminted{breaklines,breakafter={_}}

\begin{document}

$\text{\mintinline{python}{i_have_a_lot_of_underscores_and_it_makes_me_very_very_very_long}}$

\end{document}

結果的に

ここに画像の説明を入力してください

この最後の部分はどこnから来ているのでしょうか、また、どうすれば削除できるのでしょうか?

奇妙なことに、これは と では起こりますがpythonluaでは起こりませんtext

関連情報