Download Install Tutorial Docs FAQ Tools WikiLicense Team IRC Planet Involvement Shop Book

Changeset 1532

Show
Ignore:
Timestamp:
12/16/06 14:18:02
Author:
fumanchu
Message:

Simpler webtest trial loop.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/cherrypy/test/webtest.py

    r1528 r1532  
    470470    # Trying 10 times is simply in case of socket errors. 
    471471    # Normal case--it should run once. 
    472     trial = 0 
    473     while trial < 10: 
     472    for trial in xrange(10): 
    474473        try: 
    475474            # Allow http_conn to be a class or an instance 
     
    513512            return s, h, b 
    514513        except socket.error: 
    515             trial += 1 
    516             if trial >= 10: 
    517                 raise 
    518             else: 
    519                 time.sleep(0.5) 
     514            time.sleep(0.5) 
     515    raise 
    520516 
    521517 

Hosted by WebFaction

Log in as guest/cpguest to create tickets