
suspend()
- suspend the current scene.

Sample Code
################## suspend the current scene
# import bge
import bge
# get current scene
scene = bge.logic.getCurrentScene()
# suspend the current scene
scene.resume()