We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f97e2c3 commit 20425afCopy full SHA for 20425af
docs/user/merging-pdfs.md
@@ -18,6 +18,18 @@ For more details, see an excellent answer on
18
[StackOverflow](https://stackoverflow.com/questions/3444645/merge-pdf-files)
19
by Paul Rooney.
20
21
+```{note}
22
+Dealing with large PDF files might reach the recursion limit of the current
23
+Python interpreter. In these cases, increasing the limit might help:
24
+
25
+```python
26
+import sys
27
28
+# Example: Increase the current limit by factor 5.
29
+sys.setrecursionlimit(sys.getrecursionlimit() * 5)
30
+```
31
32
33
## Showing more merging options
34
35
```python
0 commit comments