commanding.py (pymol-open-source-2.2.0) | : | commanding.py (pymol-open-source-2.3.0) | ||
---|---|---|---|---|
skipping to change at line 17 | skipping to change at line 17 | |||
#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* ------------------------------------------------------------------- | |||
from __future__ import print_function, absolute_import | from __future__ import print_function, absolute_import | |||
if __name__=='pymol.commanding': | if True: | |||
import sys | import sys | |||
if sys.version_info[0] == 2: | if sys.version_info[0] == 2: | |||
import thread | import thread | |||
import urllib2 | import urllib2 | |||
else: | else: | |||
import _thread as thread | import _thread as thread | |||
import urllib.request as urllib2 | import urllib.request as urllib2 | |||
from io import FileIO as file | from io import FileIO as file | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |