| 64 | | * the distutils script checks the presence of '''syck.h'''. |
| 65 | | * the extension module releases GIL before calling syck. |
| 66 | | * The treatment of the '''!str''' tag is changed. Now '''!str'''-tagged scalars are converted to Unicode strings |
| 67 | | if they are valid UTF-8, but are not valid ASCII. |
| 68 | | * Windows binaries are compiled against [http://pyyaml.org/download/pysyck/syck-0.61+svn231+patches.tar.gz syck-0.61+svn231+patches.tar.gz]. |
| 69 | | * The site is moved to http://pyyaml.org/wiki/PySyck. |
| | 64 | * setup.py build: check the presence of syck.h and print a helpful |
| | 65 | message if it is not found. |
| | 66 | * Release GIL when calling syck. |
| | 67 | * Change the way !str-tagged scalars are converted. If a scalar |
| | 68 | contains only ASCII characters, it is converted to a plain string |
| | 69 | object. If it is a valid UTF-8 sequence, it is converted to a Unicode |
| | 70 | object. Otherwise leave it as is, and issue a warning. |
| | 71 | * Windows binaries are built against |
| | 72 | http://pyyaml.org/download/pysyck/syck-0.61+svn231+patches.tar.gz |
| | 73 | * The new home of PySyck is http://pyyaml.org/wiki/PySyck. |
| | 74 | |