This command returns the names of all global MEL procedures that are currently defined as a string array. The user can query the definition of each MEL procedure using the “whatIs” command.
Derived from mel command maya.cmds.melInfo
Example:
import pymel.core as pm
import maya.cmds as cmds
# Query the names of all the global MEL procedures currently defined.
#
procs = pm.melInfo()