summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Final touches in README.3.06Kirill Simonov2008-10-031-2/+2
* Dropped tests from the source distribution since LibYAML bindings do not pass...Kirill Simonov2008-10-036-18/+26
* Python 2.3 and win32 compatibility fixes in setup.py.Kirill Simonov2008-10-022-280/+33
* Check if libyaml is installed before attempting to compile the libyaml bindings.Kirill Simonov2008-10-021-5/+78
* Added the script tests/test_all.py.Kirill Simonov2008-10-011-0/+15
* Dropped setuptools-based setup.py in favor of custom distribution and build_e...Kirill Simonov2008-10-014-1435/+111
* Fixed include_dirs and library_dirs for the Windows build.Kirill Simonov2008-09-301-6/+6
* Updated the manifest file.Kirill Simonov2008-09-302-3/+2
* Updated announcement.msg.Kirill Simonov2008-09-301-0/+1
* Added attributes ``yaml.__version__`` and ``yaml.__libyaml__`` (fixes #85).Kirill Simonov2008-09-301-2/+4
* Added a setuptools installer 'ez_setup.py'.Kirill Simonov2008-09-302-0/+278
* Updated Makefile to use 'setup.py --with-libyaml'.Kirill Simonov2008-09-301-6/+6
* Updated README, announcement and MANIFEST files for the 3.06 release.Kirill Simonov2008-09-303-21/+21
* Updated setup.cfg to use the stable branch of libyaml; added Python 2.6 options.Kirill Simonov2008-09-301-4/+10
* Added a test for single dot being a float bug.Kirill Simonov2008-09-302-0/+2
* Use setuptools for setup.py. Dropped setup_with_libyaml.py; to build libyaml...Kirill Simonov2008-09-303-35/+14
* Fixed Python 2.3 compatibility (thanks to Julian Scheid for suggestion).Kirill Simonov2008-07-291-1/+4
* Added a YAML lexer for Pygments.Kirill Simonov2008-05-203-0/+2156
* A single dot is not a float value (fixes #62).Kirill Simonov2007-11-182-2/+3
* Make compose() and load() ensure that the input stream contains a single docu...Kirill Simonov2007-08-218-14/+85
* Fixed _yaml.pyx to work with the latest Pyrex.Kirill Simonov2007-07-261-4/+4
* Added the setup.cfg options for building PyYAML Windows installer.3.05Kirill Simonov2007-05-121-1/+12
* Update the package version.Kirill Simonov2007-05-121-1/+1
* Prepare the 3.05 release.Kirill Simonov2007-05-122-24/+35
* Allow for immutable subclasses of YAMLObject. Fixes #53.Kirill Simonov2007-05-081-0/+1
* Make the encoding of the unicode->str conversion explicit; fix [52].Kirill Simonov2007-05-051-1/+1
* Fixed a problem when the DOCUMENT-END event is not emitted until the beginnin...Kirill Simonov2007-04-171-1/+5
* Improve output of float values. Fix #49.Kirill Simonov2007-03-221-1/+10
* Add the tests for checking the libyaml bug.Kirill Simonov2007-03-222-0/+9
* Fix the bug when the `path` in `add_path_resolver` contains boolean values. ...Kirill Simonov2007-02-231-2/+15
* Use the types module instead of constructing type objects by hand. Fix #41. T...Kirill Simonov2006-12-083-26/+10
* Fix loss of microsecond precision in datetime.datetime constructor (fix #30).Kirill Simonov2006-10-045-2/+12
* Fix loading an empty YAML stream.Kirill Simonov2006-09-124-8/+8
* Amend the announce message.Kirill Simonov2006-08-201-5/+12
* Update README and the announcement message.3.04Kirill Simonov2006-08-202-25/+22
* Fix makefile and add setup.cfg.Kirill Simonov2006-08-202-4/+20
* Fix a test to work under Python 2.3.Kirill Simonov2006-08-201-0/+4
* Preparing the next release.Kirill Simonov2006-08-194-32/+52
* The 'N' plain scalar was still recognized as ``!!bool``. Fix it (close #26).Kirill Simonov2006-08-163-1/+7
* Fix timestamp constructing and representing (close #25).Kirill Simonov2006-08-167-51/+77
* Completely rewrite the libyaml bindings.Kirill Simonov2006-08-138-333/+1438
* Subclass all base classes from `object`.Kirill Simonov2006-08-0332-208/+295
* Fix a bug when a block scalar is incorrectly emitted in the simple key context.Kirill Simonov2006-07-303-2/+13
* Update libyaml bindings.Kirill Simonov2006-07-213-317/+404
* Fix a bug in Representer.represent_object: copy_reg.dispatch_table was not co...Kirill Simonov2006-07-111-1/+1
* Update PyRex based bindings to libyaml to include Parser functions.Kirill Simonov2006-07-074-16/+315
* Fix some minor issues with the new Parser.Kirill Simonov2006-07-071-7/+7
* To make porting easier, rewrite Parser not using generators.Kirill Simonov2006-07-035-231/+312
* Fix invalid output of single-quoted scalars in cases when a singleKirill Simonov2006-06-303-7/+10
* Trying to make libyaml bindings faster.Kirill Simonov2006-06-301-6/+48