(delta)
| 600 | |
| 601 | |
| 602 | def inc_initial_memory(delta): |
| 603 | # Both INITIAL_HEAP and INITIAL_MEMORY can be set at the same time. Increment both. |
| 604 | if settings.INITIAL_HEAP != -1: |
| 605 | settings.INITIAL_HEAP += delta |
| 606 | if settings.INITIAL_MEMORY != -1: |
| 607 | settings.INITIAL_MEMORY += delta |
| 608 | |
| 609 | |
| 610 | def check_browser_versions(): |