[Subversion] / ez_setup / __init__.py  

Diff of /ez_setup/__init__.py

Parent Directory | Revision Log

version 2092, Thu Sep 15 03:28:07 2005 UTC version 2093, Sun Sep 18 03:59:17 2005 UTC
Line 14 
Line 14 
 This file can also be run as a script to install or upgrade setuptools.  This file can also be run as a script to install or upgrade setuptools.
 """  """
 import sys  import sys
 DEFAULT_VERSION = "0.6a1"  DEFAULT_VERSION = "0.6a2"
 DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]  DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
   
 md5_data = {  md5_data = {
Line 22 
Line 22 
     'setuptools-0.5a13-py2.4.egg': 'ede4be600e3890e06d4ee5e0148e092a',      'setuptools-0.5a13-py2.4.egg': 'ede4be600e3890e06d4ee5e0148e092a',
     'setuptools-0.6a1-py2.3.egg': 'ee819a13b924d9696b0d6ca6d1c5833d',      'setuptools-0.6a1-py2.3.egg': 'ee819a13b924d9696b0d6ca6d1c5833d',
     'setuptools-0.6a1-py2.4.egg': '8256b5f1cd9e348ea6877b5ddd56257d',      'setuptools-0.6a1-py2.4.egg': '8256b5f1cd9e348ea6877b5ddd56257d',
     'setuptools-0.6a1c1-py2.3.egg': '1eaf2ca9fb2417977d5b5042dc50e1f4',      'setuptools-0.6a2-py2.3.egg': 'b98da449da411267c37a738f0ab625ba',
     'setuptools-0.6a1c1-py2.4.egg': '5baad71652b3047756ba1dcbf721b1ee',      'setuptools-0.6a2-py2.4.egg': 'be5b88bc30aed63fdefd2683be135c3b',
     'setuptools-0.6a1c2-py2.3.egg': '92291ca957044306d96a7b8589c01d87',  
     'setuptools-0.6a1c2-py2.4.egg': '5ae6405341eddb5baf93cd6ab178efb1',  
 }  }
   
 import sys, os  import sys, os
Line 43 
Line 41 
     return data      return data
   
   
   
   
   
 def use_setuptools(  def use_setuptools(
     version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir,      version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir,
     download_delay=15      download_delay=15
Line 187 
Line 182 
   
     import inspect      import inspect
     srcfile = inspect.getsourcefile(sys.modules[__name__])      srcfile = inspect.getsourcefile(sys.modules[__name__])
     f = open(srcfile); src = f.read(); f.close()      f = open(srcfile, 'rb'); src = f.read(); f.close()
   
     match = re.search("\nmd5_data = {\n([^}]+)}", src)      match = re.search("\nmd5_data = {\n([^}]+)}", src)
     if not match:      if not match:


Generate output suitable for use with a patch program
Legend:
Removed from v.2092  
changed lines
  Added in v.2093

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help