Skip to content

Commit 77ee91d

Browse files
al3xststefanseefeld
authored andcommitted
Updated python library reference url
Due to changes on the python website, the url to the pickle library reference page was invalid.
1 parent e670de2 commit 77ee91d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/reference/pickle.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Pickle is a Python module for object serialization, also known as persistence, m
44

55
It is often necessary to save and restore the contents of an object to a file. One approach to this problem is to write a pair of functions that read and write data from a file in a special format. A powerful alternative approach is to use Python's pickle module. Exploiting Python's ability for introspection, the pickle module recursively converts nearly arbitrary Python objects into a stream of bytes that can be written to a file.
66

7-
The Boost Python Library supports the pickle module through the interface as described in detail in the [@http://www.python.org/doc/current/lib/module-pickle.html Python Library Reference for pickle]. This interface involves the special methods `__getinitargs__`, `__getstate__` and `__setstate__` as described in the following. Note that `Boost.Python` is also fully compatible with Python's cPickle module.
7+
The Boost Python Library supports the pickle module through the interface as described in detail in the [@https://docs.python.org/2/library/pickle.html Python Library Reference for pickle]. This interface involves the special methods `__getinitargs__`, `__getstate__` and `__setstate__` as described in the following. Note that `Boost.Python` is also fully compatible with Python's cPickle module.
88
[endsect]
99
[section The Pickle Interface]
1010
At the user level, the Boost.Python pickle interface involves three special methods:

0 commit comments

Comments
 (0)