summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-11-23 05:57:27 +0000
committerChris McDonough <chrism@agendaless.com>2009-11-23 05:57:27 +0000
commit702828282c350bdfec0f66f1c505f49250ae1e0a (patch)
tree1c7022bcb8be324cbc9cf345131f9c8b5ff6b420 /CHANGES.txt
parent44b16bf734c3d7aa9c862f492606ce065534cc7e (diff)
downloadpyramid-702828282c350bdfec0f66f1c505f49250ae1e0a.tar.gz
pyramid-702828282c350bdfec0f66f1c505f49250ae1e0a.tar.bz2
pyramid-702828282c350bdfec0f66f1c505f49250ae1e0a.zip
Save a function call.
Update text files.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 4fb94ba96..3ad281f6d 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -4,9 +4,11 @@ Next release
Features
--------
-- The ``repoze.bfg.testing.setUp`` function now causes a request
- object to be created. The request object is avaiable via
- ``repoze.bfg.threadlocal.get_current_request``. Previously this
+- The ``repoze.bfg.testing.setUp`` function now causes a "dummy"
+ request object to be created (an instance of
+ ``repoze.bfg.testing.DummyRequest``). The DummyRequest object is
+ available via ``repoze.bfg.threadlocal.get_current_request`` when
+ this API is used in the setUp of a unit test. Previously this
function did not create a request object; it instead assigned
``None`` to the threadlocal request value.