selecting.py (pymol-open-source-2.2.0) | : | selecting.py (pymol-open-source-2.3.0) | ||
---|---|---|---|---|
skipping to change at line 15 | skipping to change at line 15 | |||
#E* It is unlawful to modify or remove this copyright notice. | #E* It is unlawful to modify or remove this copyright notice. | |||
#F* ------------------------------------------------------------------- | #F* ------------------------------------------------------------------- | |||
#G* Please see the accompanying LICENSE file for further information. | #G* Please see the accompanying LICENSE file for further information. | |||
#H* ------------------------------------------------------------------- | #H* ------------------------------------------------------------------- | |||
#I* Additional authors of this source file include: | #I* Additional authors of this source file include: | |||
#-* | #-* | |||
#-* | #-* | |||
#-* | #-* | |||
#Z* ------------------------------------------------------------------- | #Z* ------------------------------------------------------------------- | |||
if __name__=='pymol.selecting': | if True: | |||
from . import selector | from . import selector | |||
cmd = __import__("sys").modules["pymol.cmd"] | cmd = __import__("sys").modules["pymol.cmd"] | |||
from .cmd import _cmd,lock,unlock,Shortcut, \ | from .cmd import _cmd,Shortcut, \ | |||
_feedback,fb_module,fb_mask, is_tuple, \ | ||||
DEFAULT_ERROR, DEFAULT_SUCCESS, _raising, is_ok, is_error | DEFAULT_ERROR, DEFAULT_SUCCESS, _raising, is_ok, is_error | |||
import pymol | import pymol | |||
def deselect(_self=cmd): | def deselect(_self=cmd): | |||
''' | ''' | |||
DESCRIPTION | DESCRIPTION | |||
"deselect" disables any and all visible selections | "deselect" disables any and all visible selections | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 2 lines changed or added |