summaryrefslogtreecommitdiff
path: root/lib/yaml/constructor.py
Commit message (Expand)AuthorAgeFilesLines
* Dropped support for Python 2.3 and 2.4.xi2011-05-301-10/+1
* Clear cyclic references in the parser and the emitter to avoid extra GC calls.xi2011-05-301-2/+2
* Removed unused variable.xi2008-12-041-1/+0
* Fixed Python 2.3 compatibility (thanks to Julian Scheid for suggestion).xi2008-07-291-1/+4
* Make compose() and load() ensure that the input stream contains a single docu...xi2007-08-211-0/+7
* Make the encoding of the unicode->str conversion explicit; fix [52].xi2007-05-051-1/+1
* Use the types module instead of constructing type objects by hand. Fix #41. T...xi2006-12-081-6/+2
* Fix loss of microsecond precision in datetime.datetime constructor (fix #30).xi2006-10-041-2/+2
* Fix timestamp constructing and representing (close #25).xi2006-08-161-26/+29
* Subclass all base classes from `object`.xi2006-08-031-92/+134
* To make porting easier, rewrite Parser not using generators.xi2006-07-031-5/+0
* Add pyrex-based bindings for the libyaml scanner.xi2006-06-191-2/+1
* Optimize slightly the float constructor.xi2006-05-221-3/+3
* Revamp the inf/nan handling again.xi2006-05-221-2/+2
* Fixed #15 (pyyaml discards '-' sign on negative floats).xi2006-05-211-1/+1
* Dynamically determine the inf and nan values. Should fix #14.xi2006-05-151-1/+3
* Add support for pickling/unpickling python objects.xi2006-04-221-0/+92
* Fix !!python/name for Python 2.3. Clear the yaml module namespace.xi2006-04-211-1/+5
* Add support for recursive nodes to Composer. Constructor does not support rec...xi2006-04-181-0/+7
* Add constructors for some simple python types.xi2006-04-181-9/+122
* Major refactoring.xi2006-04-151-24/+57
* Implement yaml.dump().xi2006-04-111-52/+31
* Back to work :). Rename markers to marks.xi2006-03-181-31/+31
* Remove y/n from the boolean constants.xi2006-02-251-2/+0
* Ready for the initial release.xi2006-02-251-44/+51
* Fix a few bugs.xi2006-02-241-0/+11
* Constructor is done.xi2006-02-241-12/+152
* Working on Constructor.xi2006-02-231-0/+254