We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Event.globals
1 parent d3f2c9c commit 0f054e4Copy full SHA for 0f054e4
2 files changed
CHANGELOG.rst
@@ -2,6 +2,11 @@
2
Changelog
3
=========
4
5
+0.5.1 (2015-04-15)
6
+------------------
7
+
8
+* Fixed :obj:`Event.globals` to actually be the dict of global vars (it was just the locals).
9
10
0.5.0 (2015-04-06)
11
------------------
12
src/hunter.py
@@ -171,7 +171,7 @@ def locals(self):
171
172
@_CachedProperty
173
def globals(self):
174
- return self.frame.f_locals
+ return self.frame.f_globals
175
176
177
def function(self):
0 commit comments