From: Debian Python Team <team+python@tracker.debian.org>
Date: Sat, 12 Nov 2022 23:36:58 +0200
Subject: do-not-remove-cpp

Purpoes: don't remove cpp source.
---
 setup.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/setup.py b/setup.py
index 957db05..6b751be 100755
--- a/setup.py
+++ b/setup.py
@@ -45,6 +45,8 @@ def clean(path):
         name = name.replace(".", "/")
         for ext in [".so", ".html", ".cpp", ".c"]:
             file_path = os.path.join(path, name + ext)
+            if file_path.endswith('counter.cpp'): continue
+            if file_path.endswith('maps.cpp'): continue
             if os.path.exists(file_path):
                 os.unlink(file_path)
 
