Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: b0f963526586ff8ed20d2d21624d4cfeef76bc5b authored by Martin v. Löwis on 11 March 2008, 18:00:08 UTC
Prepare for 2.3.7.
Tip revision: b0f9635
CL.py
# Backward compatible module CL.
# All relevant symbols are now defined in the module cl.
try:
	from cl import *
except ImportError:
	from CL_old import *
else:
	del CompressImage
	del DecompressImage
	del GetAlgorithmName
	del OpenCompressor
	del OpenDecompressor
	del QueryAlgorithms
	del QueryMaxHeaderSize
	del QueryScheme
	del QuerySchemeFromName
	del SetDefault
	del SetMax
	del SetMin
	try:
		del cvt_type
	except NameError:
		pass
	del error
back to top