Ignore:
Timestamp:
07/21/05 17:33:32 (8 years ago)
Author:
xi
Message:

Now it passes some tests under Python 2.2 and 2.1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/test_high_parser.py

    r9 r10  
    111111} 
    112112 
    113 SET = """ 
     113try: 
     114    import sets 
     115    SET = """ 
    114116# Syck does not understand it 
    115117## Explicitly typed set. 
     
    124126    'baseball teams': sets.Set(['Boston Red Sox', 'Detroit Tigers', 'New York Yankees']), 
    125127} 
     128except ImportError: 
     129    pass 
    126130 
    127131class TestDocuments(test_low_parser.TestDocuments): 
Note: See TracChangeset for help on using the changeset viewer.