summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-11-02 16:40:30 +0000
committerChris McDonough <chrism@agendaless.com>2009-11-02 16:40:30 +0000
commitc793f910ba4055d84cd4cff536a8b58c2f07d87f (patch)
tree9dc18154e693abebccb804b9c1d9c7a025823c4b /CHANGES.txt
parente218b2a4b749d5e7105ffd28f2c02f09b151059b (diff)
downloadpyramid-c793f910ba4055d84cd4cff536a8b58c2f07d87f.tar.gz
pyramid-c793f910ba4055d84cd4cff536a8b58c2f07d87f.tar.bz2
pyramid-c793f910ba4055d84cd4cff536a8b58c2f07d87f.zip
- Compound statements that used an assignment entered into in an
interactive IPython session invoked via ``paster bfgshell`` no longer fail to mutate the shell namespace correctly. For example, this set of statements used to fail:: In [2]: def bar(x): return x ...: In [3]: list(bar(x) for x in 'abc') Out[3]: NameError: 'bar' In this release, the ``bar`` function is found and the correct output is now sent to the console. Thanks to Daniel Holth for the patch.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index e8e13496e..6ce4a56fc 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,23 @@
+Next release
+============
+
+Bug Fixes
+---------
+
+- Compound statements that used an assignment entered into in an
+ interactive IPython session invoked via ``paster bfgshell`` no
+ longer fail to mutate the shell namespace correctly. For example,
+ this set of statements used to fail::
+
+ In [2]: def bar(x): return x
+ ...:
+ In [3]: list(bar(x) for x in 'abc')
+ Out[3]: NameError: 'bar'
+
+ In this release, the ``bar`` function is found and the correct
+ output is now sent to the console. Thanks to Daniel Holth for the
+ patch.
+
1.1b2 (2009-11-02)
==================