[Python-checkins] CVS: python/dist/src/Tools/freeze freeze.py,1.33,1.34

Fred L. Drake python-dev@python.org
Thu, 23 Mar 2000 13:13:13 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Tools/freeze
In directory weyr:/home/fdrake/projects/python/Tools/freeze

Modified Files:
	freeze.py 
Log Message:

From Sjoerd Mullender <sjoerd@oratrix.nl>:

cmp is not used in freeze, but is imported anyway.  What's worse, cmp
is no longer in the library, so freeze won't work like this.


Index: freeze.py
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Tools/freeze/freeze.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -r1.33 -r1.34
*** freeze.py	1999/03/12 22:07:05	1.33
--- freeze.py	2000/03/23 18:13:10	1.34
***************
*** 79,83 ****
  # Import standard modules
  
- import cmp
  import getopt
  import os
--- 79,82 ----