summaryrefslogtreecommitdiff
path: root/lib
Commit message (Expand)AuthorAgeFilesLines
* Dropped support for Python 2.3 and 2.4.xi2011-05-303-53/+4
* Updated the changelog and bumped the version number.xi2011-05-301-1/+1
* Clear cyclic references in the parser and the emitter to avoid extra GC calls.xi2011-05-304-22/+59
* Preparing the next release.xi2009-08-301-1/+1
* Fixed a problem with a scanner error not detected when no line break at the e...xi2009-08-291-1/+2
* Fixed a typo in docstring.xi2009-08-291-1/+1
* Fixed emitting of invalid BOM for UTF-16.xi2009-08-291-1/+1
* Fixed a bug where folded scalar emitter did not respect the preffered line wi...xi2009-03-281-0/+1
* Added a workaround against #116 (Thanks Andrey Somov).xi2009-02-231-1/+3
* Fixed a typo in the attribute name (Thanks ingy).xi2008-12-301-1/+1
* Final touches before the release.xi2008-12-301-1/+1
* Handle the encoding of input and output streams in a uniform way.xi2008-12-303-14/+11
* Added basic support for Python 3 (Thanks idadesub(at)users(dot)sourceforge(do...xi2008-12-294-12/+13
* Fixed an issue with ReaderError generated by the LibYAML wrapper.xi2008-12-281-2/+2
* Bumped the version number.xi2008-12-271-1/+1
* Emit an explicit document end indicator when there is a possibility of ambigu...xi2008-12-271-2/+18
* Refactored whitespace combination detector in the scalar analyzer: support du...xi2008-12-271-92/+49
* Fixed typos in attribute names (Thanks to ingy).xi2008-12-082-5/+3
* Fixed a problem with emitting block scalars (thanks to Andrey Somov): no long...xi2008-12-041-14/+11
* Removed unused variable.xi2008-12-041-1/+0
* Removed a stale comment; fixes #102.xi2008-11-301-2/+0
* determine_chomp -> determine_block_hintsxi2008-11-301-2/+2
* Permit emitting block scalars with leading spaces or breaks.xi2008-11-301-15/+16
* Dropped tests from the source distribution since LibYAML bindings do not pass...xi2008-10-031-2/+2
* Added attributes ``yaml.__version__`` and ``yaml.__libyaml__`` (fixes #85).xi2008-09-301-2/+4
* Use setuptools for setup.py. Dropped setup_with_libyaml.py; to build libyaml...xi2008-09-301-1/+2
* Fixed Python 2.3 compatibility (thanks to Julian Scheid for suggestion).xi2008-07-291-1/+4
* A single dot is not a float value (fixes #62).xi2007-11-181-1/+2
* Make compose() and load() ensure that the input stream contains a single docu...xi2007-08-213-14/+40
* Allow for immutable subclasses of YAMLObject. Fixes #53.xi2007-05-081-0/+1
* Make the encoding of the unicode->str conversion explicit; fix [52].xi2007-05-051-1/+1
* Fixed a problem when the DOCUMENT-END event is not emitted until the beginnin...xi2007-04-171-1/+5
* Improve output of float values. Fix #49.xi2007-03-221-1/+10
* Fix the bug when the `path` in `add_path_resolver` contains boolean values. ...xi2007-02-231-2/+15
* Use the types module instead of constructing type objects by hand. Fix #41. T...xi2006-12-083-26/+10
* Fix loss of microsecond precision in datetime.datetime constructor (fix #30).xi2006-10-041-2/+2
* Fix loading an empty YAML stream.xi2006-09-121-5/+4
* The 'N' plain scalar was still recognized as ``!!bool``. Fix it (close #26).xi2006-08-161-1/+1
* Fix timestamp constructing and representing (close #25).xi2006-08-162-44/+36
* Completely rewrite the libyaml bindings.xi2006-08-134-6/+101
* Subclass all base classes from `object`.xi2006-08-0313-191/+226
* Fix a bug when a block scalar is incorrectly emitted in the simple key context.xi2006-07-301-2/+3
* Fix a bug in Representer.represent_object: copy_reg.dispatch_table was not co...xi2006-07-111-1/+1
* Fix some minor issues with the new Parser.xi2006-07-071-7/+7
* To make porting easier, rewrite Parser not using generators.xi2006-07-034-231/+309
* Fix invalid output of single-quoted scalars in cases when a singlexi2006-06-301-7/+7
* Add pyrex-based bindings for the libyaml scanner.xi2006-06-191-2/+1
* Fix a typo in a plain scalar scanner.xi2006-06-181-2/+2
* Fix several problems caused by ill-formed documents.xi2006-06-162-8/+16
* Optimize slightly the float constructor.xi2006-05-221-3/+3