You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gh-39862: adding some pyx modules to the documentation
inspired by #35468
only solve this partially.
```
from pathlib import Path
p = Path("src/sage")
data=list(p.rglob("*.pyx"))
resu = []
for a in data:
proc = subprocess.Popen(["git","grep",str(a.stem),"src/doc/en/refere
nce"],stdout=PIPE, stderr=PIPE)
x, y = proc.communicate()
if not x:
resu.append(a)
```
### 📝 Checklist
- [x] The title is concise and informative.
- [x] I have linked a relevant issue or discussion.
URL: #39862
Reported by: Frédéric Chapoton
Reviewer(s): David Coudert
0 commit comments