@@ -37,51 +37,49 @@ ticket list at https://github.com/uqfoundation/dill/issues.
37
37
Major Features
38
38
==============
39
39
40
- `dill ` can pickle the following standard types::
40
+ `dill ` can pickle the following standard types:
41
41
42
- - none, type, bool, int, long, float, complex, str, unicode,
43
- - tuple, list, dict, file, buffer, builtin,
44
- - both old and new style classes,
45
- - instances of old and new style classes,
46
- - set, frozenset, array, functions, exceptions
42
+ * none, type, bool, int, long, float, complex, str, unicode,
43
+ * tuple, list, dict, file, buffer, builtin,
44
+ * both old and new style classes,
45
+ * instances of old and new style classes,
46
+ * set, frozenset, array, functions, exceptions
47
47
48
- `dill ` can also pickle more 'exotic' standard types::
48
+ `dill ` can also pickle more 'exotic' standard types:
49
49
50
- - functions with yields, nested functions, lambdas,
51
- - cell, method, unboundmethod, module, code, methodwrapper,
52
- - dictproxy, methoddescriptor, getsetdescriptor, memberdescriptor,
53
- - wrapperdescriptor, xrange, slice,
54
- - notimplemented, ellipsis, quit
50
+ * functions with yields, nested functions, lambdas,
51
+ * cell, method, unboundmethod, module, code, methodwrapper,
52
+ * dictproxy, methoddescriptor, getsetdescriptor, memberdescriptor,
53
+ * wrapperdescriptor, xrange, slice,
54
+ * notimplemented, ellipsis, quit
55
55
56
- `dill ` cannot yet pickle these standard types::
56
+ `dill ` cannot yet pickle these standard types:
57
57
58
- - frame, generator, traceback
58
+ * frame, generator, traceback
59
59
60
- `dill ` also provides the capability to::
60
+ `dill ` also provides the capability to:
61
61
62
- - save and load python interpreter sessions
63
- - save and extract the source code from functions and classes
64
- - interactively diagnose pickling errors
62
+ * save and load python interpreter sessions
63
+ * save and extract the source code from functions and classes
64
+ * interactively diagnose pickling errors
65
65
66
66
67
67
Current Release
68
68
===============
69
69
70
- This version is `dill-%(relver)s `.
70
+ The latest released version of `dill ` is available from:
71
71
72
- The latest released version of ` dill ` is available from::
72
+ * http://trac.mystic.cacr.caltech.edu/project/pathos
73
73
74
- http://trac.mystic.cacr.caltech.edu/project/pathos
75
-
76
- or::
74
+ or:
77
75
78
- https://github.com/uqfoundation/dill/releases
76
+ * https://github.com/uqfoundation/dill/releases
79
77
80
- or also::
78
+ or also:
81
79
82
- https://pypi.python.org/pypi/dill
80
+ * https://pypi.python.org/pypi/dill
83
81
84
- `dill ` is distributed under a 3-clause BSD license.
82
+ `dill ` is distributed under a 3-clause BSD license::
85
83
86
84
>>> import dill
87
85
>>> print (dill.license())
@@ -90,9 +88,9 @@ or also::
90
88
Development Version
91
89
===================
92
90
93
- You can get the latest development version with all the shiny new features at::
91
+ You can get the latest development version with all the shiny new features at:
94
92
95
- https://github.com/uqfoundation
93
+ * https://github.com/uqfoundation/dill/
96
94
97
95
If you have a new contribution, please submit a pull request.
98
96
@@ -120,15 +118,15 @@ Alternately, `dill` can be installed with `pip` or `easy_install`::
120
118
Requirements
121
119
============
122
120
123
- `dill ` requires::
121
+ `dill ` requires:
124
122
125
- - python2, version >= 2.5 *or* python3, version >= 3.1
126
- - pyreadline, version >= 1.7.1 (on windows)
123
+ * python2, version >= 2.5 *or * python3, version >= 3.1
124
+ * pyreadline, version >= 1.7.1 (on windows)
127
125
128
- Optional requirements::
126
+ Optional requirements:
129
127
130
- - setuptools, version >= 0.6
131
- - objgraph, version >= 1.7.2
128
+ * setuptools, version >= 0.6
129
+ * objgraph, version >= 1.7.2
132
130
133
131
134
132
More Information
0 commit comments