Changeset 282 for pyyaml/trunk/lib

Show
Ignore:
Timestamp:
09/30/08 09:44:04 (4 years ago)
Author:
xi
Message:

Added attributes yaml.version and yaml.libyaml (fixes #85).

Files:
1 modified

Legend:

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

    r275 r282  
    99from dumper import * 
    1010 
     11__version__ = '3.06' 
     12 
    1113try: 
    1214    from cyaml import * 
    13     with_libyaml = True 
     15    __libyaml__ = True 
    1416except ImportError: 
    15     with_libyaml = False 
     17    __libyaml__ = False 
    1618 
    1719def scan(stream, Loader=Loader):