1. 0415f86 determine_chomp -> determine_block_hints by Kirill Simonov · 15 years ago
  2. ec77e13 Permit emitting block scalars with leading spaces or breaks. by Kirill Simonov · 15 years ago
  3. 9768bab Fixed the distutils script to run when installed using easy_install and Pyrex is available. by Kirill Simonov · 16 years ago
  4. 2b9937b Final touches in README. by Kirill Simonov · 16 years ago 3.06
  5. 5d943d1 Dropped tests from the source distribution since LibYAML bindings do not pass them; updated README and announcement.msg; renamed 'yaml.__libyaml__' to 'yaml.__with_libyaml__'. by Kirill Simonov · 16 years ago
  6. f13e492 Python 2.3 and win32 compatibility fixes in setup.py. by Kirill Simonov · 16 years ago
  7. c0d6133 Check if libyaml is installed before attempting to compile the libyaml bindings. by Kirill Simonov · 16 years ago
  8. 4692b60 Added the script tests/test_all.py. by Kirill Simonov · 16 years ago
  9. be82996 Dropped setuptools-based setup.py in favor of custom distribution and build_ext command. by Kirill Simonov · 16 years ago
  10. 72189ab Fixed include_dirs and library_dirs for the Windows build. by Kirill Simonov · 16 years ago
  11. 48da808 Updated the manifest file. by Kirill Simonov · 16 years ago
  12. 9bc5618 Updated announcement.msg. by Kirill Simonov · 16 years ago
  13. f20210c Added attributes ``yaml.__version__`` and ``yaml.__libyaml__`` (fixes #85). by Kirill Simonov · 16 years ago
  14. 61e06c4 Added a setuptools installer 'ez_setup.py'. by Kirill Simonov · 16 years ago
  15. ffb4666 Updated Makefile to use 'setup.py --with-libyaml'. by Kirill Simonov · 16 years ago
  16. c61d0ce Updated README, announcement and MANIFEST files for the 3.06 release. by Kirill Simonov · 16 years ago
  17. 938ef71 Updated setup.cfg to use the stable branch of libyaml; added Python 2.6 options. by Kirill Simonov · 16 years ago
  18. 3ded207 Added a test for single dot being a float bug. by Kirill Simonov · 16 years ago
  19. a69b98b Use setuptools for setup.py. Dropped setup_with_libyaml.py; to build libyaml bindings, use --with-libyaml. by Kirill Simonov · 16 years ago
  20. 487ac91 Fixed Python 2.3 compatibility (thanks to Julian Scheid for suggestion). by Kirill Simonov · 16 years ago
  21. 09e388a Added a YAML lexer for Pygments. by Kirill Simonov · 16 years ago
  22. 073f08e A single dot is not a float value (fixes #62). by Kirill Simonov · 16 years ago
  23. 046f114 Make compose() and load() ensure that the input stream contains a single document. Fixes #54. by Kirill Simonov · 17 years ago
  24. 7b600d3 Fixed _yaml.pyx to work with the latest Pyrex. by Kirill Simonov · 17 years ago
  25. 93ec8bc Added the setup.cfg options for building PyYAML Windows installer. by Kirill Simonov · 17 years ago 3.05
  26. e1d133a Update the package version. by Kirill Simonov · 17 years ago
  27. 804f9d8 Prepare the 3.05 release. by Kirill Simonov · 17 years ago
  28. dafd164 Allow for immutable subclasses of YAMLObject. Fixes #53. by Kirill Simonov · 17 years ago
  29. 69379ea Make the encoding of the unicode->str conversion explicit; fix [52]. by Kirill Simonov · 17 years ago
  30. 9eb838b Fixed a problem when the DOCUMENT-END event is not emitted until the beginning of the next document is available. Fixed #51. Thanks edward(at)sweetbytes.net for the bug report. by Kirill Simonov · 17 years ago
  31. 96fcba3 Improve output of float values. Fix #49. by Kirill Simonov · 17 years ago
  32. e5059a1 Add the tests for checking the libyaml bug. by Kirill Simonov · 17 years ago
  33. 04ff8e6 Fix the bug when the `path` in `add_path_resolver` contains boolean values. Fix #43 (thanks to jstroud(at)mbi.ucla.edu for reporting and pointing to the cause). by Kirill Simonov · 17 years ago
  34. 21483f2 Use the types module instead of constructing type objects by hand. Fix #41. Thanks to v.haisman@sh.cvut.cz for the patch. by Kirill Simonov · 17 years ago
  35. ed79023 Fix loss of microsecond precision in datetime.datetime constructor (fix #30). by Kirill Simonov · 18 years ago
  36. cc9c738 Fix loading an empty YAML stream. by Kirill Simonov · 18 years ago
  37. fb2fd2a Amend the announce message. by Kirill Simonov · 18 years ago
  38. be67e2d Update README and the announcement message. by Kirill Simonov · 18 years ago 3.04
  39. 320c697 Fix makefile and add setup.cfg. by Kirill Simonov · 18 years ago
  40. b4643e7 Fix a test to work under Python 2.3. by Kirill Simonov · 18 years ago
  41. 1710a8d Preparing the next release. by Kirill Simonov · 18 years ago
  42. 8f9b8be The 'N' plain scalar was still recognized as ``!!bool``. Fix it (close #26). by Kirill Simonov · 18 years ago
  43. 29413ea Fix timestamp constructing and representing (close #25). by Kirill Simonov · 18 years ago
  44. 17fa129 Completely rewrite the libyaml bindings. by Kirill Simonov · 18 years ago
  45. 8b083c6 Subclass all base classes from `object`. by Kirill Simonov · 18 years ago
  46. 2e6c774 Fix a bug when a block scalar is incorrectly emitted in the simple key context. by Kirill Simonov · 18 years ago
  47. e4c1238 Update libyaml bindings. by Kirill Simonov · 18 years ago
  48. 056fe5c Fix a bug in Representer.represent_object: copy_reg.dispatch_table was not correctly handled. by Kirill Simonov · 18 years ago
  49. 6743cf6 Update PyRex based bindings to libyaml to include Parser functions. by Kirill Simonov · 18 years ago
  50. 95c8976 Fix some minor issues with the new Parser. by Kirill Simonov · 18 years ago
  51. 63fa1bd To make porting easier, rewrite Parser not using generators. by Kirill Simonov · 18 years ago
  52. 27de2ba Fix invalid output of single-quoted scalars in cases when a single by Kirill Simonov · 18 years ago
  53. 92243c6 Trying to make libyaml bindings faster. by Kirill Simonov · 18 years ago
  54. 4b48dcf Add pyrex-based bindings for the libyaml scanner. by Kirill Simonov · 18 years ago
  55. 47b72d2 Preparing the release: PyYAML-3.03 by Kirill Simonov · 18 years ago
  56. 72992fe Fix a typo in a plain scalar scanner. by Kirill Simonov · 18 years ago 3.03
  57. bcfc0b6 Fix several problems caused by ill-formed documents. by Kirill Simonov · 18 years ago
  58. d01a85f Add ind and qnan values to a float test. by Kirill Simonov · 18 years ago
  59. e51f97d Optimize slightly the float constructor. by Kirill Simonov · 18 years ago
  60. a109c6b Add a test case belonging to the previous commit. by Kirill Simonov · 18 years ago
  61. 500659d Revamp the inf/nan handling again. by Kirill Simonov · 18 years ago
  62. ee2fb1c Add a test case for #15. by Kirill Simonov · 18 years ago
  63. 149a437 Fixed #15 (pyyaml discards '-' sign on negative floats). by Kirill Simonov · 18 years ago
  64. 810977b Dynamically determine the inf and nan values. Should fix #14. by Kirill Simonov · 18 years ago
  65. eefe5f7 Final touches before the release. by Kirill Simonov · 18 years ago
  66. da8f3ca Preparing the next release. by Kirill Simonov · 18 years ago 3.02
  67. f87fec8 Rename yaml-hl to yaml-highlight. by Kirill Simonov · 18 years ago
  68. 6fc24b4 Load yaml_hl.cfg from the script path. by Kirill Simonov · 18 years ago
  69. c3ab1fb Add the announcement message. by Kirill Simonov · 18 years ago
  70. d694099 Remake the YAML highlighting example. by Kirill Simonov · 18 years ago
  71. 9bd0b4e Fix a bug in add_path_resolver: map -> dict. by Kirill Simonov · 18 years ago
  72. 8f22ae6 Final touches before the initial release. by Kirill Simonov · 18 years ago
  73. 43ffedd Allow first=None for add_implicit_resolver. by Kirill Simonov · 18 years ago 3.01
  74. dd2da8a Fix a bug in a test. by Kirill Simonov · 18 years ago
  75. 74f8caa Fix #11 (Thanks to edemaine(at)mit.edu). by Kirill Simonov · 18 years ago
  76. 80ba450 Add a way to override default style chosen by Representer: fix #9 by Kirill Simonov · 18 years ago
  77. cd21dc6 1e30000 => 1e300000 by Kirill Simonov · 18 years ago
  78. 410d822 Prepare setup.py for release. Fix #7. by Kirill Simonov · 18 years ago
  79. fc01755 Raise an error for colons in the flow context. by Kirill Simonov · 18 years ago
  80. e8eed63 Sort object attributes. by Kirill Simonov · 18 years ago
  81. c87ce16 Add support for pickling/unpickling python objects. by Kirill Simonov · 18 years ago
  82. cce1516 Fix !!python/name for Python 2.3. Clear the yaml module namespace. by Kirill Simonov · 18 years ago
  83. 93bb470 Fix yaml-hl to use the new API. by Kirill Simonov · 18 years ago
  84. 89cc4e3 Add more unit tests. by Kirill Simonov · 18 years ago
  85. 80ed3f1 Fix bugs in emitter and representer. by Kirill Simonov · 18 years ago
  86. c9aec90 Add support for recursive nodes to Composer. Constructor does not support recursive objects though. by Kirill Simonov · 18 years ago
  87. 95b3cef Add more unit tests for error messages. by Kirill Simonov · 18 years ago
  88. 24f8ae0 Rename error-message to loader-error and add new examples. by Kirill Simonov · 18 years ago
  89. 19e134b Add constructors for some simple python types. by Kirill Simonov · 18 years ago
  90. ea23091 Fix #4 (Thanks to murphy(at)rubychan.de) by Kirill Simonov · 18 years ago
  91. b12e7fe Refactor resolver. by Kirill Simonov · 18 years ago
  92. 6a97abb Major refactoring. by Kirill Simonov · 18 years ago
  93. fcf5d61 Fix allow_unicode (ticket:3). by Kirill Simonov · 18 years ago
  94. cc316a4 Implement yaml.dump(). by Kirill Simonov · 18 years ago
  95. 2d457ba Emitter is done!!! by Kirill Simonov · 18 years ago
  96. 01b5e19 Working on emitter: implement the state machine. by Kirill Simonov · 18 years ago
  97. 268bb76 Add style information to events generated by Parser. by Kirill Simonov · 18 years ago
  98. be2d198 Fix the project url. by Kirill Simonov · 18 years ago
  99. 3aa5584 Fix a test. by Kirill Simonov · 18 years ago
  100. d2e8000 Add an example: yaml highlight script. by Kirill Simonov · 18 years ago