mirror of https://github.com/pallets/flask.git
Add CHANGES entry and versionchanged entry to docstring
This commit is contained in:
parent
44c025f552
commit
986b92203a
3
CHANGES
3
CHANGES
|
@ -8,6 +8,9 @@ Version 1.0
|
||||||
|
|
||||||
(release date to be announced, codename to be selected)
|
(release date to be announced, codename to be selected)
|
||||||
|
|
||||||
|
- Added `**kwargs` to :meth:`flask.Test.test_client` to support passing
|
||||||
|
additional keyword arguments to the constructor of
|
||||||
|
:attr:`flask.Flask.test_client_class`.
|
||||||
- Added ``SESSION_REFRESH_EACH_REQUEST`` config key that controls the
|
- Added ``SESSION_REFRESH_EACH_REQUEST`` config key that controls the
|
||||||
set-cookie behavior. If set to `True` a permanent session will be
|
set-cookie behavior. If set to `True` a permanent session will be
|
||||||
refreshed each request and get their lifetime extended, if set to
|
refreshed each request and get their lifetime extended, if set to
|
||||||
|
|
|
@ -867,6 +867,10 @@ class Flask(_PackageBoundObject):
|
||||||
The `use_cookies` parameter was added as well as the ability
|
The `use_cookies` parameter was added as well as the ability
|
||||||
to override the client to be used by setting the
|
to override the client to be used by setting the
|
||||||
:attr:`test_client_class` attribute.
|
:attr:`test_client_class` attribute.
|
||||||
|
|
||||||
|
.. versionchanged:: 1.0
|
||||||
|
Added `**kwargs` to support passing additional keyword arguments to
|
||||||
|
the constructor of :attr:`test_client_class`.
|
||||||
"""
|
"""
|
||||||
cls = self.test_client_class
|
cls = self.test_client_class
|
||||||
if cls is None:
|
if cls is None:
|
||||||
|
|
Loading…
Reference in New Issue