diff options
| author | jonathan vanasco <jonathan@2xlp.com> | 2019-11-04 17:47:03 -0500 |
|---|---|---|
| committer | jonathan vanasco <jonathan@2xlp.com> | 2019-11-05 16:51:11 -0500 |
| commit | b6604fc39e542a78bc6cb4f009bf972ba4db098f (patch) | |
| tree | 47e8de5f294358c7d82cfc7c4eeeb3331a163f23 /src | |
| parent | 9264004c92adf731cd8164a63e199558ffdd2751 (diff) | |
| download | pyramid-b6604fc39e542a78bc6cb4f009bf972ba4db098f.tar.gz pyramid-b6604fc39e542a78bc6cb4f009bf972ba4db098f.tar.bz2 pyramid-b6604fc39e542a78bc6cb4f009bf972ba4db098f.zip | |
updated docstring issuet
Diffstat (limited to 'src')
| -rw-r--r-- | src/pyramid/session.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pyramid/session.py b/src/pyramid/session.py index efac52140..d317b7c48 100644 --- a/src/pyramid/session.py +++ b/src/pyramid/session.py @@ -50,7 +50,7 @@ class PickleSerializer(object): .. warning:: In :app:`Pyramid` 2.0 the default ``serializer`` option changed to - use :class:`pyramid.session.JSONSerializer`, and ``PickleSerializer` + use :class:`pyramid.session.JSONSerializer`, and ``PickleSerializer`` has been been removed from active Pyramid code. Pyramid will require JSON-serializable objects in :app:`Pyramid` 2.0. @@ -74,7 +74,6 @@ class PickleSerializer(object): ``protocol`` may be specified to control the version of pickle used. Defaults to :attr:`pickle.HIGHEST_PROTOCOL`. - """ def __init__(self, protocol=pickle.HIGHEST_PROTOCOL): |
