Show
Ignore:
Timestamp:
05/08/07 16:38:29 (5 years ago)
Author:
xi
Message:

Allow for immutable subclasses of YAMLObject. Fixes #53.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pyyaml/trunk/lib/yaml/__init__.py

    r223 r252  
    266266 
    267267    __metaclass__ = YAMLObjectMetaclass 
     268    __slots__ = ()  # no direct instantiation, so allow immutable subclasses 
    268269 
    269270    yaml_loader = Loader