Changeset 100


Ignore:
Timestamp:
07/27/04 10:10:47 (9 years ago)
Author:
tim
Message:

removed trailing whitespace problem

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yaml/load.py

    r99 r100  
    280280 
    281281    def key_value(self, str): 
    282         if str[-1] == ' ': 
    283             self.error("Trailing spaces not allowed without quotes.") 
     282        #if str[-1] == ' ': 
     283        #    self.error("Trailing spaces not allowed without quotes.") 
    284284        # XXX This allows mis-balanced " vs. ' stuff 
    285285        match = re.match("[\"'](.+)[\"']\s*:\s*(.*)", str) 
Note: See TracChangeset for help on using the changeset viewer.