Changeset 64
- Timestamp:
- 03/12/06 19:48:27 (7 years ago)
- Location:
- pysyck/trunk
- Files:
-
- 1 deleted
- 1 edited
-
README.txt (modified) (6 diffs)
-
examples (deleted)
Legend:
- Unmodified
- Added
- Removed
-
pysyck/trunk/README.txt
r30 r64 6 6 :Author: Kirill Simonov 7 7 :Contact: xi@resolvent.net 8 :Web site: http:// xitology.org/pysyck/8 :Web site: http://pyyaml.org/wiki/PySyck 9 9 10 10 .. contents:: … … 26 26 27 27 PySyck_ may be used for various tasks, in particular, as a replacement of the 28 module pickle_. Please be aware that PySyck_ is a beta-quality software and 29 is not ready yet for production use. 28 module pickle_. 30 29 31 30 .. _YAML: http://yaml.org/ 32 31 .. _Syck: http://whytheluckystiff.net/syck/ 33 32 .. _Python: http://python.org/ 34 .. _PySyck: http:// xitology.org/pysyck/33 .. _PySyck: http://pyyaml.org/wiki/PySyck 35 34 .. _pickle: http://docs.python.org/lib/module-pickle.html 35 36 36 37 37 Requirements 38 38 ============ 39 39 40 PySyck requires Syck 0.55 or higher and Python 2.3 or higher. Python 2.2 is 41 supported to some extent. 40 PySyck requires Syck 0.55 or higher and Python 2.3 or higher. 42 41 43 42 … … 45 44 ============ 46 45 47 Please note that Syck 0.55 or higher must be installed. If you install PySyck 48 from source, unpack the source tarball and type:: 46 Please note that Syck 0.55 or higher must be installed. We recommend to use 47 Syck_ from `the Syck SVN repository`_ together with `my Syck patches`_. For 48 your convenience, a tarball is provided: 49 http://pyyaml.org/download/pysyck/syck-0.61+svn232+patches.tar.gz. 50 51 If you install PySyck from source, unpack the source tarball and type:: 49 52 50 53 $ python setup.py install 51 54 52 Windows binaries for Python 2.2, 2.3, and 2.4 are provided. 55 Windows binaries for Python 2.3 and 2.4 are provided. Windows binaries are 56 linked against Syck_ statically. 57 58 .. _the Syck SVN repository: http://code.whytheluckystiff.net/svn/syck/trunk 59 .. _my Syck patches: http://pyyaml.org/wiki/SyckPatches 53 60 54 61 … … 859 866 You may use `YAML-core mailing list`_ for discussions of PySyck_. 860 867 861 .. _PySyck SVN repository: http://svn. xitology.org/pysyck/862 .. _PySyck BTS: http:// trac.xitology.org/pysyck/newticket863 .. _the list of active tickets: http:// trac.xitology.org/pysyck/report/1868 .. _PySyck SVN repository: http://svn.pyyaml.org/pysyck/ 869 .. _PySyck BTS: http://pyyaml.org/newticket?component=pysyck 870 .. _the list of active tickets: http://pyyaml.org/query?action=view&component=pysyck&order=priority 864 871 .. _YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core 865 872 … … 868 875 ========== 869 876 870 To many to list all of them; see `the list of active tickets`_. If you find 871 another bug, please submit it via `PySyck BTS`_. 877 PySyck_ does not support Unicode for real. It is a Syck_ limitation. 872 878 873 879 … … 875 881 ======= 876 882 883 * PySyck-0.60.1 (2006-03-XX): 884 885 - ``setup.py``: check if ``syck.h`` is present, complain if it doesn't. 886 - ``ext/_syckmodule.c``: release GIL_ before calling Syck_. Note that this 887 change broke Python 2.2 compatibility. 888 - ``lib/syck/loader.py``, ``lib/syck/dumper.py``: change treatment of the 889 ``!str`` tag. Now ``!str``-tagged scalars are converted to Unicode strings 890 if they are valid UTF-8, but are not valid ASCII. 891 - Windows binaries are compiled against the latest Syck_ from 892 `the Syck SVN repository`_ with `my Syck patches`_. 893 - The site is moved to http://pyyaml.org/wiki/PySyck. 894 877 895 * PySyck-0.55.1 (2005-08-30): Initial release. 896 897 .. _GIL: http://docs.python.org/api/threads.html 878 898 879 899
Note: See TracChangeset
for help on using the changeset viewer.
