From: why the lucky stiff Date: 2005-05-16T03:33:07+09:00 Subject: Re: How to save class in yaml as Hash or list? meruby@gmail.com wrote: >So I like to save a ruby class in yaml to be read by python program. How can I do that? > > Just output the object to YAML. PySyck can read in Ruby objects as dictionaries. I'm not sure if PySyck guys have typing working yet. If you are referring to dumping of classes, YAML cannot dump classes, just as it cannot dump methods. YAML is not equipped with boundless magic yet. _why