Skip to content

Commit

Permalink
Copy recursion level into namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Simpson committed Jan 8, 2001
1 parent aecd1ad commit abc6158
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Bindings.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
#
##############################################################################

__version__='$Revision: 1.4 $'[11:-2]
__version__='$Revision: 1.5 $'[11:-2]

import Globals
from Globals import Persistent, HTMLFile, package_home
Expand Down Expand Up @@ -329,6 +329,7 @@ def _getNamespace(self, caller_namespace, kw):
if caller_namespace is not None:
# Include the caller's namespace.
my_namespace._push(caller_namespace)
my_namespace.level = caller_namespace.level
return my_namespace

def __call__(self, *args, **kw):
Expand Down

0 comments on commit abc6158

Please sign in to comment.